first upload

This commit is contained in:
2025-07-19 16:30:52 +02:00
parent cc0d91a220
commit 946b6ef346
10 changed files with 341 additions and 0 deletions

16
0.deploy-ALL.sh Executable file
View File

@@ -0,0 +1,16 @@
#!/bin/bash
./1.kind-cluster-create.sh
./2.0.base.sh
./2.5.istio-deploy.sh
./3.helm-deploy-zabbix-monitoring.sh # <- kommenteld ki a sor elejét, ha nem használsz zabbixot
echo -ne "\nVárjuk meg, amíg elindul az összes pod... "
n=1
while [ $(kubectl get po -A | grep -v STATUS | grep -vc Running) -ne 1 ]
do
sleep 1
echo -n "#"
n=$((n+1))
done
echo " ...kész ($n sec)!"