23 lines
578 B
Text
23 lines
578 B
Text
![]() |
#!/usr/bin/env bats
|
||
|
|
||
|
load _helpers
|
||
|
|
||
|
@test "injector/ClusterRole: enabled by default" {
|
||
|
cd `chart_dir`
|
||
|
local actual=$(helm template \
|
||
|
-x templates/injector-clusterrole.yaml \
|
||
|
. | tee /dev/stderr |
|
||
|
yq 'length > 0' | tee /dev/stderr)
|
||
|
[ "${actual}" = "true" ]
|
||
|
}
|
||
|
|
||
|
@test "injector/ClusterRole: disable with global.enabled" {
|
||
|
cd `chart_dir`
|
||
|
local actual=$(helm template \
|
||
|
-x templates/injector-clusterrole.yaml \
|
||
|
--set 'global.enabled=false' \
|
||
|
. | tee /dev/stderr |
|
||
|
yq 'length > 0' | tee /dev/stderr)
|
||
|
[ "${actual}" = "false" ]
|
||
|
}
|