This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# run kubectl proxy on a separate terminal | |
kubectl get ns | grep Terminating | awk '{print $1}' | while read NS | |
do | |
echo $NS | |
kubectl get ns --export -o json $NS | grep -v '"kubernetes"' > /tmp/$NS.json | |
curl -H "Content-Type: application/json" -X PUT --data-binary @/tmp/$NS.json http://127.0.0.1:8001/api/v1/namespaces/$NS/finalize | |
done |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
az vmss extension set \ | |
--vmss-name <vmss-name> \ | |
-g <resource-group> \ | |
-n VMAccessForLinux \ | |
--publisher Microsoft.OSTCExtensions \ | |
--version 1.4 \ | |
--protected-settings "{\"username\":\"deploy_user\", \"ssh_key\":\"$(cat ~/.ssh/id_rsa.pub)\"}" | |
# Upgrade ALL instances in the scale set with the new key | |
az vmss update-instances --instance-ids '*' | |
-n <vmss-name> |