diff --git a/example-app-helm-chart/example-app/templates/deployment.yaml b/example-app-helm-chart/example-app/templates/deployment.yaml index cc81db0..7661b08 100644 --- a/example-app-helm-chart/example-app/templates/deployment.yaml +++ b/example-app-helm-chart/example-app/templates/deployment.yaml @@ -44,4 +44,15 @@ spec: {{- range $key, $value := .Values.app.env }} - name: {{ $key }} value: "{{ $value }}" - {{- end }} \ No newline at end of file + {{- end }} + + - name: QUARKUS_DATASOURCE_USERNAME + valueFrom: + secretKeyRef: + name: auth-api + key: QuarkusDB_Username + - name: QUARKUS_DATASOURCE_PASSWORD + valueFrom: + secretKeyRef: + name: auth-api + key: QuarkusDB_Password \ No newline at end of file