Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

use stable redis helm chart #521

Merged
merged 1 commit into from
Apr 23, 2019
Merged
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
Binary file added helm-charts/seldon-core/charts/redis-6.4.5.tgz
Binary file not shown.
4 changes: 4 additions & 0 deletions helm-charts/seldon-core/requirements.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,7 @@ dependencies:
version: ^2.1.0
repository: https://kubernetes-charts.storage.googleapis.com/
condition: ambassador.enabled
- name: redis
version: ^6.4.5
repository: https://kubernetes-charts.storage.googleapis.com/
condition: redis.enabled
2 changes: 1 addition & 1 deletion helm-charts/seldon-core/templates/apife-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ spec:
- name: SELDON_ENGINE_KAFKA_SERVER
value: kafka:9092
- name: SELDON_CLUSTER_MANAGER_REDIS_HOST
value: {{ .Release.Name }}-redis
value: {{ .Release.Name }}-redis-master
- name: ENGINE_SERVER_GRPC_PORT
value: '{{ .Values.engine.grpc.port }}'
- name: ENGINE_SERVER_PORT
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ spec:
- name: SPRING_OPTS
value: {{ .Values.cluster_manager.spring_opts }}
- name: SELDON_CLUSTER_MANAGER_REDIS_HOST
value: {{ .Release.Name }}-redis
value: {{ .Release.Name }}-redis-master
- name: ENGINE_CONTAINER_IMAGE_AND_VERSION
value: {{ .Values.engine.image.name }}
- name: ENGINE_CONTAINER_IMAGE_PULL_POLICY
Expand Down
49 changes: 0 additions & 49 deletions helm-charts/seldon-core/templates/redis-deployment.yaml

This file was deleted.

5 changes: 3 additions & 2 deletions helm-charts/seldon-core/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,7 @@ rbac:
name: seldon
redis:
enabled: true
image:
name: redis:5.0.3
usePassword: false
cluster:
enabled: false
single_namespace: true
3 changes: 1 addition & 2 deletions helm-charts/seldon-core/values.yaml.example
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,7 @@ zookeeper:
image:
tag: "1.0"
redis:
image:
tag: "4.0.1"
enabled: true

# Set the type of service for apife
#apife_service_type: LoadBalancer
Expand Down