Skip to content

Instantly share code, notes, and snippets.

@voraviz
Last active January 28, 2021 03:39
Show Gist options
  • Save voraviz/bf78435ddf4752645da8fdb774ce7dd2 to your computer and use it in GitHub Desktop.
Save voraviz/bf78435ddf4752645da8fdb774ce7dd2 to your computer and use it in GitHub Desktop.
#Create namespace for control plane
oc new-project control-plane --display-name="Control Plane"
#Create control plane
oc create -f \
https://raw.githubusercontent.com/voraviz/openshift-service-mesh-ingress-mtls/main/setup-ossm/smcp.yaml -n control-plane
#Wait couple of minutes for operator to creating control plane
#You can check status by
oc get smcp basic-install -n control-plane
#Create data plane project ( if you don't do this yet)
oc new-project data-plane --display-name="Data Plane"
#Join data-plane namespace into control-plane
oc create -f https://raw.githubusercontent.com/voraviz/openshift-service-mesh-istio-gateway/main/member-roll.yaml -n control-plane
#You can check status by
oc describe smmr default -n control-plane
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment