Skip to content

Commit

Permalink
Add Seldon Deploy v2.2.0-rc3 Helm Chart (#51)
Browse files Browse the repository at this point in the history
  • Loading branch information
RafalSkolasinski authored Oct 6, 2023
1 parent aed3f5b commit c571a09
Show file tree
Hide file tree
Showing 5 changed files with 60 additions and 5 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-rc2"
appVersion: "2.2.0-rc3"
description: A Helm chart for Kubernetes
name: seldon-deploy
version: 2.2.0-rc2
version: 2.2.0-rc3
58 changes: 55 additions & 3 deletions helm-charts/seldon-deploy/templates/role-seldon-deploy-role.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,24 @@ metadata:
name: seldon-deploy-role
namespace: '{{ .Release.Namespace }}'
rules:
- apiGroups:
- argoproj.io
resources:
- workflows
verbs:
- get
- list
- watch
- create
- delete
- apiGroups:
- 'apiextensions.k8s.io'
resources:
- customresourcedefinitions
verbs:
- get
- list
- watch
- apiGroups:
- ''
resources:
Expand Down Expand Up @@ -48,6 +66,8 @@ rules:
- horizontalpodautoscalers/status
verbs:
- get
- patch
- update
- apiGroups:
- machinelearning.seldon.io
resources:
Expand Down Expand Up @@ -89,7 +109,7 @@ rules:
- list
- patch
- update
- watch
- watch
- apiGroups:
- mlops.seldon.io
resources:
Expand Down Expand Up @@ -138,8 +158,18 @@ rules:
- virtualservices/status
verbs:
- get
- apiGroups:
- security.istio.io
resources:
- authorizationpolicies
verbs:
- create
- delete
- get
- list
- patch
- update
- watch
- apiGroups:
- v1
resources:
Expand Down Expand Up @@ -177,11 +207,33 @@ rules:
- update
- watch
- apiGroups:
- 'apiextensions.k8s.io'
- serving.knative.dev
resources:
- customresourcedefinitions
- services
verbs:
- create
- delete
- get
- list
- patch
- update
- watch
- apiGroups:
- eventing.knative.dev
resources:
- triggers
verbs:
- create
- delete
- get
- list
- patch
- update
- watch
- apiGroups:
- eventing.knative.dev
resources:
- brokers
verbs:
- get
{{- end }}
1 change: 1 addition & 0 deletions helm-charts/seldon-deploy/templates/ui-deployment.yaml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# Note: not currently used, may be useful later.
{{- if .Values.ui -}}
apiVersion: apps/v1
kind: Deployment
Expand Down
1 change: 1 addition & 0 deletions helm-charts/seldon-deploy/templates/ui-service.yaml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# Note: not currently used, may be useful later.
{{- if .Values.ui -}}
apiVersion: v1
kind: Service
Expand Down
1 change: 1 addition & 0 deletions helm-charts/seldon-deploy/templates/virtualservice.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ spec:
prefix: {{ .Values.virtualService.prefix }}
route:
- destination:
# Note: not currently used, may be useful later.
{{- if .Values.ui }}
host: {{ include "seldon-deploy.fullname" . }}-ui
{{ else }}
Expand Down

0 comments on commit c571a09

Please sign in to comment.