Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions charts/mlflow-tracking-server/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,9 @@ spec:
{{ include "common.envvar.shared.configs" . | indent 12 }}
{{ include "common.envvar.shared.secrets" . | indent 12 }}
{{ include "common.resources" . | nindent 10 }}
{{- with .Values.extraContainers }}
{{- toYaml . | nindent 8 }}
{{- end }}
{{- if .Values.persistence.enabled }}
volumes:
- name: mlflow-storage
Expand Down
11 changes: 11 additions & 0 deletions charts/mlflow-tracking-server/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -85,3 +85,14 @@ config: {}
# data:
# key: value
# key2: value2

# Extra containers to run as sidecars
extraContainers: []
# Example:
# - name: sidecar-container
# image: nginx:latest
# ports:
# - containerPort: 8081
# volumeMounts:
# - name: shared-data
# mountPath: /data
3 changes: 3 additions & 0 deletions charts/oidc-provider-mock/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,9 @@ spec:
- name: static-files
mountPath: {{ .Values.static.authorization_form }}
subPath: authorization_form.html
{{- with .Values.extraContainers }}
{{- toYaml . | nindent 8 }}
{{- end }}
volumes:
- name: static-files
configMap:
Expand Down
11 changes: 11 additions & 0 deletions charts/oidc-provider-mock/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -47,3 +47,14 @@ config:
# name: Frank
# groups:
# - mlflow-admin

# Extra containers to run as sidecars
extraContainers: []
# Example:
# - name: sidecar-container
# image: nginx:latest
# ports:
# - containerPort: 8081
# volumeMounts:
# - name: shared-data
# mountPath: /data