Skip to content

Commit

Permalink
Update example k8s version to v1.15.0-rc.1
Browse files Browse the repository at this point in the history
  • Loading branch information
feiskyer committed Jun 13, 2019
1 parent 92400fd commit 54c7b9f
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 19 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ TEST_RESULTS_DIR=testResults
GOMETALINTER_OPTION=--tests --disable-all -E gofmt -E vet -E golint

IMAGE_REGISTRY ?= local
K8S_VERSION ?= v1.14.0
K8S_VERSION ?= v1.15.0-rc.1
AKSENGINE_VERSION ?= master
HYPERKUBE_IMAGE ?= gcrio.azureedge.net/google_containers/hyperkube-amd64:$(K8S_VERSION)
# manifest name under tests/e2e/k8s-azure/manifest
Expand Down Expand Up @@ -105,7 +105,7 @@ test-update: update-prepare update

test-e2e:
hack/test_k8s_e2e.sh $(TEST_E2E_ARGS)


test-ccm-e2e:
go test ./tests/e2e/ -timeout 0 -v $(CCM_E2E_ARGS)
Expand Down
6 changes: 3 additions & 3 deletions examples/aks-engine.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@
"properties": {
"orchestratorProfile": {
"orchestratorType": "Kubernetes",
"orchestratorRelease": "1.14",
"orchestratorRelease": "1.15",
"kubernetesConfig": {
"useCloudControllerManager": true,
"customCcmImage": "gcrio.azureedge.net/google_containers/cloud-controller-manager-amd64:v1.14.0",
"customHyperkubeImage": "gcrio.azureedge.net/google_containers/hyperkube-amd64:v1.14.0",
"customCcmImage": "gcrio.azureedge.net/google_containers/cloud-controller-manager-amd64:v1.15.0-rc.1",
"customHyperkubeImage": "gcrio.azureedge.net/google_containers/hyperkube-amd64:v1.15.0-rc.1",
"networkPolicy": "none",
"cloudProviderRateLimitQPS": 6,
"cloudProviderRateLimitBucket": 20,
Expand Down
21 changes: 10 additions & 11 deletions examples/az.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@
"properties": {
"orchestratorProfile": {
"orchestratorType": "Kubernetes",
"orchestratorRelease": "1.14",
"orchestratorRelease": "1.15",
"kubernetesConfig": {
"useCloudControllerManager": true,
"customCcmImage": "gcrio.azureedge.net/google_containers/cloud-controller-manager-amd64:v1.14.0",
"customHyperkubeImage": "gcrio.azureedge.net/google_containers/hyperkube-amd64:v1.14.0",
"customCcmImage": "gcrio.azureedge.net/google_containers/cloud-controller-manager-amd64:v1.15.0-rc.1",
"customHyperkubeImage": "gcrio.azureedge.net/google_containers/hyperkube-amd64:v1.15.0-rc.1",
"networkPolicy": "none",
"cloudProviderRateLimitQPS": 6,
"cloudProviderRateLimitBucket": 20,
Expand All @@ -23,12 +23,11 @@
"masterProfile": {
"count": 1,
"dnsPrefix": "k8s",
"vmSize": "Standard_D2_v3",
"availabilityZones": [
"vmSize": "Standard_D2_v3",
"availabilityZones": [
"1",
"2"
]

},
"agentPoolProfiles": [
{
Expand All @@ -38,10 +37,10 @@
"availabilityProfile": "VirtualMachineScaleSets",
"storageProfile": "ManagedDisks",
"availabilityZones": [
"1",
"2"
]
}
"1",
"2"
]
}
],
"linuxProfile": {
"adminUsername": "azureuser"
Expand All @@ -51,4 +50,4 @@
"secret": "{servicePrincipalClientSecret}"
}
}
}
}
5 changes: 2 additions & 3 deletions hack/deploy-cluster.sh
Original file line number Diff line number Diff line change
Expand Up @@ -65,9 +65,9 @@ function cleanup() {
}
trap cleanup EXIT

base_manifest_file=${REPO_ROOT}/examples/aks-engine.json
base_manifest=${REPO_ROOT}/examples/aks-engine.json
if [ ! -z "$ENABLE_AVAILABILITY_ZONE" ]; then
base_manifest_file=${REPO_ROOT}/examples/az.json
base_manifest=${REPO_ROOT}/examples/az.json
fi

# Configure the manifests for aks-engine
Expand Down Expand Up @@ -138,4 +138,3 @@ reclaimPolicy: Delete
volumeBindingMode: Immediate
EOF
fi

0 comments on commit 54c7b9f

Please sign in to comment.