-
Notifications
You must be signed in to change notification settings - Fork 40
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
OCPQE-27708 - Annotationtestsgcp #370
base: master
Are you sure you want to change the base?
Conversation
[APPROVALNOTIFIER] This PR is NOT APPROVED This pull-request has been approved by: The full list of commands accepted by this bot can be found here.
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
73462b7
to
e052bd3
Compare
e052bd3
to
8760dcb
Compare
made the service to LB type
8760dcb
to
ba9d97d
Compare
once PR is merged the new added test shall pass . |
@miyadav Thanks for working on this, it might be better if we could check result from gcp cli,or we dont know if it take affect. Take
|
pkg/annotations/gcp.go
Outdated
g.Skip("Skipping GCP E2E tests") | ||
} | ||
|
||
namespace = "default" |
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.
maybe set namespace as const and change to another namespace.
pkg/annotations/gcp.go
Outdated
updatedService := &corev1.Service{} | ||
err := cl.Get(ctx, client.ObjectKey{Name: service.Name, Namespace: namespace}, updatedService) | ||
if err != nil { | ||
return "", err |
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.
return "", fmt.Errorf("failed to get service: %v", err)
continue | ||
} | ||
|
||
o.Expect(cl.Update(ctx, latestService)).To(o.Succeed()) |
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.
o.Expect(cl.Update(ctx, latestService)).To(o.Succeed(), "Failed to update service with annotation")
We are checking the updated IP ( line 136 to confirm it took effect . |
I am not sure how to use gcp cli , do you think something like below , I try running it seeing some issues , not sure if this is helpful as well , we would be required to know many details in such case and would be too deep into networking 🤔
|
@miyadav: The following test failed, say
Full PR test history. Your PR dashboard. 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-sigs/prow repository. I understand the commands that are listed here. |
/test e2e-gcp-operator |
Adding annotation tests on gcp . This is work in progress , any suggestions are welcome.