Skip to content

Commit

Permalink
fix: fix gcs-log creds secret name, add externaldb configuration for …
Browse files Browse the repository at this point in the history
…temporal, fix webapp ingress (#15510)
  • Loading branch information
xpuska513 committed Aug 10, 2022
1 parent c782303 commit 853b88a
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
5 changes: 4 additions & 1 deletion charts/airbyte-temporal/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,10 @@ spec:
name: {{ .Values.global.database.secretName | default (printf "%s-postgresql" .Release.Name ) }}
key: {{ .Values.global.database.secretValue | default "postgresql-password" }}
- name: POSTGRES_SEEDS
value: {{ .Release.Name }}-postgresql
valueFrom:
configMapKeyRef:
name: {{ .Values.global.configMapName | default (printf "%s-airbyte-env" .Release.Name) }}
key: DATABASE_HOST
- name: DYNAMIC_CONFIG_FILE_PATH
value: "config/dynamicconfig/development.yaml"
{{- end }}
Expand Down
4 changes: 2 additions & 2 deletions charts/airbyte-webapp/templates/ingress.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -54,11 +54,11 @@ spec:
backend:
{{- if semverCompare ">=1.19-0" $.Capabilities.KubeVersion.GitVersion }}
service:
name: {{ $fullName }}-webapp
name: {{ $fullName }}
port:
number: {{ $svcPort }}
{{- else }}
serviceName: {{ $fullName }}-webapp
serviceName: {{ $fullName }}
servicePort: {{ $svcPort }}
{{- end }}
{{- end }}
Expand Down
2 changes: 1 addition & 1 deletion charts/airbyte/templates/gcs-log-creds-secret.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
apiVersion: v1
kind: Secret
metadata:
name: {{ include "common.names.fullname" . }}-gcs-log-creds
name: {{ .Release.Name }}-gcs-log-creds
type: Opaque
data:
gcp.json: "{{ .Values.global.logs.gcs.credentialsJson }}"
Expand Down

0 comments on commit 853b88a

Please sign in to comment.