Skip to content

Commit

Permalink
Merge pull request #210 from nilo19/t-qini-update_distro
Browse files Browse the repository at this point in the history
Add distro setting to corresponding aks config files.
  • Loading branch information
k8s-ci-robot committed Aug 7, 2019
2 parents c17d5d2 + ae9785d commit 6d79632
Show file tree
Hide file tree
Showing 8 changed files with 30 additions and 16 deletions.
6 changes: 4 additions & 2 deletions examples/aks-engine.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,15 +23,17 @@
"masterProfile": {
"count": 1,
"dnsPrefix": "k8s",
"vmSize": "Standard_D2_v3"
"vmSize": "Standard_D2_v3",
"distro": "aks-ubuntu-16.04"
},
"agentPoolProfiles": [
{
"name": "agentpool1",
"count": 3,
"vmSize": "Standard_D2_v3",
"availabilityProfile": "VirtualMachineScaleSets",
"storageProfile": "ManagedDisks"
"storageProfile": "ManagedDisks",
"distro": "aks-ubuntu-16.04"
}
],
"linuxProfile": {
Expand Down
6 changes: 4 additions & 2 deletions examples/az.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,8 @@
"availabilityZones": [
"1",
"2"
]
],
"distro": "aks-ubuntu-16.04"
},
"agentPoolProfiles": [
{
Expand All @@ -39,7 +40,8 @@
"availabilityZones": [
"1",
"2"
]
],
"distro": "aks-ubuntu-16.04"
}
],
"linuxProfile": {
Expand Down
6 changes: 4 additions & 2 deletions tests/k8s-azure/manifest/linux-autoscaler.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,15 +33,17 @@
"masterProfile": {
"count": 1,
"dnsPrefix": "{dnsPrefix}",
"vmSize": "Standard_F2"
"vmSize": "Standard_F2",
"distro": "aks-ubuntu-16.04"
},
"agentPoolProfiles": [
{
"name": "agentpool1",
"count": 2,
"vmSize": "Standard_F2",
"availabilityProfile": "VirtualMachineScaleSets",
"storageProfile": "ManagedDisks"
"storageProfile": "ManagedDisks",
"distro": "aks-ubuntu-16.04"
}
],
"linuxProfile": {
Expand Down
4 changes: 2 additions & 2 deletions tests/k8s-azure/manifest/linux-kcm.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
"count": 1,
"dnsPrefix": "{dnsPrefix}",
"vmSize": "Standard_F2",
"distro": "ubuntu"
"distro": "aks-ubuntu-16.04"
},
"agentPoolProfiles": [
{
Expand All @@ -32,7 +32,7 @@
"vmSize": "Standard_F2",
"availabilityProfile": "VirtualMachineScaleSets",
"storageProfile": "ManagedDisks",
"distro": "ubuntu"
"distro": "aks-ubuntu-16.04"
}
],
"linuxProfile": {
Expand Down
6 changes: 4 additions & 2 deletions tests/k8s-azure/manifest/linux-vmss-multi-zones.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,8 @@
"availabilityZones": [
"1",
"2"
]
],
"distro": "aks-ubuntu-16.04"
},
"agentPoolProfiles": [
{
Expand All @@ -39,7 +40,8 @@
"availabilityZones": [
"1",
"2"
]
],
"distro": "aks-ubuntu-16.04"
}
],
"linuxProfile": {
Expand Down
6 changes: 4 additions & 2 deletions tests/k8s-azure/manifest/linux-vmss-serial.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@
"masterProfile": {
"count": 1,
"dnsPrefix": "{dnsPrefix}",
"vmSize": "Standard_F2"
"vmSize": "Standard_F2",
"distro": "aks-ubuntu-16.04"
},
"agentPoolProfiles": [
{
Expand All @@ -32,7 +33,8 @@
"vmSize": "Standard_F2",
"availabilityProfile": "VirtualMachineScaleSets",
"storageProfile": "ManagedDisks",
"enableVMSSNodePublicIP": true
"enableVMSSNodePublicIP": true,
"distro": "aks-ubuntu-16.04"
}
],
"linuxProfile": {
Expand Down
6 changes: 4 additions & 2 deletions tests/k8s-azure/manifest/linux-vmss.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,15 +23,17 @@
"masterProfile": {
"count": 1,
"dnsPrefix": "{dnsPrefix}",
"vmSize": "Standard_F2"
"vmSize": "Standard_F2",
"distro": "aks-ubuntu-16.04"
},
"agentPoolProfiles": [
{
"name": "agentpool1",
"count": 2,
"vmSize": "Standard_F2",
"availabilityProfile": "VirtualMachineScaleSets",
"storageProfile": "ManagedDisks"
"storageProfile": "ManagedDisks",
"distro": "aks-ubuntu-16.04"
}
],
"linuxProfile": {
Expand Down
6 changes: 4 additions & 2 deletions tests/k8s-azure/manifest/linux.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,15 +23,17 @@
"masterProfile": {
"count": 1,
"dnsPrefix": "{dnsPrefix}",
"vmSize": "Standard_F2"
"vmSize": "Standard_F2",
"distro": "aks-ubuntu-16.04"
},
"agentPoolProfiles": [
{
"name": "agentpool1",
"count": 2,
"vmSize": "Standard_F2",
"availabilityProfile": "AvailabilitySet",
"storageProfile": "ManagedDisks"
"storageProfile": "ManagedDisks",
"distro": "aks-ubuntu-16.04"
}
],
"linuxProfile": {
Expand Down

0 comments on commit 6d79632

Please sign in to comment.