Skip to content
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
2 changes: 1 addition & 1 deletion charts/redis-operator/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
apiVersion: v2
version: 0.16.2
version: 0.16.3
appVersion: "0.17.0"
description: Provides easy redis setup definitions for Kubernetes services, and deployment.
engine: gotpl
Expand Down
6 changes: 3 additions & 3 deletions charts/redis-operator/templates/operator-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -48,10 +48,10 @@ spec:
{{- end }}
env:
- name: ENABLE_WEBHOOKS
value: "{{ .Values.redisOperator.webhook | toString }}"
{{- if .WATCH_NAMESPACE }}
value: {{ .Values.redisOperator.webhook | quote }}
{{- if .Values.redisOperator.watchNamespace }}
- name: WATCH_NAMESPACE
value: {{ .WATCH_NAMESPACE }}
value: {{ .Values.redisOperator.watchNamespace | quote }}
{{- end }}
{{- range $env := .Values.redisOperator.env }}
- name: {{ $env.name }}
Expand Down
5 changes: 2 additions & 3 deletions charts/redis-operator/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,8 @@ redisOperator:

# Additional arguments for redis-operator container
extraArgs: []

# - -zap-log-level=error
watch_namespace: ""
# When not specified, the operator will watch all namespaces. It can be set to a specific namespace or multiple namespaces separated by commas.
watchNamespace: ""
env: []
webhook: false

Expand Down