Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CLOUD-850 - Update kuttl version to 0.16.0 #799

Merged
merged 2 commits into from
Jun 6, 2024

Merge branch 'main' into CLOUD-850-kuttl

1b5ad49
Select commit
Loading
Failed to load commit list.
Sign in for the full log view
Merged

CLOUD-850 - Update kuttl version to 0.16.0 #799

Merge branch 'main' into CLOUD-850-kuttl
1b5ad49
Select commit
Loading
Failed to load commit list.
GitHub Actions / shellcheck succeeded Jun 6, 2024 in 1s

reviewdog [shellcheck] report

reported by reviewdog 🐶

Findings (0)
Filtered Findings (33)

build/postgres-operator/install-extensions.sh|8 col 10| Double quote to prevent globbing and word splitting.
build/postgres-operator/install-extensions.sh|8 col 31| Double quote to prevent globbing and word splitting.
build/postgres-operator/install-extensions.sh|15 col 9| Double quote to prevent globbing and word splitting.
build/postgres-operator/install-extensions.sh|16 col 11| Double quote to prevent globbing and word splitting.
build/postgres-operator/install-extensions.sh|17 col 11| Double quote to prevent globbing and word splitting.
build/postgres-operator/install-extensions.sh|18 col 19| Double quote to prevent globbing and word splitting.
build/postgres-operator/install-extensions.sh|19 col 8| Double quote to prevent globbing and word splitting.
build/postgres-operator/install-extensions.sh|23 col 18| Quote expansions in this for loop glob to prevent wordsplitting, e.g. "$dir"/*.txt .
build/postgres-operator/install-extensions.sh|24 col 25| Double quote to prevent globbing and word splitting.
build/postgres-operator/install-extensions.sh|33 col 10| Double quote to prevent globbing and word splitting.
build/postgres-operator/install-extensions.sh|34 col 12| Double quote to prevent globbing and word splitting.
build/postgres-operator/install-extensions.sh|35 col 12| Double quote to prevent globbing and word splitting.
build/postgres-operator/install-extensions.sh|36 col 20| Double quote to prevent globbing and word splitting.
build/postgres-operator/install-extensions.sh|37 col 9| Double quote to prevent globbing and word splitting.
build/postgres-operator/install-extensions.sh|39 col 9| Double quote to prevent globbing and word splitting.
e2e-tests/vars.sh|8 col 32| test_name is referenced but not assigned.
e2e-tests/vars.sh|10 col 8| Declare and assign separately to avoid masking return values.
e2e-tests/vars.sh|26 col 1| date appears unused. Verify use (or export if used externally).
e2e-tests/vars.sh|27 col 1| sed appears unused. Verify use (or export if used externally).
installers/olm/generate.sh|72 col 6| Double quote to prevent globbing and word splitting.
installers/olm/build-image.sh|10 col 5| Use 'pushd ... || exit' or 'pushd ... || return' in case pushd fails.
installers/olm/build-image.sh|10 col 11| Double quote to prevent globbing and word splitting.
installers/olm/build-image.sh|15 col 5| Use 'popd ... || exit' or 'popd ... || return' in case popd fails.
installers/olm/install.sh|37 col 108| Note that A && B || C is not if-then-else. C may run when A is true.
installers/olm/install.sh|108 col 70| Note that A && B || C is not if-then-else. C may run when A is true.
installers/olm/install.sh|122 col 98| Note that A && B || C is not if-then-else. C may run when A is true.
hack/update-pgmonitor-installer.sh|33 col 1| Use 'cd ... || exit' or 'cd ... || return' in case cd fails.
hack/update-pgmonitor-installer.sh|39 col 12| Expressions don't expand in single quotes, use double quotes for that.
hack/update-pgmonitor-installer.sh|52 col 8| Expressions don't expand in single quotes, use double quotes for that.
hack/create-todo-patch.sh|39 col 26| See if you can use ${variable//search/replace} instead.
hack/create-todo-patch.sh|42 col 91| Expressions don't expand in single quotes, use double quotes for that.
hack/create-todo-patch.sh|49 col 91| Expressions don't expand in single quotes, use double quotes for that.
hack/create-kubeconfig.sh|62 col 12| $/${} is unnecessary on arithmetic variables.