Skip to content

Commit

Permalink
✨ Support oauth2 in the helm chart
Browse files Browse the repository at this point in the history
  • Loading branch information
fungiboletus committed Oct 27, 2023
1 parent 1957293 commit c22c37e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
4 changes: 3 additions & 1 deletion charts/simpipe/templates/deployment-controller.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,9 @@ spec:
- name: PROMETHEUS_SERVER_URL
value: {{ .Values.controller.prometheus.serverUrl | quote }}
- name: NODE_ENV
value: development
value: {{ .Values.controller.nodeEnv | quote }}
- name: OAUTH2_ISSUER_ENDPOINT
value: {{ .Values.controller.oauth2.issuerEndpoint | quote }}
ports:
- name: http
containerPort: {{ .Values.controller.service.port }}
Expand Down
3 changes: 3 additions & 0 deletions charts/simpipe/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,9 @@ controller:
endpoint: http://simpipe-argo-workflows-server:2746/
prometheus:
serverUrl: http://prometheus-operated:9090
nodeEnv: development
oauth2:
issuerEndpoint: ""

serviceAccount:
# Annotations to add to the service account
Expand Down

0 comments on commit c22c37e

Please sign in to comment.