Skip to content
Merged
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
3 changes: 3 additions & 0 deletions ansible/deploy-openstack-config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,7 @@
if [[ -f {{ kayobe_environment_path }}/kolla/globals-tls-config.yml ]]; then
sed -i 's/^kolla_enable_tls_internal: true/# kolla_enable_tls_internal: true/g' {{ kayobe_environment_path }}/kolla.yml
fi
executable: /bin/bash
when: upgrade | bool
vars:
kayobe_environment_path: "{{ src_directory }}/kayobe-config/etc/kayobe/environments/{{ kayobe_config_environment }}"
Expand Down Expand Up @@ -133,6 +134,7 @@
if [[ -f {{ kayobe_environment_path }}/kolla/globals-tls-config.yml ]]; then
sed -i 's/# kolla_enable_tls_internal: true/kolla_enable_tls_internal: true/g' {{ kayobe_environment_path }}/kolla.yml
fi
executable: /bin/bash
when: upgrade | bool
vars:
kayobe_environment_path: "{{ src_directory }}/kayobe-config/etc/kayobe/environments/{{ kayobe_config_environment }}"
Expand Down Expand Up @@ -217,6 +219,7 @@
cmd: >
awk -F'=' '/defaultbranch/ {print $2}' {{ src_directory }}/{{ kayobe_config_name }}/.gitreview |
sed -E "s,(stable|unmaintained)/,,"
executable: /bin/bash
register: openstack_release
changed_when: false

Expand Down
2 changes: 2 additions & 0 deletions ansible/grow-control-host.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
- name: Check LVM status
shell:
cmd: vgdisplay | grep -q lvm2
executable: /bin/bash
changed_when: false
failed_when: false
check_mode: false
Expand All @@ -20,6 +21,7 @@
- name: Check if growpart is installed
shell:
cmd: type growpart
executable: /bin/bash
changed_when: false
failed_when: false
check_mode: false
Expand Down