Update
This commit is contained in:
parent
2b43278546
commit
990aa1df61
2 changed files with 10 additions and 1 deletions
|
@ -13,6 +13,15 @@ k8sDeploy () {
|
||||||
cd ${groot}/contrib/ansible && \
|
cd ${groot}/contrib/ansible && \
|
||||||
ansible-playbook bootstrap-node.yml && \
|
ansible-playbook bootstrap-node.yml && \
|
||||||
ansible-playbook init-cluster.yml
|
ansible-playbook init-cluster.yml
|
||||||
|
# Sometimes it's still not ready on this stage, let's check it just to be sure
|
||||||
|
while true ; do
|
||||||
|
echo "Waiting for node up..."
|
||||||
|
result=$(kubectl get nodes|awk '{print $2}'| tail -1| grep -nE '^Ready')
|
||||||
|
if [ -z "$result" ] ; then
|
||||||
|
break
|
||||||
|
fi
|
||||||
|
sleep 10
|
||||||
|
done
|
||||||
}
|
}
|
||||||
InstallCSI () {
|
InstallCSI () {
|
||||||
helm repo add rimusz https://charts.rimusz.net
|
helm repo add rimusz https://charts.rimusz.net
|
||||||
|
|
2
runme.sh
2
runme.sh
|
@ -14,7 +14,7 @@ installvm() {
|
||||||
echo "Allocating ${vmsize} disk..." && \
|
echo "Allocating ${vmsize} disk..." && \
|
||||||
fallocate -l ${vmsize} ${k8sdsk} && \
|
fallocate -l ${vmsize} ${k8sdsk} && \
|
||||||
echo "Downloading Linux kernel..." && \
|
echo "Downloading Linux kernel..." && \
|
||||||
${wget} ${apptmp}/kernel ${httpboot}/linux && \
|
${wget} ${apptmp}/kernel ${httpboot}/linux && \
|
||||||
echo "Downloading Initial ramdisk..." && \
|
echo "Downloading Initial ramdisk..." && \
|
||||||
${wget} ${apptmp}/initrd ${httpboot}/initrd.gz && \
|
${wget} ${apptmp}/initrd ${httpboot}/initrd.gz && \
|
||||||
echo "Preparing K8S VM..." && \
|
echo "Preparing K8S VM..." && \
|
||||||
|
|
Loading…
Reference in a new issue