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 cd3208d commit 6903947Copy full SHA for 6903947
etc/kayobe/pulp.yml
@@ -4,7 +4,11 @@
4
5
# Base URL of the local Pulp service.
6
# Default uses the seed node's IP on the admin network.
7
-pulp_url: "{{ 'https' if pulp_enable_tls else 'http' }}://{{ admin_oc_net_name | net_ip(groups['seed'][0]) }}:80"
+pulp_url: "{{ 'https' if pulp_enable_tls | bool else 'http' }}://{{ admin_oc_net_name | net_ip(groups['seed'][0]) }}:{{ pulp_port }}"
8
+
9
+# Port on the seed node's interface on the admin network that the Pulp service
10
+# listens on.
11
+pulp_port: "{{ '443' if pulp_enable_tls | bool else '80' }}"
12
13
# Whether to enable TLS for Pulp.
14
pulp_enable_tls: false
0 commit comments