Skip to content
Draft
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
8 changes: 5 additions & 3 deletions charts/redis/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
apiVersion: v2
name: redis
home: https://github.com/deisthree/redis
version: <Will be populated by the ci before publishing the chart>
home: https://github.com/teamhephy/redis
version: 2.4.5
description: A Redis database for use inside a Kubernetes cluster.
maintainers:
- email: team@teamhephy.com
- name: Team Hephy
email: team@teamhephy.com
10 changes: 5 additions & 5 deletions charts/redis/templates/logger-redis-secret-creds.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ metadata:
heritage: deis
annotations:
"helm.sh/hook": pre-install
data:
{{ if eq .Values.global.logger_redis_location "on-cluster"}}
password: {{ randAlphaNum 32 | b64enc }}
{{ else if eq .Values.global.logger_redis_location "off-cluster"}}
addrs: {{ .Values.addrs | b64enc }}
data: {{ if eq .Values.global.logger_redis_location "on-cluster"}}
password: {{ randAlphaNum 32 | b64enc }}{{ else if eq .Values.global.logger_redis_location "off-cluster"}}
db: {{ .Values.db | b64enc }}
password: {{ .Values.password | b64enc }}
host: {{ .Values.host | b64enc }}
port: {{ .Values.port | b64enc }}{{ end }}
4 changes: 2 additions & 2 deletions charts/redis/values.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
org: "hephy"
pull_policy: "Always"
docker_tag: canary
pull_policy: "IfNotPresent"
docker_tag: v2.4.2
# limits_cpu: "100m"
# limits_memory: "50Mi"

Expand Down