ที่มา https://www.facebook.com/BrandCaseTH/
My personal blog about health, hobby, stock & investment, information technology, self improvement, tax and travel.
To scale all kubernetes deployments and statefulsets in 1 command, just type
kubectl -n {NAME_SPACE} get statefulset,deployment -o name | xargs -I {} kubectl -n {NAME_SPACE} scale {} --replicas={TOTAL_REPLICA}
We can use this shell script command to remove all GIT local branches
git branch | xargs -I{} git branch -d {}
After running the command above, your GIT local branches will be removed except the current GIT branch.