Skip to content

DNM: Generate ProxySQL certificates #1765

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Draft
wants to merge 1 commit into
base: stackhpc/2025.1
Choose a base branch
from
Draft
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
35 changes: 35 additions & 0 deletions etc/kayobe/ansible/openbao-generate-internal-tls.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,3 +54,38 @@
dest: "{{ kayobe_env_config_path }}/kolla/certificates/ca/openbao.crt"
mode: "0600"
delegate_to: localhost

# NOTE(seunghun1ee): Kolla Ansible reuses internal TLS certificate when
# creating certificate for proxysql
# https://opendev.org/openstack/kolla-ansible/src/branch/stable/2025.1/ansible/roles/certificates/tasks/generate.yml#L169-L183
- name: Generate ProxySQL certificates
when: kolla_enable_proxysql
block:
- name: Copy ProxySQL certificate
no_log: true
ansible.builtin.copy:
dest: "{{ kayobe_env_config_path }}/kolla/certificates/proxysql-cert.pem"
content: |
{{ internal_cert.data.certificate }}
{{ internal_cert.data.issuing_ca }}
mode: "0600"
delegate_to: localhost

- name: Copy ProxySQL certificate key
no_log: true
ansible.builtin.copy:
dest: "{{ kayobe_env_config_path }}/kolla/certificates/proxysql-key.pem"
content: |
{{ internal_cert.data.private_key }}
mode: "0600"
delegate_to: localhost

# NOTE(seunghun1ee): ProxySQL only expects root CA to be named ``root.crt`` because of
# https://opendev.org/openstack/kolla-ansible/src/branch/stable/2025.1/ansible/roles/loadbalancer/templates/proxysql/proxysql.json.j2#L36
# Make a duplicate of ``openbao.crt`` named ``root.crt``
- name: Copy root CA for ProxySQL
ansible.builtin.copy:
src: "{{ kayobe_env_config_path }}/openbao/OS-TLS-ROOT.pem"
dest: "{{ kayobe_env_config_path }}/kolla/certificates/ca/root.crt"
mode: "0600"
delegate_to: localhost
35 changes: 35 additions & 0 deletions etc/kayobe/ansible/vault-generate-internal-tls.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,3 +54,38 @@
dest: "{{ kayobe_env_config_path }}/kolla/certificates/ca/vault.crt"
mode: "0600"
delegate_to: localhost

# NOTE(seunghun1ee): Kolla Ansible reuses internal TLS certificate when
# creating certificate for proxysql
# https://opendev.org/openstack/kolla-ansible/src/branch/stable/2025.1/ansible/roles/certificates/tasks/generate.yml#L169-L183
- name: Generate ProxySQL certificates
when: kolla_enable_proxysql
block:
- name: Copy ProxySQL certificate
no_log: true
ansible.builtin.copy:
dest: "{{ kayobe_env_config_path }}/kolla/certificates/proxysql-cert.pem"
content: |
{{ internal_cert.data.certificate }}
{{ internal_cert.data.issuing_ca }}
mode: "0600"
delegate_to: localhost

- name: Copy ProxySQL certificate key
no_log: true
ansible.builtin.copy:
dest: "{{ kayobe_env_config_path }}/kolla/certificates/proxysql-key.pem"
content: |
{{ internal_cert.data.private_key }}
mode: "0600"
delegate_to: localhost

# NOTE(seunghun1ee): ProxySQL only expects root CA to be named ``root.crt`` because of
# https://opendev.org/openstack/kolla-ansible/src/branch/stable/2025.1/ansible/roles/loadbalancer/templates/proxysql/proxysql.json.j2#L36
# Make a duplicate of ``vault.crt`` named ``root.crt``
- name: Copy root CA for ProxySQL
ansible.builtin.copy:
src: "{{ kayobe_env_config_path }}/vault/OS-TLS-ROOT.pem"
dest: "{{ kayobe_env_config_path }}/kolla/certificates/ca/root.crt"
mode: "0600"
delegate_to: localhost
Loading