Merge "Add option cafile default value in kuryr-controller's config"

This commit is contained in:
Zuul 2020-04-22 18:14:36 +00:00 committed by Gerrit Code Review
commit 0adbc029df
2 changed files with 10 additions and 1 deletions

View File

@ -42,7 +42,7 @@ that can be used to Deploy Kuryr on Kubernetes. The script is placed in
.. code-block:: console
$ ./tools/generate_k8s_resource_definitions <output_dir> [<controller_conf_path>] [<cni_conf_path>] [<ca_certificate_path>]
$ ./tools/generate_k8s_resource_definitions.sh <output_dir> [<controller_conf_path>] [<cni_conf_path>] [<ca_certificate_path>]
* ``output_dir`` - directory where to put yaml files with definitions.
* ``controller_conf_path`` - path to custom kuryr-controller configuration

View File

@ -57,6 +57,15 @@ username = $username
password = $password
auth_url = $auth_url
auth_type = password
EOF
if [ ! -z $CA_CERTIFICATE_PATH ]; then
cat >> $CONF_PATH << EOF
cafile = /etc/ssl/certs/kuryr-ca-bundle.crt
EOF
fi
cat >> $CONF_PATH << EOF
[neutron_defaults]
ovs_bridge = br-int
service_subnet = $service_subnet_id