Skip to content

Commit 6903947

Browse files
committed
Expose pulp_port variable
1 parent cd3208d commit 6903947

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

etc/kayobe/pulp.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,11 @@
44

55
# Base URL of the local Pulp service.
66
# 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"
7+
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' }}"
812

913
# Whether to enable TLS for Pulp.
1014
pulp_enable_tls: false

0 commit comments

Comments
 (0)