diff --git a/charts/redis/Chart.yaml b/charts/redis/Chart.yaml index 000b0d5..3e3e117 100644 --- a/charts/redis/Chart.yaml +++ b/charts/redis/Chart.yaml @@ -1,6 +1,8 @@ +apiVersion: v2 name: redis -home: https://github.com/deisthree/redis -version: +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 diff --git a/charts/redis/templates/logger-redis-secret-creds.yaml b/charts/redis/templates/logger-redis-secret-creds.yaml index 4539853..215944e 100644 --- a/charts/redis/templates/logger-redis-secret-creds.yaml +++ b/charts/redis/templates/logger-redis-secret-creds.yaml @@ -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 }} diff --git a/charts/redis/values.yaml b/charts/redis/values.yaml index 91bccd5..8e5c71e 100644 --- a/charts/redis/values.yaml +++ b/charts/redis/values.yaml @@ -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"