Skip to content

Commit 9478f01

Browse files
author
Justin Davies
committed
Fix B64 -> file
1 parent 3dac231 commit 9478f01

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

articles/aks/custom-node-configuration.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -191,17 +191,17 @@ The settings below can be used to modify other Operating System settings.
191191

192192
### Message of the Day
193193

194-
Pass the ```--message-of-the-day``` flag with a Base64 encoded string to modify the Message of the Day on Linux nodes at cluster creation or node pool creation.
194+
Pass the ```--message-of-the-day``` flag with the location of the file to replace the Message of the Day on Linux nodes at cluster creation or node pool creation.
195195

196196

197197
#### Cluster creation
198198
```azurecli
199-
az aks create --cluster-name myAKSCluster --resource-group myResourceGroup --message-of-the-day V2VsY29tZSB0byBBS1M=
199+
az aks create --cluster-name myAKSCluster --resource-group myResourceGroup --message-of-the-day ./newMOTD.txt
200200
```
201201

202202
#### Nodepool creation
203203
```azurecli
204-
az aks nodepool add --name mynodepool1 --cluster-name myAKSCluster --resource-group myResourceGroup --message-of-the-day V2VsY29tZSB0byBBS1M=
204+
az aks nodepool add --name mynodepool1 --cluster-name myAKSCluster --resource-group myResourceGroup --message-of-the-day ./newMOTD.txt
205205
```
206206

207207

0 commit comments

Comments
 (0)