fix(atmosphere): typo in atmosphere_issuer_config
diff --git a/molecule/default/group_vars/all/molecule.yml b/molecule/default/group_vars/all/molecule.yml
index f307e27..cb7ce00 100644
--- a/molecule/default/group_vars/all/molecule.yml
+++ b/molecule/default/group_vars/all/molecule.yml
@@ -1,6 +1,6 @@
atmosphere_image: "{{ lookup('file', lookup('env', 'MOLECULE_EPHEMERAL_DIRECTORY') + '/image') }}"
-atomsphere_issuer_config:
+atmosphere_issuer_config:
type: self-signed
openstack_helm_glance_images:
diff --git a/roles/certificates/tasks/main.yml b/roles/certificates/tasks/main.yml
index 334d7e7..1f6d636 100644
--- a/roles/certificates/tasks/main.yml
+++ b/roles/certificates/tasks/main.yml
@@ -24,7 +24,7 @@
wait_sleep: 1
wait_timeout: 300
register: _openstack_helm_root_secret
- when: atomsphere_issuer_config.type == "self-signed"
+ when: atmosphere_issuer_config.type == "self-signed"
- name: Wait till the secret is created
kubernetes.core.k8s_info:
@@ -36,7 +36,7 @@
wait_sleep: 1
wait_timeout: 300
register: _openstack_helm_root_secret
- when: atomsphere_issuer_config.type == "ca"
+ when: atmosphere_issuer_config.type == "ca"
- name: Copy CA certificate on host
ansible.builtin.copy:
@@ -49,5 +49,5 @@
cmd: update-ca-certificates
changed_when: false
when:
- - atomsphere_issuer_config.type is defined
- - atomsphere_issuer_config.type in ("self-signed", "ca")
+ - atmosphere_issuer_config.type is defined
+ - atmosphere_issuer_config.type in ("self-signed", "ca")