Skip to content

Commit

Permalink
Merge pull request openstack-k8s-operators#746 from jlarriba/fix_10039
Browse files Browse the repository at this point in the history
[OSPRH-10039] Openstack edpm update failed on telemetry node_export u…
  • Loading branch information
openshift-merge-bot[bot] authored Sep 9, 2024
2 parents 300cbb8 + bc3dbfb commit 04e5759
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions roles/edpm_telemetry/tasks/install.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,16 @@
edpm_container_manage_config_patterns: ceilometer_agent_ipmi.json
edpm_container_manage_clean_orphans: false

- name: Check that tls.crt exists
ansible.builtin.stat:
path: "{{ edpm_telemetry_certs }}/tls.crt"
register: tls_crt_stat

- name: Check that tls.key exists
ansible.builtin.stat:
path: "{{ edpm_telemetry_certs }}/tls.key"
register: tls_key_stat

- name: Deploy node_exporter container with TLS enabled if certs are present
become: true
containers.podman.podman_container:
Expand Down

0 comments on commit 04e5759

Please sign in to comment.