File tree Expand file tree Collapse file tree
etc/kayobe/ansible/secret-store Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -72,12 +72,14 @@ version of the playbook ``secret-store-generate-internal-tls.yml`` before runnin
7272
7373 After running the playbook, check if the following files are generated.
7474
75+ * ``$KAYOBE_CONFIG_PATH/kolla/certificates/ca/root.crt ``
7576* ``$KAYOBE_CONFIG_PATH/kolla/certificates/proxysql-cert.pem ``
7677* ``$KAYOBE_CONFIG_PATH/kolla/certificates/proxysql-key.pem ``
7778* ``$KAYOBE_CONFIG_PATH/kolla/certificates/proxysql-ca.pem ``
7879
7980If Kayobe environment is used, check these paths.
8081
82+ * ``$KAYOBE_CONFIG_PATH/environments/$KAYOBE_ENVIRONMENT/kolla/certificates/ca/root.crt ``
8183* ``$KAYOBE_CONFIG_PATH/environments/$KAYOBE_ENVIRONMENT/kolla/certificates/proxysql-cert.pem ``
8284* ``$KAYOBE_CONFIG_PATH/environments/$KAYOBE_ENVIRONMENT/kolla/certificates/proxysql-key.pem ``
8385* ``$KAYOBE_CONFIG_PATH/environments/$KAYOBE_ENVIRONMENT/kolla/certificates/proxysql-ca.pem ``
Original file line number Diff line number Diff line change 5151 - name : Copy root CA
5252 ansible.builtin.copy :
5353 src : " {{ kayobe_env_config_path }}/{{ stackhpc_ca_secret_store }}/OS-TLS-ROOT.pem"
54- dest : " {{ kayobe_env_config_path }}/kolla/certificates/ca/{{ stackhpc_ca_secret_store }}.crt "
54+ dest : " {{ item }}"
5555 mode : " 0600"
56+ loop :
57+ - " {{ kayobe_env_config_path }}/kolla/certificates/ca/{{ stackhpc_ca_secret_store }}.crt"
58+ - " {{ kayobe_env_config_path }}/kolla/certificates/ca/root.crt"
5659 delegate_to : localhost
5760
5861# NOTE(seunghun1ee): Kolla Ansible reuses internal TLS certificate when
You can’t perform that action at this time.
0 commit comments