Este conteúdo não está disponível no idioma selecionado.
Chapter 5. Installing the Network controller to enable console
Prerequisites
-
cluster-admin
access to a cluster.
Procedure
- Download YAML files, choose the latest Version for 2.0 at Software Downloads and download the Skupper deployments (yamls).
Create a site, for example:
skupper site create west
$ skupper site create west
Copy to Clipboard Copied! Toggle word wrap Toggle overflow Apply the Network controller YAML:
kubectl apply -f skupper-network-observer-openshift-2.0.0-rh.yaml
$ kubectl apply -f skupper-network-observer-openshift-2.0.0-rh.yaml
Copy to Clipboard Copied! Toggle word wrap Toggle overflow Navigate to the console.
On OpenShift:
oc get routes
$ oc get routes
Copy to Clipboard Copied! Toggle word wrap Toggle overflow The route is prefixed with
skupper-network-observer-<site-namespace>
. You can log in using OpenShift credentials.On other Kubernetes, expose the
skupper-network-observer
service. Askupper
user is created and you can get the password using:kubectl --namespace <site-namespace> \ get secret skupper-network-observer-auth \ -o jsonpath='{.data.htpasswd}' | base64 -d | sed 's/\(.*\):{PLAIN}\(.*\)/\1 \2\n/'
$ kubectl --namespace <site-namespace> \ get secret skupper-network-observer-auth \ -o jsonpath='{.data.htpasswd}' | base64 -d | sed 's/\(.*\):{PLAIN}\(.*\)/\1 \2\n/'
Copy to Clipboard Copied! Toggle word wrap Toggle overflow