Skip to content

Commit 3eecd7f

Browse files
operator: Add shellcheck disables (#6460)
Signed-off-by: Michel Hollands <[email protected]>
1 parent 381f9d2 commit 3eecd7f

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

operator/quickstart.sh

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,15 @@
22

33
set -eou pipefail
44

5+
# shellcheck disable=SC1091
56
source .bingo/variables.env
67

78
setup() {
89
echo "-------------------------------------------"
910
echo "- Creating Kind cluster... -"
1011
echo "-------------------------------------------"
11-
$KIND create cluster --config=hack/kind_config.yaml
12+
# shellcheck disable=SC2154
13+
${KIND} create cluster --config=hack/kind_config.yaml
1214
}
1315

1416
deps() {
@@ -70,7 +72,8 @@ certificates() {
7072
}
7173

7274
check() {
73-
$LOGCLI --addr "http://localhost/token-refresher/api/logs/v1/test-oidc" labels
75+
# shellcheck disable=SC2154
76+
${LOGCLI} --addr "http://localhost/token-refresher/api/logs/v1/test-oidc" labels
7477
}
7578

7679
case ${1:-"*"} in

0 commit comments

Comments
 (0)