Skip to content

Commit

Permalink
Merge pull request #521 from konstructio/KRA-40
Browse files Browse the repository at this point in the history
fix(chart): default to <fullName>.<releaseNamespace> for API_URL
  • Loading branch information
muse-sisay authored Nov 28, 2024
2 parents 2d2b8db + b21d5af commit 96efca3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion charts/console/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ spec:
- name: {{ .Chart.Name }}
env:
- name: API_URL
value: {{ .Values.apiURL | default (printf "http://%s-kubefirst-api.%s.svc.cluster.local" (.Release.Name ) (.Release.Namespace )) }}
value: {{ .Values.apiURL | default (printf "http://%s.%s.svc.cluster.local" ( include "console.fullname" . ) (.Release.Namespace )) }}
- name: KUBEFIRST_VERSION
value: {{ .Values.global.kubefirstVersion }}
- name: IS_CLUSTER_ZERO
Expand Down

0 comments on commit 96efca3

Please sign in to comment.