Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions doc/source/operations/upgrading-openstack.rst
Original file line number Diff line number Diff line change
Expand Up @@ -72,12 +72,14 @@ version of the playbook ``secret-store-generate-internal-tls.yml`` before runnin

After running the playbook, check if the following files are generated.

* ``$KAYOBE_CONFIG_PATH/kolla/certificates/ca/root.crt``
* ``$KAYOBE_CONFIG_PATH/kolla/certificates/proxysql-cert.pem``
* ``$KAYOBE_CONFIG_PATH/kolla/certificates/proxysql-key.pem``
* ``$KAYOBE_CONFIG_PATH/kolla/certificates/proxysql-ca.pem``

If Kayobe environment is used, check these paths.

* ``$KAYOBE_CONFIG_PATH/environments/$KAYOBE_ENVIRONMENT/kolla/certificates/ca/root.crt``
* ``$KAYOBE_CONFIG_PATH/environments/$KAYOBE_ENVIRONMENT/kolla/certificates/proxysql-cert.pem``
* ``$KAYOBE_CONFIG_PATH/environments/$KAYOBE_ENVIRONMENT/kolla/certificates/proxysql-key.pem``
* ``$KAYOBE_CONFIG_PATH/environments/$KAYOBE_ENVIRONMENT/kolla/certificates/proxysql-ca.pem``
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,11 @@
- name: Copy root CA
ansible.builtin.copy:
src: "{{ kayobe_env_config_path }}/{{ stackhpc_ca_secret_store }}/OS-TLS-ROOT.pem"
dest: "{{ kayobe_env_config_path }}/kolla/certificates/ca/{{ stackhpc_ca_secret_store }}.crt"
dest: "{{ item }}"
mode: "0600"
loop:
- "{{ kayobe_env_config_path }}/kolla/certificates/ca/{{ stackhpc_ca_secret_store }}.crt"
- "{{ kayobe_env_config_path }}/kolla/certificates/ca/root.crt"
delegate_to: localhost

# NOTE(seunghun1ee): Kolla Ansible reuses internal TLS certificate when
Expand Down
Loading