Skip to content

Commit

Permalink
Add Seldon Deploy v2.2.0 Helm Chart (#62)
Browse files Browse the repository at this point in the history
  • Loading branch information
RafalSkolasinski authored Mar 8, 2024
1 parent 9adfc48 commit 35341f2
Show file tree
Hide file tree
Showing 5 changed files with 280 additions and 252 deletions.
4 changes: 2 additions & 2 deletions helm-charts/seldon-deploy/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
apiVersion: v2
appVersion: "2.2.0-rc7"
appVersion: "2.2.0"
description: A Helm chart for Kubernetes
name: seldon-deploy
version: 2.2.0-rc7
version: 2.2.0
12 changes: 6 additions & 6 deletions helm-charts/seldon-deploy/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,8 @@ spec:
{{- end}}
- name: "ENABLE_READ_NAMESPACES"
value: "{{ .Values.rbac.readNamespaces }}"
- name: "ENABLED_NAMESPACES"
value: "{{ join "," .Values.rbac.namespaces }}"
- name: "CORE_V1_CRD_AVAILABLE"
value: "{{ .Values.seldon.enabled }}"
- name: "CORE_V2_CRD_AVAILABLE"
Expand Down Expand Up @@ -85,6 +87,10 @@ spec:
value: "{{ .Values.workflow.securityContext.runAsUser }}"
- name: "WORKFLOW_SECURITY_CONTEXT_FS_GROUP"
value: "{{ .Values.workflow.securityContext.fsGroup }}"
- name: "CLIENTGO_RATELIMITER_QPS"
value: "{{ .Values.clientGo.rateLimiter.qps }}"
- name: "CLIENTGO_RATELIMITER_BURST"
value: "{{ .Values.clientGo.rateLimiter.burst }}"
{{- if .Values.gitops.fileFormat }}
- name: "GITOPS_FORMAT"
value: "{{ .Values.gitops.fileFormat }}"
Expand Down Expand Up @@ -354,8 +360,6 @@ spec:
resources:
{{ toYaml .Values.resources | indent 12 }}
volumeMounts:
- name: custom-theme
mountPath: "/seldon-deploy/custom-theme"
{{- if and .Values.gitops.git.secret .Values.gitops.argocd.enabled }}
- name: ssh-known-hosts
mountPath: "/etc/ssh"
Expand All @@ -379,10 +383,6 @@ spec:
readOnly: true
{{- end}}
volumes:
- name: custom-theme
secret:
secretName: seldon-deploy-custom-theme
optional: true
{{- if and .Values.gitops.git.secret .Values.gitops.argocd.enabled }}
- name: ssh-known-hosts
secret:
Expand Down
Loading

0 comments on commit 35341f2

Please sign in to comment.