-
Notifications
You must be signed in to change notification settings - Fork 580
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
[Fixes #481] remove add registry sidecar from docker-build tests #491
Conversation
/assign @chmouel |
/assign @imjasonh |
/hold |
655f495
to
e08b1af
Compare
🤦 This is why its one line... ++ python3 utils.py add_sidecar_to_yaml_file
python3: can't open file 'utils.py': [Errno 2] No such file or directory |
This sounds good, thanks for doign this refactoring, any chances if you can squash the commits ? (preferrably if you can separate the refactoring from the fix but that's not absolutely necessary). thanks! |
da61ed2
to
0fd422b
Compare
probably fetching the latest commits from upstream and rebasing the PR would help fix the CI |
0fd422b
to
1781208
Compare
1781208
to
bb1d39d
Compare
/test pull-tekton-catalog-integration-tests |
bb1d39d
to
92ac83f
Compare
7eed158
to
3a5d60a
Compare
@vinamra28 @imjasonh @afrittoli @chmouel YAY! YAML! 🎉 (could you take another look) 😉 |
how do i remove hold 😿 |
/unhold |
/hold cancel |
3a5d60a
to
aee6545
Compare
/test pull-tekton-catalog-integration-tests |
1 similar comment
/test pull-tekton-catalog-integration-tests |
aee6545
to
123b855
Compare
123b855
to
b9600dc
Compare
The end to end test attaches a sidecar with a image registry for tasks to push into to. However, the function add_sidecar_registry sets the sidecar registry instead of appending it. Removing the function from test to remove this bug. There is a local registry being added to the test that is deployed with deployment and svc. The svc is referenced during the test instead of the sidecar. tektoncd#481
b9600dc
to
f440719
Compare
/lgtm |
/lgtm |
/assign @chmouel |
/lgtm Let's see how it goes! |
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: chmouel The full list of commands accepted by this bot can be found here. The pull request process is described here
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
Changes
Overview
Summary
The end to end test attaches a sidecar with a image registry for tasks to push into to. This task is optional and is encouraged to be used for testing. However, the function add_sidecar_registry sets the sidecar registry instead of appending it. Not using the tasks will fix the test #481
TLDR;
Script sets sidecar equal to an object instead of appending it. So, Im not going to use it in my test.