09d76d3e97
* Install Dependency packages like make,wget,debconf and snapd * Deploy Kubernetes and SIP * Setup roles for Docker and for firewall for Kubernetes * Updated Readme and makefile to reflect minikube Installation Change-Id: I6e8bbe011a00ded0b8b047c1fc095c901a18e1db
9 lines
342 B
Bash
Executable File
9 lines
342 B
Bash
Executable File
#!/bin/bash
|
|
set -xe
|
|
sudo snap install kustomize && sudo snap install go --classic
|
|
make docker-build
|
|
kubectl wait --for=condition=Ready pods --all -A --timeout=180s
|
|
make deploy
|
|
#Wait for sip controller manager Pod.
|
|
kubectl wait -n sipcluster-system pod -l control-plane=controller-manager --for=condition=ready --timeout=240s
|
|
kubectl get po -A |