diff options
| author | lpsantil <lpsantil@gmail.com> | 2017-10-28 00:34:30 -0700 | 
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-10-28 00:34:30 -0700 | 
| commit | bc29662953441f72e4c9cc191b387b14a5bd0f3a (patch) | |
| tree | c51026e84862c68b9b6c93184045ffdfc198542e /inventory | |
| parent | d40744574297204f5e7c326491ae1af07fab17ed (diff) | |
| download | openshift-bc29662953441f72e4c9cc191b387b14a5bd0f3a.tar.gz openshift-bc29662953441f72e4c9cc191b387b14a5bd0f3a.tar.bz2 openshift-bc29662953441f72e4c9cc191b387b14a5bd0f3a.tar.xz openshift-bc29662953441f72e4c9cc191b387b14a5bd0f3a.zip | |
Make clearer *_nfs_directory and *_volume_name
Diffstat (limited to 'inventory')
| -rw-r--r-- | inventory/byo/hosts.example | 24 | 
1 files changed, 18 insertions, 6 deletions
| diff --git a/inventory/byo/hosts.example b/inventory/byo/hosts.example index 75ddf8e10..026fa06b0 100644 --- a/inventory/byo/hosts.example +++ b/inventory/byo/hosts.example @@ -432,7 +432,9 @@ openshift_master_identity_providers=[{'name': 'htpasswd_auth', 'login': 'true',  # NFS Host Group  # An NFS volume will be created with path "nfs_directory/volume_name"  # on the host within the [nfs] host group.  For example, the volume -# path using these options would be "/exports/registry" +# path using these options would be "/exports/registry".  "exports" is +# is the name of the export served by the nfs server.  "registry" is +# the name of a directory inside of "/exports".  #openshift_hosted_registry_storage_kind=nfs  #openshift_hosted_registry_storage_access_modes=['ReadWriteMany']  # nfs_directory must conform to DNS-1123 subdomain must consist of lower case @@ -445,7 +447,9 @@ openshift_master_identity_providers=[{'name': 'htpasswd_auth', 'login': 'true',  # External NFS Host  # NFS volume must already exist with path "nfs_directory/_volume_name" on  # the storage_host. For example, the remote volume path using these -# options would be "nfs.example.com:/exports/registry" +# options would be "nfs.example.com:/exports/registry".  "exports" is +# is the name of the export served by the nfs server.  "registry" is +# the name of a directory inside of "/exports".  #openshift_hosted_registry_storage_kind=nfs  #openshift_hosted_registry_storage_access_modes=['ReadWriteMany']  #openshift_hosted_registry_storage_host=nfs.example.com @@ -517,7 +521,9 @@ openshift_master_identity_providers=[{'name': 'htpasswd_auth', 'login': 'true',  # Option A - NFS Host Group  # An NFS volume will be created with path "nfs_directory/volume_name"  # on the host within the [nfs] host group.  For example, the volume -# path using these options would be "/exports/metrics" +# path using these options would be "/exports/metrics".  "exports" is +# is the name of the export served by the nfs server.  "metrics" is +# the name of a directory inside of "/exports".  #openshift_metrics_storage_kind=nfs  #openshift_metrics_storage_access_modes=['ReadWriteOnce']  #openshift_metrics_storage_nfs_directory=/exports @@ -529,7 +535,9 @@ openshift_master_identity_providers=[{'name': 'htpasswd_auth', 'login': 'true',  # Option B - External NFS Host  # NFS volume must already exist with path "nfs_directory/_volume_name" on  # the storage_host. For example, the remote volume path using these -# options would be "nfs.example.com:/exports/metrics" +# options would be "nfs.example.com:/exports/metrics".  "exports" is +# is the name of the export served by the nfs server.  "metrics" is +# the name of a directory inside of "/exports".  #openshift_metrics_storage_kind=nfs  #openshift_metrics_storage_access_modes=['ReadWriteOnce']  #openshift_metrics_storage_host=nfs.example.com @@ -571,7 +579,9 @@ openshift_master_identity_providers=[{'name': 'htpasswd_auth', 'login': 'true',  # Option A - NFS Host Group  # An NFS volume will be created with path "nfs_directory/volume_name"  # on the host within the [nfs] host group.  For example, the volume -# path using these options would be "/exports/logging" +# path using these options would be "/exports/logging".  "exports" is +# is the name of the export served by the nfs server.  "logging" is +# the name of a directory inside of "/exports".  #openshift_logging_storage_kind=nfs  #openshift_logging_storage_access_modes=['ReadWriteOnce']  #openshift_logging_storage_nfs_directory=/exports @@ -583,7 +593,9 @@ openshift_master_identity_providers=[{'name': 'htpasswd_auth', 'login': 'true',  # Option B - External NFS Host  # NFS volume must already exist with path "nfs_directory/_volume_name" on  # the storage_host. For example, the remote volume path using these -# options would be "nfs.example.com:/exports/logging" +# options would be "nfs.example.com:/exports/logging".  "exports" is +# is the name of the export served by the nfs server.  "logging" is +# the name of a directory inside of "/exports".  #openshift_logging_storage_kind=nfs  #openshift_logging_storage_access_modes=['ReadWriteOnce']  #openshift_logging_storage_host=nfs.example.com | 
