Skip to content

Commit 84d8dd8

Browse files
authored
Fixing the subdomain_base_suffix variable (#100)
The subdomain_base_suffix missing '.' dot between engagement_region and ocp_base_url
1 parent f3710d2 commit 84d8dd8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

inventory-generation/notifications/main.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@
5555

5656
vars:
5757
ocp_subdomain: "{{ hosting_environments[0].ocp_sub_domain | lower }}"
58-
subdomain_base_suffix: "{{ engagement_region | default('dev') + cloud_provider_index | default('-1') + ocp_base_url }}"
58+
subdomain_base_suffix: "{{ engagement_region | default('dev') + cloud_provider_index | default('-1') + '.' + ocp_base_url }}"
5959
when:
6060
- notifications_dir.stat.exists is false
6161
- start_date is defined

0 commit comments

Comments
 (0)