e2e: Create namespaces for Helm v3

This commit is contained in:
stefanprodan
2020-02-13 11:23:10 +02:00
parent c88fa5d882
commit 089aa1fe22
3 changed files with 3 additions and 0 deletions
+1
View File
@@ -7,6 +7,7 @@ REPO_ROOT=$(git rev-parse --show-toplevel)
echo '>>> Installing Gloo'
helm repo add gloo https://storage.googleapis.com/solo-public-helm
kubectl create ns gloo-system
helm upgrade -i gloo gloo/gloo --version ${GLOO_VER} \
--namespace gloo-system \
--set discovery.enabled=true
+1
View File
@@ -6,6 +6,7 @@ ISTIO_VER="1.4.3"
REPO_ROOT=$(git rev-parse --show-toplevel)
echo ">>> Installing Istio ${ISTIO_VER}"
kubectl create ns istio-system
helm repo add istio.io https://storage.googleapis.com/istio-release/releases/${ISTIO_VER}/charts
echo '>>> Installing Istio CRDs'
+1
View File
@@ -6,6 +6,7 @@ REPO_ROOT=$(git rev-parse --show-toplevel)
NGINX_VERSION=1.26.0
echo '>>> Installing NGINX Ingress'
kubectl create ns ingress-nginx
helm upgrade -i nginx-ingress stable/nginx-ingress --version=${NGINX_VERSION} \
--wait \
--namespace ingress-nginx \