sip/tools/deployment/deploy-sip.sh
diwakar thyagaraj 09d76d3e97 Enable CI for SIP
* 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
2021-01-19 21:58:59 +00:00

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