Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

replication hostAliases documented #140

Merged
merged 2 commits into from
Feb 21, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion content/docs/replication/deployment/configmap-secrets.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,8 @@ You need to create secrets (using either of the two methods) in each cluster inv
the respective CSM Replication Controllers.

>Important: Direct network visibility between clusters required for CSM-Replication to work.
> Cluster-1's API URL has to be pingable from cluster-2 pods and vice versa.
> Cluster-1's API URL has to be pingable from cluster-2 pods and vice versa. If private networks are used and/or DNS is not set up properly - you may need to modify `/etc/hosts` file from within controller's pod.
> This can be achieved by using helm installation method. Refer to the [link](../installation/#using-the-installation-script)


>Note: If you are using a single stretched cluster, then you can skip all the following steps
Expand Down
6 changes: 6 additions & 0 deletions content/docs/replication/deployment/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,12 @@ kubectl create ns dell-replication-controller
cp ../helm/csm-replication/values.yaml ./myvalues.yaml
bash scripts/install.sh --values ./myvalues.yaml
```
>Note: Current installation method allows you to specify custom `<FQDN>:<IP>` entry to be appended to controller's `/etc/hosts` file. It can be useful if controller is being deployed in private environment where DNS is not set up properly, but kubernetes clusters use FQDN as API server's address.
> The feature can be enabled by modifying `values.yaml`.
>``` hostAliases:
> enableHostAliases: true
> hostName: "foo.bar"
> ip: "10.10.10.10"

This script will do the following:
1. Install `DellCSIReplicationGroup` CRD in your cluster
Expand Down