Skip to content

Commit

Permalink
Fix innocuous but confusing typo in db management pod task (#1859)
Browse files Browse the repository at this point in the history
  • Loading branch information
rooftopcellist authored May 16, 2024
1 parent cf61205 commit 64e4279
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions roles/backup/tasks/init.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,10 +77,10 @@
set_fact:
_postgres_image: "{{ _custom_postgres_image | default(lookup('env', 'RELATED_IMAGE_AWX_POSTGRES')) | default(_default_postgres_image, true) }}"

- name: Create management pod from templated deployment config
- name: Create management pod from the template
k8s:
name: "{{ ansible_operator_meta.name }}-db-management"
kind: Deployment
kind: Pod
state: present
definition: "{{ lookup('template', 'management-pod.yml.j2') }}"
wait: true
Expand Down
4 changes: 2 additions & 2 deletions roles/restore/tasks/init.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,10 +86,10 @@
set_fact:
_postgres_image: "{{ _custom_postgres_image | default(lookup('env', 'RELATED_IMAGE_AWX_POSTGRES')) | default(_default_postgres_image, true) }}"

- name: Create management pod from templated deployment config
- name: Create management pod from the template
k8s:
name: "{{ ansible_operator_meta.name }}-db-management"
kind: Deployment
kind: Pod
state: present
definition: "{{ lookup('template', 'management-pod.yml.j2') }}"
wait: true
Expand Down

0 comments on commit 64e4279

Please sign in to comment.