Skip to content

Commit

Permalink
experiment: attmepting to inject addiontal params WITHOUT extending t…
Browse files Browse the repository at this point in the history
…emplating engine upstream
  • Loading branch information
cberg-aot committed Jan 24, 2025
1 parent 408d726 commit 38cb340
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions charts/onroutebc/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -207,9 +207,9 @@ vehicles:
- name: TIMESTAMP
value: "{{ now | toString }}"
- name: PR_NUM
value: {{ .Values.global.env.pr_num | quote }}
value: "{{ .Values.global.env.pr_num | toString }}"
- name: RELEASE_NUM
value: {{ .Values.global.env.release_num | quote }}
value: "{{ .Values.global.env.release_num | toString }}"
ports:
- name: vehicles-api
containerPort: 5000
Expand Down Expand Up @@ -348,9 +348,9 @@ dops:
- name: TIMESTAMP
value: "{{ now | toString }}"
- name: PR_NUM
value: {{ .Values.global.env.pr_num | quote }}
value: "{{ .Values.global.env.pr_num | toString }}"
- name: RELEASE_NUM
value: {{ .Values.global.env.release_num | quote }}
value: "{{ .Values.global.env.release_num | toString }}"
ports:
- name: dops-api
containerPort: 5001
Expand Down Expand Up @@ -484,9 +484,9 @@ scheduler:
- name: TIMESTAMP
value: "{{ now | toString }}"
- name: PR_NUM
value: {{ .Values.global.env.pr_num | quote }}
value: "{{ .Values.global.env.pr_num | toString }}"
- name: RELEASE_NUM
value: {{ .Values.global.env.release_num | quote }}
value: "{{ .Values.global.env.release_num | toString }}"
ports:
- name: scheduler
containerPort: 5050
Expand Down Expand Up @@ -593,9 +593,9 @@ policy:
- name: TIMESTAMP
value: "{{ now | toString }}"
- name: PR_NUM
value: {{ .Values.global.env.pr_num | quote }}
value: "{{ .Values.global.env.pr_num | toString }}"
- name: RELEASE_NUM
value: {{ .Values.global.env.release_num | quote }}
value: "{{ .Values.global.env.release_num | toString }}"
ports:
- name: policy-api
containerPort: 5002
Expand Down

0 comments on commit 38cb340

Please sign in to comment.