Browse Source

Bugfix: return missing deploy command

Aleksandr Didenko 9 years ago
parent
commit
60fa68e5f7
1 changed files with 1 additions and 2 deletions
  1. 3
      deploy-k8s.kargo.sh

3
deploy-k8s.kargo.sh

@ -1,8 +1,6 @@
#!/bin/bash
custom_opts='--ansible-opts=\"-e kargo/custom.yaml\"'
nodes=""
i=0
for nodeip in `cat /root/nodes` ; do
i=$(( $i+1 ))
@ -17,6 +15,7 @@ else
fi
echo "Running deployment..."
kargo deploy -y --ansible-opts="-e kargo/custom.yaml"
deploy_res=$?
if [ "$deploy_res" -eq "0" ]; then

Loading…
Cancel
Save