Skip to content

Commit

Permalink
fix: default function cause value always be true (#7547)
Browse files Browse the repository at this point in the history
Signed-off-by: Liang Deng <283304489@qq.com>
  • Loading branch information
YTGhost authored Jun 17, 2024
1 parent 0ca2de5 commit 6eb73a0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions deploy/helm/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -69,8 +69,8 @@ spec:
- "--zap-encoder={{ . }}"
{{- end }}
- "--extensions={{- default "true" ( include "kubeblocks.addonControllerEnabled" . ) }}"
- "--apps={{- default "true" .Values.controllers.apps.enabled }}"
- "--workloads={{- default "true" .Values.controllers.workloads.enabled }}"
- "--apps={{ ne .Values.controllers.apps.enabled false }}"
- "--workloads={{ ne .Values.controllers.workloads.enabled false }}"
- "--experimental={{- default "false" .Values.controllers.experimental.enabled }}"
{{- with .Values.managedNamespaces }}
- "--managed-namespaces={{ . }}"
Expand Down

0 comments on commit 6eb73a0

Please sign in to comment.