-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3 from RafalSkolasinski/scv2-0.4.0-rc2
add Seldon Core V2 0.4.0-rc2 helm charts
- Loading branch information
Showing
13 changed files
with
19,120 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,9 @@ | ||
apiVersion: v1 | ||
appVersion: 0.4.0-rc2 | ||
description: Seldon Core V2 CRDs | ||
keywords: | ||
- kubernetes | ||
- machine-learning | ||
- mlops | ||
name: seldon-core-v2-crds | ||
version: 0.4.0-rc2 |
16,976 changes: 16,976 additions & 0 deletions
16,976
helm-charts/seldon-core-v2-crds/templates/seldon-v2-crds.yaml
Large diffs are not rendered by default.
Oops, something went wrong.
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,9 @@ | ||
apiVersion: v1 | ||
appVersion: 0.4.0-rc2 | ||
description: Seldon Core V2 Servers | ||
keywords: | ||
- kubernetes | ||
- machine-learning | ||
- mlops | ||
name: seldon-core-v2-servers | ||
version: 0.4.0-rc2 |
17 changes: 17 additions & 0 deletions
17
helm-charts/seldon-core-v2-servers/templates/seldon-v2-servers.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,17 @@ | ||
apiVersion: mlops.seldon.io/v1alpha1 | ||
kind: Server | ||
metadata: | ||
name: mlserver | ||
namespace: '{{ .Release.Namespace }}' | ||
spec: | ||
replicas: 1 | ||
serverConfig: mlserver | ||
--- | ||
apiVersion: mlops.seldon.io/v1alpha1 | ||
kind: Server | ||
metadata: | ||
name: triton | ||
namespace: '{{ .Release.Namespace }}' | ||
spec: | ||
replicas: 1 | ||
serverConfig: triton |
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 @@ | ||
values.yaml.template |
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,9 @@ | ||
apiVersion: v1 | ||
appVersion: 0.4.0-rc2 | ||
description: Seldon Core V2 Setup | ||
keywords: | ||
- kubernetes | ||
- machine-learning | ||
- mlops | ||
name: seldon-core-v2-setup | ||
version: 0.4.0-rc2 |
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,8 @@ | ||
apiVersion: v1 | ||
kind: ConfigMap | ||
metadata: | ||
name: seldon-agent | ||
data: | ||
agent.yaml: |- | ||
rclone: | ||
config_secrets: ["seldon-rclone-gs-public"] |
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,21 @@ | ||
apiVersion: v1 | ||
kind: ConfigMap | ||
metadata: | ||
name: seldon-kafka | ||
data: | ||
kafka.json: |- | ||
{ | ||
"bootstrap.servers": "{{ .Values.kafka.bootstrap }}", | ||
"debug": "{{ .Values.kafka.debug }}", | ||
"consumer":{ | ||
"session.timeout.ms": {{ .Values.kafka.consumer.sessionTimeoutMs }}, | ||
"auto.offset.reset": "{{ .Values.kafka.consumer.autoOffsetReset }}", | ||
"topic.metadata.propagation.max.ms": "{{ .Values.kafka.consumer.topicMetadataPropagationMaxMs }}" | ||
}, | ||
"producer":{ | ||
"linger.ms": {{ .Values.kafka.producer.lingerMs }}, | ||
"message.max.bytes": {{ int .Values.kafka.producer.messageMaxBytes }} | ||
}, | ||
"streams":{ | ||
} | ||
} |
11 changes: 11 additions & 0 deletions
11
helm-charts/seldon-core-v2-setup/templates/rclone-gs-public.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,11 @@ | ||
apiVersion: v1 | ||
kind: Secret | ||
metadata: | ||
name: seldon-rclone-gs-public | ||
type: Opaque | ||
stringData: | ||
gs: | | ||
type: "google cloud storage" | ||
name: gs | ||
parameters: | ||
anonymous: true |
Oops, something went wrong.