Skip to content

Commit 43e025e

Browse files
committed
Updated files
1 parent bb610ae commit 43e025e

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -1598,7 +1598,7 @@ In this section, we will explore value add features for administering & managing
15981598
$ kubectl get nodes
15991599
#
16001600
```
1601-
[Auto-scaling](https://docs.microsoft.com/en-us/azure/aks/cluster-autoscaler) an AKS cluster is currently in public preview.
1601+
The cluster can also be configured for automatic scaling. You can read more about cluster **auto-scaling** feature in the [AKS documentation](https://docs.microsoft.com/en-us/azure/aks/cluster-autoscaler).
16021602
16031603
2. [Upgrade an AKS cluster](https://docs.microsoft.com/en-us/azure/aks/upgrade-cluster)
16041604
@@ -1612,9 +1612,9 @@ In this section, we will explore value add features for administering & managing
16121612
# List the available upgrade versions for the AKS cluster
16131613
$ az aks get-upgrades -g myResourceGroup -n akscluster -o table
16141614
#
1615-
# Upgrade the AKS cluster to v1.15.7. Then confirm (y) the upgrade.
1615+
# Upgrade the AKS cluster to v1.16.9. Then confirm (y) the upgrade.
16161616
# Be patient. The upgrade will run for a few minutes!
1617-
$ az aks upgrade -g myResourceGroup -n akscluster --kubernetes-version 1.15.7
1617+
$ az aks upgrade -g myResourceGroup -n akscluster --kubernetes-version 1.16.9
16181618
#
16191619
# Verify the nodes have been upgraded by checking the value under the 'KubernetesVersion' column
16201620
$ az aks show -g myResourceGroup -n akscluster -o table
@@ -1674,7 +1674,7 @@ In this section, we will explore a few advanced features provided by Kubernetes
16741674
# Verify only 1 in 4 API calls are being served by the Canary release
16751675
```
16761676
1677-
Use **curl** and invoke the Claims API end-point in a loop. You will observe that version v1 of the Claims API will only be invoked once for every 3 invokations of version v2 of the API.
1677+
Use **curl** and invoke the Claims API end-point in a loop. You will observe that version v2 of the Claims API will only be invoked once for every 3 invokations of version v1 of the API.
16781678
16791679
You can tweak the number of replicas in the v1 and v2 deployments to determine the ratio of each release which will receive live traffic.
16801680

k8s-resources/claims-canary-deploy.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ metadata:
66
app: claims-api-v2
77
mesh: istio
88
spec:
9-
replicas: 3
9+
replicas: 1
1010
selector:
1111
matchLabels:
1212
app: claims-api
@@ -53,7 +53,7 @@ metadata:
5353
app: claims-api-v1
5454
mesh: istio
5555
spec:
56-
replicas: 1
56+
replicas: 3
5757
selector:
5858
matchLabels:
5959
app: claims-api

0 commit comments

Comments
 (0)