Skip to content

Commit

Permalink
fix: enterprise url as part of the deployment chart (#392)
Browse files Browse the repository at this point in the history
  • Loading branch information
CristhianF7 authored Nov 29, 2023
1 parent 046b124 commit 88ecf34
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
2 changes: 2 additions & 0 deletions charts/console/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,8 @@ spec:
env:
- name: API_URL
value: {{ .Values.apiURL | default (printf "http://%s-kubefirst-api.%s.svc.cluster.local" (.Release.Name ) (.Release.Namespace )) }}
- name: ENTERPRISE_API_URL
value: {{ .Values.enterpriseApiURL | default (printf "http://%s-kubefirst-api-ee.%s.svc.cluster.local" (.Release.Name ) (.Release.Namespace )) }}
- name: KUBEFIRST_VERSION
value: {{ .Values.global.kubefirstVersion }}
- name: IS_CLUSTER_ZERO
Expand Down
4 changes: 0 additions & 4 deletions charts/console/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -84,10 +84,6 @@ tolerations: []

affinity: {}

env:
ENTERPRISE_API_URL:
value: "http://kubefirst-kubefirst-api-ee.kubefirst.svc.cluster.local"

extraEnv: []
extraEnvSecrets: []

Expand Down

0 comments on commit 88ecf34

Please sign in to comment.