Skip to content

Commit 68decf9

Browse files
committed
fix template rendering
1 parent 6ecf960 commit 68decf9

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

cluster/manifests/role-sync-controller/cronjob.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
{{ if .Cluster.ConfigItems.role_sync_controller_enabled "true" }}
1+
{{ if eq .Cluster.ConfigItems.role_sync_controller_enabled "true" }}
22
apiVersion: batch/v1
33
kind: CronJob
44
metadata:

cluster/manifests/role-sync-controller/rbac.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
{{ if .Cluster.ConfigItems.role_sync_controller_enabled "true" }}
1+
{{ if eq .Cluster.ConfigItems.role_sync_controller_enabled "true" }}
22
apiVersion: rbac.authorization.k8s.io/v1
33
kind: ClusterRole
44
metadata:

cluster/manifests/role-sync-controller/service-account.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
{{ if .Cluster.ConfigItems.role_sync_controller_enabled "true" }}
1+
{{ if eq .Cluster.ConfigItems.role_sync_controller_enabled "true" }}
22
apiVersion: v1
33
kind: ServiceAccount
44
metadata:

0 commit comments

Comments
 (0)