diff options
author | Andrew Butcher <abutcher@redhat.com> | 2016-01-19 14:50:55 -0500 |
---|---|---|
committer | Andrew Butcher <abutcher@redhat.com> | 2016-02-01 17:05:55 -0500 |
commit | 44e5ddc20e7069e5345f48426a69e725aa8ea1d4 (patch) | |
tree | 638eb0ffb58c3482e2fd44766e867d6e68fac0f4 /inventory/byo/hosts.aep.example | |
parent | 3d3053062ee3bca175df6eb4dd66ff56237234ca (diff) | |
download | openshift-44e5ddc20e7069e5345f48426a69e725aa8ea1d4.tar.gz openshift-44e5ddc20e7069e5345f48426a69e725aa8ea1d4.tar.bz2 openshift-44e5ddc20e7069e5345f48426a69e725aa8ea1d4.tar.xz openshift-44e5ddc20e7069e5345f48426a69e725aa8ea1d4.zip |
Refactor registry storage options.
Diffstat (limited to 'inventory/byo/hosts.aep.example')
-rw-r--r-- | inventory/byo/hosts.aep.example | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/inventory/byo/hosts.aep.example b/inventory/byo/hosts.aep.example index 05aef586f..04cbd004f 100644 --- a/inventory/byo/hosts.aep.example +++ b/inventory/byo/hosts.aep.example @@ -203,6 +203,40 @@ openshift_master_identity_providers=[{'name': 'htpasswd_auth', 'login': 'true', # Configure dnsIP in the node config #openshift_dns_ip=172.30.0.1 +# Persistent Storage Options +# +## Registry Storage Options +## +## Storage Kind +## Specifies which storage kind will be used for the registry. +## "nfs" is the only supported kind at this time. +##openshift_hosted_registry_storage_kind=nfs +## +## Storage Host +## This variable can be used to identify a pre-existing storage host +## if a storage host group corresponding to the storage kind (such as +## [nfs]) is not specified, +##openshift_hosted_registry_storage_host=nfs.example.com +## +## NFS Export Options +##openshift_hosted_registry_storage_nfs_options='*(rw,root_squash)' +## +## NFS Export Directory +## Specify the root exports directory. This directory will be created +## if specifying an [nfs] host group. +## This variable must be supplied if using a pre-existing nfs server. +##openshift_hosted_registry_storage_nfs_directory=/exports +## +## Registry Volume Name +## Specify the storage volume name. This directory will be created +## within openshift_hosted_registry_storage_nfs_directory if +## specifying an [nfs] group. Ex. /exports/registry +## This variable must be supplied if using a pre-existing nfs server. +##openshift_hosted_registry_storage_volume_name=registry +## +## Persistent Volume Access Mode +##openshift_hosted_registry_storage_access_modes=['ReadWriteMany'] + # Configure node kubelet arguments #openshift_node_kubelet_args={'max-pods': ['40'], 'image-gc-high-threshold': ['90'], 'image-gc-low-threshold': ['80']} |