Created
February 17, 2020 14:57
-
-
Save joaompinto/3a0fe9ed7b637966e70daf410a3aabab to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
kind delete cluster | |
kind create cluster | |
export OPERATOR_VERSION=v2.0.0-0.g0142d1e9 | |
kubectl create ns cf-operator | |
helm install cf-operator \ | |
--namespace cf-operator \ | |
--set "global.operator.watchNamespace=kubecf" \ | |
https://s3.amazonaws.com/cf-operators/helm-charts/cf-operator-${OPERATOR_VERSION}.tgz | |
sleep 200 # Wait for the operator crds to be deployed | |
export KUBECF_VERSION=0.2.0-b8a2dae | |
helm install kubecf \ | |
--namespace kubecf \ | |
https://scf-v3.s3.amazonaws.com/kubecf-${KUBECF_VERSION}.tgz \ | |
--set "system_domain=kubecf.suse.dev" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment