diff --git a/doc/source/userguide.rst b/doc/source/userguide.rst index 3d0fb252af..a3bebfd468 100644 --- a/doc/source/userguide.rst +++ b/doc/source/userguide.rst @@ -857,11 +857,13 @@ follows:: chmod +x kubectl sudo mv kubectl /usr/local/bin/kubectl -Kubernetes also provides a browser UI if the cluster has the -Kubernetes UI running; it can be accessed at:: +Kubernetes also provides a browser UI. If the cluster has the +Kubernetes Dashboard running; it can be accessed using:: - http:///UI - where the api_address can obtained from the command 'cluster-show'. + eval $(magnum cluster-config ) + kubectl proxy + + The browser can be accessed at http://localhost:8001/ui For Swarm, the main CLI is 'docker', along with associated tools such as 'docker-compose', etc. Specific version of the binaries can diff --git a/releasenotes/notes/bp-add-kube-dashboard-8a9f7d7c73c2debd.yaml b/releasenotes/notes/bp-add-kube-dashboard-8a9f7d7c73c2debd.yaml new file mode 100644 index 0000000000..5e21a46adf --- /dev/null +++ b/releasenotes/notes/bp-add-kube-dashboard-8a9f7d7c73c2debd.yaml @@ -0,0 +1,7 @@ +--- +features: + - | + Include kubernetes dashboard in kubernetes cluster by default. Users + can use this kubernetes dashboard to manage the kubernetes cluster. + Dashboard can be disabled by setting the label 'kube_dashboard_enabled' + to false.