We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0ab0acb commit cd3208dCopy full SHA for cd3208d
etc/kayobe/containers/pulp/pre.yml
@@ -21,7 +21,7 @@
21
become: true
22
23
- name: Configure TLS for local Pulp
24
- when: pulp_enable_tls
+ when: pulp_enable_tls | bool
25
26
block:
27
- name: Ensure /opt/kayobe/containers/pulp/certs exists
etc/kayobe/seed.yml
@@ -96,7 +96,7 @@ seed_pulp_container:
96
image: pulp/pulp
97
pre: "{{ kayobe_config_path }}/containers/pulp/pre.yml"
98
post: "{{ kayobe_config_path }}/containers/pulp/post.yml"
99
- tag: "{{ '3.16-https' if pulp_enable_tls else '3.16' }}"
+ tag: "{{ '3.16-https' if pulp_enable_tls | bool else '3.16' }}"
100
network_mode: host
101
volumes:
102
- /opt/kayobe/containers/pulp:/etc/pulp
0 commit comments