Skip to content

Commit 764ef91

Browse files
Generated commit to update templated files based on rev ba6b798 in stackabletech/operator-templating repo. (#498)
Triggered by: Manual run triggered by: razvan with message [CLA in readmes and other fixes]
1 parent c800342 commit 764ef91

File tree

4 files changed

+12
-16
lines changed

4 files changed

+12
-16
lines changed

.readme/partials/borrowed/footer.md.j2

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,10 @@ And our internal operators:
5050

5151
## Contributing
5252

53-
Contributions are welcome. Follow our [Contributors Guide](https://docs.stackable.tech/home/stable/contributor/index.html) to learn how you can contribute.
53+
Contributions are welcome.
54+
Follow our [Contributors Guide](https://docs.stackable.tech/home/stable/contributor/index.html) to learn how you can contribute.
55+
All contributors will have to sign a [Contributor License Agreement](https://github.com/stackabletech/.github/blob/main/cla.md).
56+
This is enforced automatically when you submit a Pull Request where a bot will guide you through the process.
5457

5558
## License
5659

README.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,10 @@ And our internal operators:
8686

8787
## Contributing
8888

89-
Contributions are welcome. Follow our [Contributors Guide](https://docs.stackable.tech/home/stable/contributor/index.html) to learn how you can contribute.
89+
Contributions are welcome.
90+
Follow our [Contributors Guide](https://docs.stackable.tech/home/stable/contributor/index.html) to learn how you can contribute.
91+
All contributors will have to sign a [Contributor License Agreement](https://github.com/stackabletech/.github/blob/main/cla.md).
92+
This is enforced automatically when you submit a Pull Request where a bot will guide you through the process.
9093

9194
## License
9295

deploy/helm/hdfs-operator/templates/serviceaccount.yaml

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -26,16 +26,4 @@ roleRef:
2626
kind: ClusterRole
2727
name: {{ include "operator.fullname" . }}-clusterrole
2828
apiGroup: rbac.authorization.k8s.io
29-
---
30-
apiVersion: rbac.authorization.k8s.io/v1
31-
# This cluster role binding allows anyone in the "manager" group to read secrets in any namespace.
32-
kind: ClusterRoleBinding
33-
metadata:
34-
name: {{ include "operator.name" . }}-clusterrolebinding-nodes
35-
labels:
36-
{{- include "operator.labels" . | nindent 4 }}
37-
roleRef:
38-
kind: ClusterRole
39-
name: {{ include "operator.name" . }}-clusterrole-nodes
40-
apiGroup: rbac.authorization.k8s.io
4129
{{- end }}

scripts/run_tests.sh

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -97,12 +97,14 @@ run_tests() {
9797
OPTS+=("--test=$KUTTL_TEST")
9898
fi
9999

100-
pushd "$TEST_ROOT" || exit
100+
pushd "$TEST_ROOT" || exit 1
101101
# Disable SC2068 because we want to pass the array as individual arguments
102102
# and it would break for the "--parallel n" option.
103103
# shellcheck disable=SC2068
104104
kubectl-kuttl ${OPTS[@]}
105-
popd || exit
105+
local KUTTL_EXIT_CODE=$?
106+
popd || exit 1
107+
exit $KUTTL_EXIT_CODE
106108
}
107109

108110
usage() {

0 commit comments

Comments
 (0)