File tree Expand file tree Collapse file tree 4 files changed +19
-3
lines changed Expand file tree Collapse file tree 4 files changed +19
-3
lines changed Original file line number Diff line number Diff line change @@ -161,6 +161,14 @@ HAProxy configuration to be templated to controllers during deployment.
161
161
162
162
stackhpc_enable_os_capacity : true
163
163
164
+ If you are deploying in a cloud with internal TLS, you may be required
165
+ to disable certificate verification for the OpenStack Capacity exporter
166
+ if your certificate is not signed by a trusted CA.
167
+
168
+ .. code-block :: yaml
169
+
170
+ stackhpc_os_capacity_openstack_verify : false
171
+
164
172
After defining your credentials, You may deploy OpenStack Capacity
165
173
using the ``ansible/deploy-os-capacity-exporter.yml `` Ansible playbook
166
174
via Kayobe.
Original file line number Diff line number Diff line change 8
8
interface: "internal"
9
9
identity_api_version: 3
10
10
auth_type: "v3applicationcredential"
11
- {% if kolla_enable_tls_internal | bool %}
11
+ {% if not stackhpc_os_capacity_openstack_verify | bool %}
12
12
verify: False
13
13
{% endif %}
Original file line number Diff line number Diff line change @@ -15,3 +15,7 @@ alertmanager_low_memory_threshold_gib: 5
15
15
# Enabling this flag will result in HAProxy configuration and Prometheus scrape
16
16
# targets being templated during deployment.
17
17
stackhpc_enable_os_capacity : false
18
+
19
+ # Whether TLS certificate verification is enabled for the OpenStack Capacity
20
+ # exporter during Keystone authentication.
21
+ stackhpc_os_capacity_openstack_verify : true
Original file line number Diff line number Diff line change @@ -15,5 +15,9 @@ upgrade:
15
15
'Monitoring' documentation.
16
16
17
17
You must also enable the ``stackhpc_enable_os_capacity``
18
- flag for OpenStack Capacity HAProxy configuration to be
19
- templated.
18
+ flag for OpenStack Capacity HAProxy and Prometheus configuration
19
+ to be templated.
20
+
21
+ To disable certificate verification for the OpenStack Capacity
22
+ exporter, you can set ``stackhpc_os_capacity_openstack_verify``
23
+ to false.
You can’t perform that action at this time.
0 commit comments