From a30fe7e5d1bfc5eb0d74b021cf4a61130da0d6f2 Mon Sep 17 00:00:00 2001 From: "Brandon B. Jozsa" Date: Thu, 29 Dec 2016 21:56:50 -0500 Subject: [PATCH] Update minikube.md --- docs/developer/minikube.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/docs/developer/minikube.md b/docs/developer/minikube.md index 5e34910ebf..209db1e6ca 100644 --- a/docs/developer/minikube.md +++ b/docs/developer/minikube.md @@ -129,6 +129,7 @@ So we recommend creating one for MariaDB like shown below. $ sudo mkdir -p /data/openstack-helm/mariadb ``` +### Label Minikube Node Next, label your minikube node according to the documentation in our installation guide (this remains exactly the same). ``` @@ -137,6 +138,8 @@ $ kubectl label nodes openstack-control-plane=enabled --all --namespace=openstac ``` ***NOTE:*** *You do not need to label your minikube cluster for `ceph-storage`, since development mode uses hostPath.* + +### Deploy MariaDB Now you can deploy the first recommended chart (required by all other child charts), MariaDB. ``` @@ -144,6 +147,8 @@ $ helm install --name mariadb --set development.enabled=true local/mariadb --nam ``` ***IMPORTANT:*** *MariaDB seeding tasks run for quite a while. This is expected behavior. Please wait for a few minutes for these jobs to complete.* + +### Deploy Remaining Charts Once MariaDB is deployed fulfilled, you can deploy other charts as needed. ```