Skip to content

Commit 916aff4

Browse files
committed
Remove the quotes from one of the yaml file
1 parent 5a5e965 commit 916aff4

2 files changed

Lines changed: 16 additions & 15 deletions

File tree

tests/roles/barbican_adoption/tasks/main.yaml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,9 @@
44
{{ oc_header }}
55
CONTROLLER1_SSH="{{ controller1_ssh }}"
66
oc set data secret/osp-secret \
7-
"BarbicanSimpleCryptoKEK=$($CONTROLLER1_SSH "sudo python3 -c \"import configparser; c = configparser.ConfigParser(); \
8-
c.read('/var/lib/config-data/puppet-generated/barbican/etc/barbican/barbican.conf'); print(c['simple_crypto_plugin']['kek'])\"")"
7+
"BarbicanSimpleCryptoKEK=$($CONTROLLER1_SSH \
8+
"sudo python3 -c \"import configparser; c = configparser.ConfigParser(); \
9+
c.read('/var/lib/config-data/puppet-generated/barbican/etc/barbican/barbican.conf'); print(c['simple_crypto_plugin']['kek'])\"")"
910
1011
- name: deploy podified Barbican
1112
ansible.builtin.shell: |

tests/roles/dataplane_adoption/defaults/main.yaml

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -207,19 +207,19 @@ edpm_network_config_template_bgp: |
207207
neutron_physical_bridge_name: br-ctlplane
208208
neutron_public_interface_name: "{{ dataplane_public_iface | default('eth0') }}"
209209
edpm_sshd_allowed_ranges: >
210-
"{% if ipv6_enabled | default(false) %}
211-
{{
212-
[ctlplane_prefix_ipv6 | default('fd00:aaaa') + '::/64']
213-
if dataplane_os_net_config_set_route|default(true)|bool
214-
else ['::/0']
215-
}}
216-
{% else %}
217-
{{
218-
[ctlplane_prefix | default('192.168.122') + '.0/24']
219-
if dataplane_os_net_config_set_route|default(true)|bool
220-
else ['0.0.0.0/0']
221-
}}
222-
{% endif %}"
210+
{% if ipv6_enabled | default(false) %}
211+
{{
212+
[ctlplane_prefix_ipv6 | default('fd00:aaaa') + '::/64']
213+
if dataplane_os_net_config_set_route|default(true)|bool
214+
else ['::/0']
215+
}}
216+
{% else %}
217+
{{
218+
[ctlplane_prefix | default('192.168.122') + '.0/24']
219+
if dataplane_os_net_config_set_route|default(true)|bool
220+
else ['0.0.0.0/0']
221+
}}
222+
{% endif %}
223223
edpm_neutron_sriov_agent_enabled: true
224224
edpm_neutron_dhcp_agent_enabled: true
225225
nova_libvirt_backend: local

0 commit comments

Comments
 (0)