You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/aks/custom-node-configuration.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -191,17 +191,17 @@ The settings below can be used to modify other Operating System settings.
191
191
192
192
### Message of the Day
193
193
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.
195
195
196
196
197
197
#### Cluster creation
198
198
```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
200
200
```
201
201
202
202
#### Nodepool creation
203
203
```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
0 commit comments