Skip to content

Commit

Permalink
Merge pull request #14 from dominodatalab/mdoan_irsa_1.7.2_chart
Browse files Browse the repository at this point in the history
Updating chart ver/irsa backend config
  • Loading branch information
ddl-marc-doan authored Mar 27, 2024
2 parents 78ac16f + 4be7e89 commit f3e4afd
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 5 deletions.
2 changes: 1 addition & 1 deletion irsa/helm/irsa/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
apiVersion: v1
name: irsa
version: 1.7.1
version: 1.7.2
description: irsa
home: https://github.com/cerebrotech/IRSA_DOMINO
keywords:
Expand Down
14 changes: 10 additions & 4 deletions irsa/helm/irsa/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -46,18 +46,24 @@ spec:
value: {{ .Values.env.oidc_provider_audience }}
- name: FLASK_WORKERS
value: "{{ default 1 .Values.env.irsa_workers }}"
{{- if (.Values.env.proxy.https_proxy) }}
- name: AWS_DEFAULT_REGION
value: {{.Values.env.aws_default_region | default .Values.env.aws_region }}
- name: AWS_REGION
value: {{ required "Please set the AWS region that Domino is deployed to in your values file" .Values.env.aws_region}}
- name: AWS_STS_REGIONAL_ENDPOINTS
value: {{ .Values.env.aws_sts_regional_endpoints }}
{{ if .Values.env.proxy.https_proxy -}}
- name: HTTPS_PROXY
value: {{ .Values.env.proxy.https_proxy }}
{{ end -}}
{{- if .Values.env.proxy.http_proxy -}}
- name: HTTP_PROXY
value: {{ .Values.env.proxy.http_proxy }}
{{ end }}
{{ end -}}
{{- if (coalesce .Values.env.proxy.https_proxy .Values.env.proxy.http_proxy) -}}
- name: NO_PROXY
value: {{ if .Values.env.proxy.no_proxy }}".{{ .Values.env.namespace.platform }},{{ .Values.env.proxy.no_proxy }}"{{ else }}".{{ .Values.env.namespace.platform }}"{{end -}}
{{ end }}
value: {{ if .Values.env.proxy.no_proxy }}".{{ .Values.env.namespace.platform }},{{ .Values.env.proxy.no_proxy }}"{{ else }}".{{ .Values.env.namespace.platform }}"{{ end }}
{{ end -}}
ports:
- containerPort: 6000
resources:
Expand Down

0 comments on commit f3e4afd

Please sign in to comment.