-
Notifications
You must be signed in to change notification settings - Fork 733
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
Remove stack image defintion feature and fix image overrides #6997
Conversation
buildkite test this -f p=gke,E2E_STACK_VERSION=8.9.0-SNAPSHOT,t=TestVersionUpgradeTwoNodesToLatest8x |
buildkite test this -f p=gke,s=8.9.0-SNAPSHOT,t=TestVersionUpgradeTwoNodesToLatest8x |
I spotted a small bug in the way we detect if we build cloud-on-k8s/.buildkite/scripts/common/trigger.sh Lines 60 to 62 in e3fa2fa
cloud-on-k8s/.buildkite/scripts/common/operator-image.sh Lines 54 to 55 in e3fa2fa
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
…#6997) Remove the unused stack versions feature from the e2e code. Reset the image when setting the version so that stateful builder code won't keep an image digest for a version previously set (see current test failures) // pseudo code newBuilder { .setVersion("8.9.0-SNPSHOT") } // version: "8.9.0-SNAPSHOT" // image: docker.elastic.co/elasticsearch/elasticsearch@sha256:39599c71bd7446fc3c38f22462ba5c86ce65813c4ec38eb3b71bb876061351d4 b.setVersion("8.8.0") // version: "8.8.0" // image: docker.elastic.co/elasticsearch/elasticsearch@sha256:39599c71bd7446fc3c38f22462ba5c86ce65813c4ec38eb3b71bb876061351d4 // test is not actually running 8.8.0 at this point but still 8.9.0-SNAPSHOT Co-authored-by: Thibault Richard <[email protected]> (cherry picked from commit 67a4086) # Conflicts: # docs/reference/dependencies.asciidoc # go.mod
💚 All backports created successfully
Questions ?Please refer to the Backport tool documentation |
…6999) Remove the unused stack versions feature from the e2e code. Reset the image when setting the version so that stateful builder code won't keep an image digest for a version previously set (see current test failures) // pseudo code newBuilder { .setVersion("8.9.0-SNPSHOT") } // version: "8.9.0-SNAPSHOT" // image: docker.elastic.co/elasticsearch/elasticsearch@sha256:39599c71bd7446fc3c38f22462ba5c86ce65813c4ec38eb3b71bb876061351d4 b.setVersion("8.8.0") // version: "8.8.0" // image: docker.elastic.co/elasticsearch/elasticsearch@sha256:39599c71bd7446fc3c38f22462ba5c86ce65813c4ec38eb3b71bb876061351d4 // test is not actually running 8.8.0 at this point but still 8.9.0-SNAPSHOT Co-authored-by: Thibault Richard <[email protected]> (cherry picked from commit 67a4086) # Conflicts: # docs/reference/dependencies.asciidoc # go.mod
Remove the unused stack versions feature from the e2e code.
Reset the image when setting the version so that stateful builder code won't keep an image digest for a version previously set (see current test failures)