We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 15dede2 commit 2ec7aa9Copy full SHA for 2ec7aa9
release/create-release-tag.sh
@@ -152,6 +152,10 @@ update_code() {
152
# Update operator version for the integration tests
153
# this is used when installing the operators.
154
yq -i ".releases.tests.products[].operatorVersion |= sub(\"0.0.0-dev\", \"${RELEASE_TAG}\")" "$1/tests/release.yaml"
155
+
156
+ # Some tests perform label inspection and for these cases only specific labels should be updated.
157
+ # N.B. don't do this for all test files as not all images will necessarily exist for the given release tag.
158
+ find "$1/tests/templates/kuttl" -type f -print0 | xargs -0 sed -i "/app.kubernetes.io\/version/{ s/stackable0.0.0-dev/stackable$RELEASE_TAG/ }"
159
}
160
161
push_branch() {
0 commit comments