bc29db7bd2
- Move kubedns to a separate mini playbook - Fix custom.yaml location
26 lines
601 B
Bash
Executable file
26 lines
601 B
Bash
Executable file
#!/bin/bash
|
|
|
|
INVENTORY="kargo/inventory/inventory.cfg"
|
|
|
|
nodes=""
|
|
i=1
|
|
for nodeip in `cat /root/nodes` ; do
|
|
i=$(( $i+1 ))
|
|
nodes+=" node${i}[ansible_ssh_host=${nodeip},ip=${nodeip}]"
|
|
done
|
|
|
|
if [ -f "$INVENTORY" ] ; then
|
|
echo "$INVENTORY already exists, if you want to recreate, pls remove it and re-run this script"
|
|
else
|
|
echo "Preparing inventory..."
|
|
kargo prepare -y --nodes $nodes
|
|
fi
|
|
|
|
echo "Running deployment..."
|
|
kargo deploy -y --ansible-opts="-e @custom.yaml"
|
|
deploy_res=$?
|
|
|
|
if [ "$deploy_res" -eq "0" ]; then
|
|
echo "Setting up kubedns..."
|
|
ansible-playbook -i $INVENTORY kubedns.yaml
|
|
fi
|