diff options
author | Brenton Leanhardt <bleanhar@redhat.com> | 2015-11-19 08:03:24 -0500 |
---|---|---|
committer | Brenton Leanhardt <bleanhar@redhat.com> | 2015-11-19 08:03:24 -0500 |
commit | 631132c2f0e043b2d86bfd999eef5be001090eeb (patch) | |
tree | f0ebeca3b679dcbd34ea644e7449adedd03e8a15 /inventory/byo | |
parent | d42b92020d60550fc1ba6de97505d4c98f02f872 (diff) | |
parent | dd5508bdb13af0c67aae49131b314d2c9443282c (diff) | |
download | openshift-631132c2f0e043b2d86bfd999eef5be001090eeb.tar.gz openshift-631132c2f0e043b2d86bfd999eef5be001090eeb.tar.bz2 openshift-631132c2f0e043b2d86bfd999eef5be001090eeb.tar.xz openshift-631132c2f0e043b2d86bfd999eef5be001090eeb.zip |
Merge pull request #881 from abutcher/namedCertRefactor
Refactor named certficates
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"]}] |