Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Create UI #1

Closed
julienstroheker opened this issue Apr 11, 2018 · 0 comments
Closed

Create UI #1

julienstroheker opened this issue Apr 11, 2018 · 0 comments
Milestone

Comments

@julienstroheker
Copy link
Owner

julienstroheker commented Apr 11, 2018

The MVP should be using only the minimum prerequisites :

  • orchestratorType - String - This, will be and support only Kubernetes per default in the MVP
  • masterCount - Int - Number of master
  • dnsPrefix - String - Prefix
  • masterVmSize - Array/String
  • agentPool - Array
    • name - Name
    • count - Int
    • vmSize - Array/String
    • availabilityProfile - Array with one value for now : AvailabilitySet (and VMSS in the future)
  • adminUsername - String
  • sshkeyData - String
  • ClientId - String
  • PasswordClientId - String

Example for acs-engine :

{
  "apiVersion": "vlabs",
  "properties": {
    "orchestratorProfile": {
      "orchestratorType": "Kubernetes"
    },
    "masterProfile": {
      "count": 1,
      "dnsPrefix": "",
      "vmSize": "Standard_D2_v2"
    },
    "agentPoolProfiles": [
      {
        "name": "agentpool1",
        "count": 3,
        "vmSize": "Standard_D2_v2",
        "availabilityProfile": "AvailabilitySet"
      }
    ],
    "linuxProfile": {
      "adminUsername": "azureuser",
      "ssh": {
        "publicKeys": [
          {
            "keyData": ""
          }
        ]
      }
    },
    "servicePrincipalProfile": {
      "clientId": "",
      "secret": ""
    }
  }
}
@evanlouie evanlouie mentioned this issue Apr 18, 2018
@julienstroheker julienstroheker moved this from To do to In progress in acs-engine-client Apr 19, 2018
@julienstroheker julienstroheker added this to the v1.0 milestone Apr 19, 2018
acs-engine-client automation moved this from In progress to Done Apr 21, 2018
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
Development

No branches or pull requests

1 participant