Fixes/Updates OSH Developer and Multinode install guide

This PS fixes few typos and adds DNS entry update section
to notify user.

Change-Id: I59f5c90aaa06a5996c3ddb7a7b1bd3c4adfe0eb7
This commit is contained in:
Renis 2018-03-02 10:48:29 -08:00
parent 2825b03714
commit 3859a5b5aa
4 changed files with 30 additions and 4 deletions

View File

@ -2,6 +2,10 @@
Deployment With Ceph Deployment With Ceph
==================== ====================
.. note::
For other deployment options, select appropriate ``Deployment with ...``
option from `Index <../developer/index.html>`__ page.
Deploy Ceph Deploy Ceph
^^^^^^^^^^^ ^^^^^^^^^^^

View File

@ -2,6 +2,10 @@
Deployment With NFS Deployment With NFS
=================== ===================
.. note::
For other deployment options, select appropriate ``Deployment with ...``
option from `Index <../developer/index.html>`__ page.
Deploy NFS Provisioner Deploy NFS Provisioner
^^^^^^^^^^^^^^^^^^^^^^ ^^^^^^^^^^^^^^^^^^^^^^

View File

@ -26,6 +26,12 @@ should be cloned:
git clone https://git.openstack.org/openstack/openstack-helm.git git clone https://git.openstack.org/openstack/openstack-helm.git
.. note::
This installation, by default will use Google DNS servers, 8.8.8.8 or 8.8.4.4
and updates resolv.conf. These DNS nameserver entries can be changed by
updating file ``/opt/openstack-helm-infra/tools/images/kubeadm-aio/assets/opt/playbooks/vars.yaml``
under section ``external_dns_nameservers``.
Deploy Kubernetes & Helm Deploy Kubernetes & Helm
------------------------ ------------------------

View File

@ -55,9 +55,9 @@ On the worker nodes
#!/bin/bash #!/bin/bash
set -xe set -xe
apt-get update sudo apt-get update
apt-get install --no-install-recommends -y \ sudo apt-get install --no-install-recommends -y \
git git
SSH-Key preparation SSH-Key preparation
@ -78,7 +78,7 @@ should be cloned onto each node in the cluster:
#!/bin/bash #!/bin/bash
set -xe set -xe
chown -R ubuntu: /opt sudo chown -R ubuntu: /opt
git clone https://git.openstack.org/openstack/openstack-helm-infra.git /opt/openstack-helm-infra git clone https://git.openstack.org/openstack/openstack-helm-infra.git /opt/openstack-helm-infra
git clone https://git.openstack.org/openstack/openstack-helm.git /opt/openstack-helm git clone https://git.openstack.org/openstack/openstack-helm.git /opt/openstack-helm
@ -141,6 +141,15 @@ On the master node create an environment file for the cluster:
domain: cluster.local domain: cluster.local
EOF EOF
.. note::
This installation, by default will use Google DNS servers, 8.8.8.8 or 8.8.4.4
and updates resolv.conf. These DNS nameserver entries can be changed by
updating file ``/openstack-helm-infra/tools/images/kubeadm-aio/assets/opt/playbooks/vars.yaml``
under section ``external_dns_nameservers``. This change must be done on each
node in your cluster.
Run the playbooks Run the playbooks
----------------- -----------------
@ -157,6 +166,9 @@ On the master node run the playbooks:
Deploy OpenStack-Helm Deploy OpenStack-Helm
===================== =====================
.. note::
The following commands all assume that they are run from the ``openstack-helm`` directory.
Setup Clients on the host and assemble the charts Setup Clients on the host and assemble the charts
------------------------------------------------- -------------------------------------------------