Additional steps for Air Gap/Private Registry
+
+
+If you have an Air Gapped network extra configuration will be required.
+
+##### Create registry secret
+
+Create a registry secret in the `kube-system` namespace for the `tiller` ServiceAccount to use.
+
+```
+kubectl -n kube-system create secret docker-registry regcred \
+--docker-server="reg.example.com" \
+--docker-username= \
+--docker-password= \
+--docker-email=
+```
+
+##### Patch the ServiceAccount
+
+Update the ServiceAccount to include the imagePullSecret. Pods created with this ServiceAccount will automatically have the imagePullSecret added to their manifest.
+
+```
+kubectl -n kube-system patch serviceaccount default -p '{\"imagePullSecrets\": [{\"name\": \"regcred\"}]}'
+```
+
+##### Helm Init with `--tiller-image` option
+
+```
+helm init --service-account tiller --tiller-image registry.example.com/kubernetes-helm/tiller:v2.9.1
+```
+
+
+
+
+```
helm init --service-account tiller
```
-> NOTE: This `tiller` install has full cluster access, which should be acceptable if the cluster is dedicated to Rancher server. Check out the [helm docs](https://docs.helm.sh/using_helm/#role-based-access-control) for restricting `tiller` access to suit your security requirements.
\ No newline at end of file
+> NOTE: This `tiller` install has full cluster access, which should be acceptable if the cluster is dedicated to Rancher server. Check out the [helm docs](https://docs.helm.sh/using_helm/#role-based-access-control) for restricting `tiller` access to suit your security requirements.
+
+
+[Next: Install Rancher]({{< baseurl >}}/rancher/v2.x/en/installation/ha-server-install2/rancher/)
\ No newline at end of file
diff --git a/content/rancher/v2.x/en/installation/ha-server-install2/loadbalancer/_index.md b/content/rancher/v2.x/en/installation/ha-server-install2/loadbalancer/_index.md
index b0481f0d287..2ff5d972101 100644
--- a/content/rancher/v2.x/en/installation/ha-server-install2/loadbalancer/_index.md
+++ b/content/rancher/v2.x/en/installation/ha-server-install2/loadbalancer/_index.md
@@ -3,7 +3,7 @@ title: 2 - Configure Load Balancer
weight: 276
---
-Choose a hostname that you will use to access Rancher and
+Choose a hostname that you will use to access Rancher and Create a DNS record to point at your load balancer endpoint.
### Load Balancer
diff --git a/content/rancher/v2.x/en/installation/ha-server-install2/rke/_index.md b/content/rancher/v2.x/en/installation/ha-server-install2/rke/_index.md
index 4e98513899b..408369f6b18 100644
--- a/content/rancher/v2.x/en/installation/ha-server-install2/rke/_index.md
+++ b/content/rancher/v2.x/en/installation/ha-server-install2/rke/_index.md
@@ -28,11 +28,11 @@ nodes:
| Option | Description |
| --- | --- |
-| `address` | The public DNS or IP address |
-| `internal_address` | The private DNS or IP address for inter-cluster traffic |
-| `role` | List of Kubernetes roles assigned to the node |
-| `ssh_key_path` | Path to SSH private key used to authenticate to the node |
-| `user` | A user that can run docker commands |
+| `address` | (required) The public DNS or IP address |
+| `internal_address` | (optional) The private DNS or IP address for internal cluster traffic |
+| `role` | (required) List of Kubernetes roles assigned to the node |
+| `ssh_key_path` | (optional) Path to SSH private key used to authenticate to the node |
+| `user` | (required) A user that can run docker commands |