Skip to content

Commit 0a67979

Browse files
committed
Minor updates based on comments in PR
1 parent d6cac86 commit 0a67979

File tree

2 files changed

+9
-11
lines changed

2 files changed

+9
-11
lines changed

articles/aks/tutorial-kubernetes-deploy-application.md

Lines changed: 3 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -57,11 +57,7 @@ In these tutorials, your Azure Container Registry (ACR) instance stores the cont
5757
az acr list --resource-group myResourceGroup --query "[].{acrLoginServer:loginServer}" --output table
5858
```
5959
60-
2. Make sure you're in the cloned *aks-store-demo* directory, and then open the manifest file with a text editor, such as `vi`.
61-
62-
```azurecli-interactive
63-
vi aks-store-quickstart.yaml
64-
```
60+
2. Make sure you're in the cloned *aks-store-demo* directory, and then open the `aks-store-quickstart.yaml` manifest file with a text editor.
6561
6662
3. Update the `image` property for the containers by replacing *ghcr.io/azure-samples* with your ACR login server name.
6763
@@ -79,7 +75,7 @@ In these tutorials, your Azure Container Registry (ACR) instance stores the cont
7975
...
8076
```
8177
82-
4. Save and close the file. In `vi`, use `:wq`.
78+
4. Save and close the file.
8379
8480
### [Azure PowerShell](#tab/azure-powershell)
8581
@@ -89,11 +85,7 @@ In these tutorials, your Azure Container Registry (ACR) instance stores the cont
8985
(Get-AzContainerRegistry -ResourceGroupName myResourceGroup -Name $ACRNAME).LoginServer
9086
```
9187
92-
2. Make sure you're in the cloned *aks-store-demo* directory, and then open the manifest file with a text editor, such as `vi`.
93-
94-
```azurepowershell-interactive
95-
notepad aks-store-quickstart.yaml
96-
```
88+
2. Make sure you're in the cloned *aks-store-demo* directory, and then open the `aks-store-quickstart.yaml` manifest file with a text editor.
9789
9890
3. Update the `image` property for the containers by replacing *ghcr.io/azure-samples* with your ACR login server name.
9991

articles/aks/tutorial-kubernetes-upgrade-cluster.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -164,6 +164,12 @@ You can either [manually upgrade your cluster](#manually-upgrade-cluster) or [co
164164
"nodeImageVersion": "AKSUbuntu-2204gen2containerd-202405.27.0",
165165
"orchestratorVersion": "1.29.2",
166166
"osType": "Linux",
167+
"upgradeSettings": {
168+
"drainTimeoutInMinutes": null,
169+
"maxSurge": "10%",
170+
"nodeSoakDurationInMinutes": null,
171+
"undrainableNodeBehavior": null
172+
},
167173
"vmSize": "Standard_DS2_v2",
168174
...
169175
}

0 commit comments

Comments
 (0)