From 46cdcd33a8129b960ea22ebd31bc6c36fe27f91d Mon Sep 17 00:00:00 2001 From: Stacky McStackface Date: Wed, 13 Mar 2024 16:16:19 +0000 Subject: [PATCH] Generated commit to update templated files based on rev ba6b798 in stackabletech/operator-templating repo. Triggered by: Manual run triggered by: razvan with message [CLA in readmes and other fixes] --- .readme/partials/borrowed/footer.md.j2 | 5 ++++- README.md | 5 ++++- scripts/run_tests.sh | 6 ++++-- 3 files changed, 12 insertions(+), 4 deletions(-) diff --git a/.readme/partials/borrowed/footer.md.j2 b/.readme/partials/borrowed/footer.md.j2 index 42baca3f..5276fa2a 100644 --- a/.readme/partials/borrowed/footer.md.j2 +++ b/.readme/partials/borrowed/footer.md.j2 @@ -50,7 +50,10 @@ And our internal operators: ## Contributing -Contributions are welcome. Follow our [Contributors Guide](https://docs.stackable.tech/home/stable/contributor/index.html) to learn how you can contribute. +Contributions are welcome. +Follow our [Contributors Guide](https://docs.stackable.tech/home/stable/contributor/index.html) to learn how you can contribute. +All contributors will have to sign a [Contributor License Agreement](https://github.com/stackabletech/.github/blob/main/cla.md). +This is enforced automatically when you submit a Pull Request where a bot will guide you through the process. ## License diff --git a/README.md b/README.md index a6be5c9b..0015763f 100644 --- a/README.md +++ b/README.md @@ -86,7 +86,10 @@ And our internal operators: ## Contributing -Contributions are welcome. Follow our [Contributors Guide](https://docs.stackable.tech/home/stable/contributor/index.html) to learn how you can contribute. +Contributions are welcome. +Follow our [Contributors Guide](https://docs.stackable.tech/home/stable/contributor/index.html) to learn how you can contribute. +All contributors will have to sign a [Contributor License Agreement](https://github.com/stackabletech/.github/blob/main/cla.md). +This is enforced automatically when you submit a Pull Request where a bot will guide you through the process. ## License diff --git a/scripts/run_tests.sh b/scripts/run_tests.sh index 85fbbd2b..3fc17f64 100755 --- a/scripts/run_tests.sh +++ b/scripts/run_tests.sh @@ -97,12 +97,14 @@ run_tests() { OPTS+=("--test=$KUTTL_TEST") fi - pushd "$TEST_ROOT" || exit + pushd "$TEST_ROOT" || exit 1 # Disable SC2068 because we want to pass the array as individual arguments # and it would break for the "--parallel n" option. # shellcheck disable=SC2068 kubectl-kuttl ${OPTS[@]} - popd || exit + local KUTTL_EXIT_CODE=$? + popd || exit 1 + exit $KUTTL_EXIT_CODE } usage() {