Finish switching from GKE_BRANCH to GKE_VERSION (from #5730) #5780
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR aims to fix the failing full integration pipeline (which we need to pass for release).
Also updates Hugo version (based on instructions in the release-process.md.
Signed-off-by: Michael Nelson minelson@vmware.com
Description of the change
Recent runs (from the past 6 days) of the full integration pipeline have been failing. Looking for the differences, I could see that:
chart-museum.sh
was failing to upload our custom apache chart to the chartmuseum instance, because...LOAD_BALANCER_IP
was set to172.18.0.2
, which is theDEX_IP
, whereas it should be set to the load balancer IP address (which has been created correctly), as it is in the last passing run. It's not doing this because...LOAD_BALANCER_IP
address does so conditionally based on theGKE_BRANCH
environment variable, which is blank... so as far as that script can tell, it's not a GKE run. The reason that theGKE_BRANCH
env var is blank is because...GKE_BRANCH
env var was removed and replaced withGKE_VERSION
everywhere excepte2e-test.sh
it seems. I assume this was just an oversight on our part.So this PR just finishes that change by renaming the var in
e2e-test.sh
.Benefits
Hopefully we can now pass the full integration pipeline.
Possible drawbacks
Applicable issues
Additional information