-
Notifications
You must be signed in to change notification settings - Fork 8.1k
add PROXY_REPO_SHA removing overloaded meaning of PROXY_TAG #4158
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
Conversation
Will there also be a corresponding change to the daily qualification tests, e.g. https://github.com/istio-releases/daily-release/blob/master/prow/daily-e2e-cluster_wide-auth-skew.sh#L39 ? Otherwise, this change is a step in the right direction, though if PROXY_HUB/TAG is now for pilot's proxy then the rule for istio-archive in the Makefile probably needs to change what it passes to install/updateVersion.sh. At a minimum -r probably needs to be changed from |
Codecov Report
@@ Coverage Diff @@
## master #4158 +/- ##
=======================================
- Coverage 73% 73% -<1%
=======================================
Files 313 313
Lines 28759 28682 -77
=======================================
- Hits 20901 20837 -64
+ Misses 6537 6535 -2
+ Partials 1321 1310 -11
Continue to review full report at Codecov.
|
Actually, I suppose the tag value that's passed to -r is already okay (my comment on "from |
PILOT_HUB is used where PROXY_HUB should be logically. Fixed all that and got rid of istio.VERSION |
/test istio-unit-tests |
/lgtm |
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: ldemailly The full list of commands accepted by this bot can be found here.
Needs approval from an approver in each of these OWNERS Files:
You can indicate your approval by writing |
/test e2e-simple |
/test all [submit-queue is verifying that this PR is safe to merge] |
/test istio-unit-tests |
/test all [submit-queue is verifying that this PR is safe to merge] |
Automatic merge from submit-queue. |
@rkpagadala: The following tests failed, say
Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository. I understand the commands that are listed here. |
this PR got merged but it failed all e2e. Something is wrong with generated yaml |
Revert "add PROXY_REPO_SHA removing overloaded meaning of PROXY_TAG (istio#4158)" This reverts commit 6fe9379.
I know I'm beating a dead (or should I say reverted) horse, but on any subsequent attempt to delete istio.VERSION be sure to grep across the various for uses of the file (e.g., the releae build failed because the ${ISTIO_OUT}/archive rule in the Makefile has a dependency on the then-missing istio.VERSION). |
The most important change from the previous diff is setting the defaults copied from istio.VERSION |
PROXY_TAG now refers to the docker image tag build from file pilot/docker/Dockerfile.proxy or pilot/docker/Dockerfile.proxy_debug
PROXY_REPO_SHA refers to the sha of istio/proxy, and is used to download the envoy binary used to build the proxy docker image referred above.
fixes #4157