File tree Expand file tree Collapse file tree 3 files changed +8
-2
lines changed
test/chart/conditional-sidecar/templates Expand file tree Collapse file tree 3 files changed +8
-2
lines changed Original file line number Diff line number Diff line change
1
+ changelog :
2
+ - type : FIX
3
+ issueLink : https://github.com/solo-io/gloo-mesh-enterprise/issues/10521
4
+ description : >
5
+ Fixes whitespace issue in operator rbac template.
6
+ resolvesIssue : false
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ Expressions evaluating SKv2 Config use [[ "[[" ]] and [[ "]]" ]]
11
11
12
12
{{- $[[ $operatorVar ]] := [[ (opVar $operator)]] }}
13
13
14
- [[- $operatorEnabledCondition := printf "\n{{- if $%s.enabled - }}\n" $operatorVar -]]
14
+ [[- $operatorEnabledCondition := printf "\n{{- if $%s.enabled }}\n" $operatorVar -]]
15
15
[[- if (gt (len $operator.CustomEnableCondition) 0) -]]
16
16
[[- $operatorEnabledCondition = printf "\n{{- if %s }}\n" $operator.CustomEnableCondition -]]
17
17
[[- end -]]
Original file line number Diff line number Diff line change 4
4
# Rbac manifests for gloo-mgmt-server
5
5
6
6
{{- $glooMgmtServer := $.Values.glooMgmtServer }}
7
- {{- if $glooMgmtServer.enabled - }}
7
+ {{- if $glooMgmtServer.enabled }}
8
8
9
9
---
10
10
You can’t perform that action at this time.
0 commit comments