Error creating cluster

Sergio Cores Acha 1 Reputation point
2020-10-06T14:23:11.14+00:00

I'm trying to deploy on Azure the retired open source solution #SmartHotel360.

Deploying the backend solution and following the instructions detailled on https://github.com/microsoft/SmartHotel360-Backend/blob/master/Documents/Setup.md, I get an error when I execute the script 01-Aks-Create.ps1 in the line 19. The error message is too generic.

At least one resource deployment operation failed. Please list deployment operations for details. Please see https://aka.ms/DeployOperations for usage details.

------------------------------------------------------------
Creating Cluster in Resource Group ***
------------------------------------------------------------
This command is implicitly deprecated because command group 'group deployment' is deprecated and will be removed in a future release. Use 'deployment group' instead.
ValidationError: Deployment failed. Correlation ID: 685bc48e-e9bd-4646-8ab2-4be1aec9bf2d. {
  "status": "Failed",
  "error": {
    "code": "ResourceDeploymentFailure",
    "message": "The resource operation completed with terminal provisioning state 'Failed'.",
    "details": [
      {
        "code": "DeploymentFailed",
        "message": "At least one resource deployment operation failed. Please list deployment operations for details. Please see https://aka.ms/DeployOperations for usage details.",
        "details": [
          {
            "code": "BadRequest",
            "message": "{\r\n  \"error\": {\r\n    \"code\": \"BadRequest\",\r\n    \"message\": \"Bad request. Diagnostic information: timestamp '20201006T102202Z', subscription id '102b6b12-f3f7-458a-af73-d4798e9c151c', tracking id '6e04bf8b-7db0-4638-aa73-67055b6c8582', request correlation id '52f89e7d-2b8b-46df-a30e-bd30f8657288'.\"\r\n  }\r\n}"
          }
        ]
      }
    ]
  }
}

This are my first steps on Azure, and I am so confused. Someone can give me any advise?

Azure Kubernetes Service (AKS)
Azure Kubernetes Service (AKS)
An Azure service that provides serverless Kubernetes, an integrated continuous integration and continuous delivery experience, and enterprise-grade security and governance.
1,931 questions
0 comments No comments
{count} votes

1 answer

Sort by: Most helpful
  1. Leon Laude 85,701 Reputation points
    2020-10-06T14:28:43.433+00:00

    Hi @SergioCoresAcha-7737,

    The GitHub repository you are trying to deploy from has been retired, archived, and is no longer supported, as seen in the error while deploying the AKS cluster it uses commands that are deprecated.

    May I suggest you start over by going through the official Microsoft documentation over here:

    Tutorial: Deploy an Azure Kubernetes Service (AKS) cluster
    https://learn.microsoft.com/en-us/azure/aks/tutorial-kubernetes-deploy-cluster

    Quickstart: Deploy an Azure Kubernetes Service (AKS) cluster using the Azure portal
    https://learn.microsoft.com/en-us/azure/aks/kubernetes-walkthrough-portal

    ----------

    (If the reply was helpful please don't forget to upvote or accept as answer, thank you)

    Best regards,
    Leon

    1 person found this answer helpful.
    0 comments No comments