diff options
author | Andrew Butcher <abutcher@redhat.com> | 2015-11-12 10:46:25 -0500 |
---|---|---|
committer | Andrew Butcher <abutcher@redhat.com> | 2015-11-16 14:23:20 -0500 |
commit | 03e6ae850ce718c008636bd8db093f453e62ccf3 (patch) | |
tree | 1d3583b5e2ccbb8b2fbdc0f3c5ea824a79803063 /inventory/byo | |
parent | 947ea1eae90b678c93b8f8118904f6ce2e3026c8 (diff) | |
download | openshift-03e6ae850ce718c008636bd8db093f453e62ccf3.tar.gz openshift-03e6ae850ce718c008636bd8db093f453e62ccf3.tar.bz2 openshift-03e6ae850ce718c008636bd8db093f453e62ccf3.tar.xz openshift-03e6ae850ce718c008636bd8db093f453e62ccf3.zip |
Refactor named certificates.
Diffstat (limited to 'inventory/byo')
-rw-r--r-- | inventory/byo/hosts.example | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/inventory/byo/hosts.example b/inventory/byo/hosts.example index 56bbb9612..423581281 100644 --- a/inventory/byo/hosts.example +++ b/inventory/byo/hosts.example @@ -111,8 +111,17 @@ openshift_master_identity_providers=[{'name': 'htpasswd_auth', 'login': 'true', # set RPM version for debugging purposes #openshift_pkg_version=-3.0.0.0 -# Configure custom master certificates +# Configure custom named certificates +# NOTE: openshift_master_named_certificates is cached on masters and is an +# additive fact, meaning that each run with a different set of certificates +# will add the newly provided certificates to the cached set of certificates. +# If you would like openshift_master_named_certificates to be overwritten with +# the provided value, specify openshift_master_overwrite_named_certificates. +#openshift_master_overwrite_named_certificates: true +# +# Provide local certificate paths which will be deployed to masters #openshift_master_named_certificates=[{"certfile": "/path/to/custom1.crt", "keyfile": "/path/to/custom1.key"}] +# # Detected names may be overridden by specifying the "names" key #openshift_master_named_certificates=[{"certfile": "/path/to/custom1.crt", "keyfile": "/path/to/custom1.key", "names": ["public-master-host.com"]}] |