-
Notifications
You must be signed in to change notification settings - Fork 4.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* fix: revert extraEnv delition in values.yaml for bootloader * add newline * feat: Update bootloader,webapp,server. Add way of defining secrets, update extraEnv usage. Add PodDistributionBudget into all deployments * feat: Update oss charts, make them able to be ingested in cloud deployment * fix: include #15685 changes * fix: Update Chart.yaml. fix minio deployment conditional operator * fix: fix EOF in worker, update worker HPA conditional * fix: remove cloud related stuff * fix: add conditional for hooks * fix: remove hooks for worker * fix: update nit, remove gsm * fix: fix nits * fix: remove gsm and hpa from values.yaml
- Loading branch information
Showing
17 changed files
with
214 additions
and
34 deletions.
There are no files selected for viewing
23 changes: 23 additions & 0 deletions
23
charts/airbyte-bootloader/templates/bootloader-secrets.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
# Create secrets only for the local deployment | ||
{{- if .Values.secrets }} | ||
apiVersion: v1 | ||
kind: Secret | ||
metadata: | ||
name: bootloader-secrets | ||
labels: | ||
app.kubernetes.io/name: {{ include "airbyte.name" . }} | ||
app.kubernetes.io/instance: {{ .Release.Name }} | ||
helm.sh/chart: {{ include "airbyte.chart" . }} | ||
app.kubernetes.io/version: {{ .Chart.AppVersion | quote }} | ||
app.kubernetes.io/managed-by: {{ .Release.Service }} | ||
app.airbyte.io/fullname: {{ include "airbyte.fullname" . }} | ||
annotations: | ||
helm.sh/hook: pre-install,pre-upgrade | ||
helm.sh/hook-weight: "-1" | ||
|
||
type: Opaque | ||
data: | ||
{{- range $k, $v := mergeOverwrite .Values.secrets .Values.global.secrets }} | ||
{{ $k }}: {{ if $v }}{{ $v | b64enc }} {{else}}""{{end}} | ||
{{- end }} | ||
{{- end }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
# Create secrets only for the local deployment | ||
{{- if .Values.secrets }} | ||
apiVersion: v1 | ||
kind: Secret | ||
metadata: | ||
name: server-secrets | ||
labels: | ||
app.kubernetes.io/name: {{ include "airbyte.name" . }} | ||
app.kubernetes.io/instance: {{ .Release.Name }} | ||
helm.sh/chart: {{ include "airbyte.chart" . }} | ||
app.kubernetes.io/version: {{ .Chart.AppVersion | quote }} | ||
app.kubernetes.io/managed-by: {{ .Release.Service }} | ||
app.airbyte.io/fullname: {{ include "airbyte.fullname" . }} | ||
annotations: | ||
type: Opaque | ||
data: | ||
{{- range $k, $v := mergeOverwrite .Values.secrets .Values.global.secrets }} | ||
{{ $k }}: {{ if $v }}{{ $v | b64enc }} {{else}}""{{end}} | ||
{{- end }} | ||
{{- end }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
# Create secrets only for the local deployment | ||
{{- if .Values.secrets }} | ||
apiVersion: v1 | ||
kind: Secret | ||
metadata: | ||
name: webapp-secrets | ||
labels: | ||
app.kubernetes.io/name: {{ include "airbyte.name" . }} | ||
app.kubernetes.io/instance: {{ .Release.Name }} | ||
helm.sh/chart: {{ include "airbyte.chart" . }} | ||
app.kubernetes.io/version: {{ .Chart.AppVersion | quote }} | ||
app.kubernetes.io/managed-by: {{ .Release.Service }} | ||
app.airbyte.io/fullname: {{ include "airbyte.fullname" . }} | ||
annotations: | ||
type: Opaque | ||
data: | ||
{{- range $k, $v := mergeOverwrite .Values.secrets .Values.global.secrets }} | ||
{{ $k }}: {{ if $v }}{{ $v | b64enc }} {{else}}""{{end}} | ||
{{- end }} | ||
{{- end }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.