15 lines
292 B
Bash
15 lines
292 B
Bash
![]() |
#!/bin/sh
|
||
|
|
||
|
NS="robot-shop"
|
||
|
DEPLOYMENTS="cart catalogue dispatch payment ratings shipping user web"
|
||
|
|
||
|
for DEP in $DEPLOYMENTS
|
||
|
do
|
||
|
kubectl -n $NS autoscale deployment $DEP --max 2 --min 1 --cpu-percent 50
|
||
|
done
|
||
|
|
||
|
echo "Waiting 5 seconds for changes to apply..."
|
||
|
sleep 5
|
||
|
kubectl -n $NS get hpa
|
||
|
|