Skip to content
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

Open
wants to merge 3 commits into
base: master
Choose a base branch
from

Conversation

miyadav
Copy link
Member

@miyadav miyadav commented Jan 7, 2025

Adding annotation tests on gcp . This is work in progress , any suggestions are welcome.

@openshift-ci openshift-ci bot requested review from racheljpg and sub-mod January 7, 2025 05:58
Copy link
Contributor

openshift-ci bot commented Jan 7, 2025

[APPROVALNOTIFIER] This PR is NOT APPROVED

This pull-request has been approved by:
Once this PR has been reviewed and has the lgtm label, please assign radekmanak for approval. For more information see the Code Review Process.

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 /approve in a comment
Approvers can cancel approval by writing /approve cancel in a comment

@miyadav miyadav force-pushed the annotationtestsgcp branch 2 times, most recently from 73462b7 to e052bd3 Compare January 8, 2025 12:24
@miyadav miyadav force-pushed the annotationtestsgcp branch from e052bd3 to 8760dcb Compare January 16, 2025 09:23
made the service to LB type
@miyadav miyadav force-pushed the annotationtestsgcp branch from 8760dcb to ba9d97d Compare January 16, 2025 10:17
@miyadav
Copy link
Member Author

miyadav commented Feb 3, 2025

once PR is merged the new added test shall pass .

@sunzhaohua2
Copy link
Contributor

@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. Takecloud.google.com/network-tier annotationfor example, the step may be:

  1. create service with annotation cloud.google.com/network-tier: Standard
  2. check with gcp cli that LB with network-tier: Standard
  3. update service annotation to network-tier: Premium
  4. check with gcp cli that LB with network-tier: Premium
  5. remove the annoation
  6. check with gcp cli that LB with network-tier: Standard
  7. create with invalidvalue
  8. check create failed

g.Skip("Skipping GCP E2E tests")
}

namespace = "default"
Copy link
Contributor

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.

updatedService := &corev1.Service{}
err := cl.Get(ctx, client.ObjectKey{Name: service.Name, Namespace: namespace}, updatedService)
if err != nil {
return "", err
Copy link
Contributor

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())
Copy link
Contributor

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")

@miyadav
Copy link
Member Author

miyadav commented Feb 12, 2025

@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. Takecloud.google.com/network-tier annotationfor example, the step may be:

  1. create service with annotation cloud.google.com/network-tier: Standard
  2. check with gcp cli that LB with network-tier: Standard
  3. update service annotation to network-tier: Premium
  4. check with gcp cli that LB with network-tier: Premium
  5. remove the annoation
  6. check with gcp cli that LB with network-tier: Standard
  7. create with invalidvalue
  8. check create failed

We are checking the updated IP ( line 136 to confirm it took effect .
I will review more for the updates to confirm from cli.

@miyadav
Copy link
Member Author

miyadav commented Feb 13, 2025

@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. Takecloud.google.com/network-tier annotationfor example, the step may be:

  1. create service with annotation cloud.google.com/network-tier: Standard
  2. check with gcp cli that LB with network-tier: Standard
  3. update service annotation to network-tier: Premium
  4. check with gcp cli that LB with network-tier: Premium
  5. remove the annoation
  6. check with gcp cli that LB with network-tier: Standard
  7. create with invalidvalue
  8. check create failed

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 🤔

`func verifyGCPAnnotation(svcName, annotation, expectedValue string) bool {
	var cmd string

	switch annotation {
	case "cloud.google.com/network-tier":
		cmd = fmt.Sprintf("gcloud compute forwarding-rules describe %s --format='value(networkTier)'", svcName)
	case "networking.gke.io/internal-load-balancer-allow-global-access":
		cmd = fmt.Sprintf("gcloud compute forwarding-rules describe %s --format='value(allowGlobalAccess)'", svcName)
	case "alpha.cloud.google.com/load-balancer-backend-share":
		cmd = fmt.Sprintf("gcloud compute backend-services describe %s --format='value(backendShare)'", svcName)
	default:
		fmt.Println("No GCP CLI validation available for annotation:", annotation)
		return true
	}`

Copy link
Contributor

openshift-ci bot commented Feb 13, 2025

@miyadav: The following test failed, say /retest to rerun all failed tests or /retest-required to rerun all mandatory failed tests:

Test name Commit Details Required Rerun command
ci/prow/e2e-openstack-operator aa15c8b link false /test e2e-openstack-operator

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.

@miyadav
Copy link
Member Author

miyadav commented Feb 27, 2025

/test e2e-gcp-operator

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants