Skip to content

Commit 8025910

Browse files
committed
fix(k8s): quote dist-git URL
URL contains colon for the protocol, quote it to prevent YAML parsing issues. Signed-off-by: Matej Focko <[email protected]>
1 parent dd2d7bb commit 8025910

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

openshift/packit-worker.yml.j2

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ spec:
9494
- name: DEPLOYMENT
9595
value: {{ deployment }}
9696
- name: DISTGIT_URL
97-
value: {{ distgit_url }}
97+
value: "{{ distgit_url }}"
9898
- name: DISTGIT_NAMESPACE
9999
value: {{ distgit_namespace }}
100100
{% if sourcegit_namespace %}

0 commit comments

Comments
 (0)