f503d1b0e7
We're not going to want to list every single sample environment in a single file, so let's also take a directory and just read every yaml file in it. This commit adds support for that as well as some initial environments to demonstrate its use. Change-Id: If2c608f2a61fc5e16784ab594d23f1fa335e1d3c
42 lines
1.7 KiB
YAML
42 lines
1.7 KiB
YAML
# *******************************************************************
|
|
# This file was created automatically by the sample environment
|
|
# generator. Developers should use `tox -e genconfig` to update it.
|
|
# Users are recommended to make changes to a copy of the file instead
|
|
# of the original, if any customizations are needed.
|
|
# *******************************************************************
|
|
# title: Enable SSL on OpenStack Public Endpoints
|
|
# description: |
|
|
# Use this environment to pass in certificates for SSL deployments.
|
|
# For these values to take effect, one of the tls-endpoints-*.yaml environments
|
|
# must also be used.
|
|
parameter_defaults:
|
|
# The content of the SSL certificate (without Key) in PEM format.
|
|
# Mandatory. This parameter must be set by the user.
|
|
# Type: string
|
|
SSLCertificate: |
|
|
The contents of your certificate go here
|
|
|
|
# The content of an SSL intermediate CA certificate in PEM format.
|
|
# Type: string
|
|
SSLIntermediateCertificate: ''
|
|
|
|
# The content of the SSL Key in PEM format.
|
|
# Mandatory. This parameter must be set by the user.
|
|
# Type: string
|
|
SSLKey: |
|
|
The contents of the private key go here
|
|
|
|
# ******************************************************
|
|
# Static parameters - these are values that must be
|
|
# included in the environment but should not be changed.
|
|
# ******************************************************
|
|
# The filepath of the certificate as it will be stored in the controller.
|
|
# Type: string
|
|
DeployedSSLCertificatePath: /etc/pki/tls/private/overcloud_endpoint.pem
|
|
|
|
# *********************
|
|
# End static parameters
|
|
# *********************
|
|
resource_registry:
|
|
OS::TripleO::NodeTLSData: ../../puppet/extraconfig/tls/tls-cert-inject.yaml
|