-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: Align settings to SaaS (#204)
* chore(ingress): Rename ingress.protocol to schema * chore(config-map): Add SOCIAL_AUTH_ALLOWED_REDIRECT_HOSTS based on host * feat(serviceaccount): Add service accounts to workers * chore(webhooks): Remove unused webhook variables * fix(dvcx): Fix formatting `true` -> `True` and `false` -> `False` * Fix default service account names * feat(ui): Add startup probe to ui pod * fix(service account): Add sa to backend * Bump Chart.yaml * Add dvcx-worker livenessProbe * Helm-Docs update --------- Co-authored-by: Marcin Jasion <[email protected]> Co-authored-by: Jesper Svendsen <[email protected]>
- Loading branch information
1 parent
ca43eb1
commit 9aaf1ef
Showing
14 changed files
with
121 additions
and
40 deletions.
There are no files selected for viewing
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 |
---|---|---|
|
@@ -2,8 +2,8 @@ apiVersion: v2 | |
name: studio | ||
description: A Helm chart for Kubernetes | ||
type: application | ||
version: 0.6.7 | ||
appVersion: "v2.29.0" | ||
version: 0.7.0 | ||
appVersion: "v2.40.0" | ||
maintainers: | ||
- name: iterative | ||
email: [email protected] | ||
|
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
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
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 |
---|---|---|
|
@@ -35,7 +35,6 @@ spec: | |
secretName: {{ .tlsSecretName }} | ||
{{- end }} | ||
{{- end }} | ||
|
||
rules: | ||
- http: | ||
paths: | ||
|
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,12 @@ | ||
{{- if ((.Values.studioBackend).serviceAccount).create -}} | ||
apiVersion: v1 | ||
kind: ServiceAccount | ||
metadata: | ||
name: {{ include "studio-backend.serviceAccountName" . }} | ||
labels: | ||
{{- include "studio-backend.labels" . | nindent 4 }} | ||
{{- with .Values.studioBackend.serviceAccount.annotations }} | ||
annotations: | ||
{{- toYaml . | nindent 4 }} | ||
{{- 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
{{- if ((.Values.studioDvcxWorker).serviceAccount).create -}} | ||
apiVersion: v1 | ||
kind: ServiceAccount | ||
metadata: | ||
name: {{ include "studio-dvcx-worker.serviceAccountName" . }} | ||
labels: | ||
{{- include "studio-dvcx-worker.labels" . | nindent 4 }} | ||
{{- with .Values.studioDvcxWorker.serviceAccount.annotations }} | ||
annotations: | ||
{{- toYaml . | nindent 4 }} | ||
{{- 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
{{- if ((.Values.studioWorker).serviceAccount).create -}} | ||
apiVersion: v1 | ||
kind: ServiceAccount | ||
metadata: | ||
name: {{ include "studio-worker.serviceAccountName" . }} | ||
labels: | ||
{{- include "studio-worker.labels" . | nindent 4 }} | ||
{{- with .Values.studioWorker.serviceAccount.annotations }} | ||
annotations: | ||
{{- toYaml . | nindent 4 }} | ||
{{- end }} | ||
{{- end }} |
Oops, something went wrong.