-
Story
-
Resolution: Won't Do
-
Normal
-
None
-
4.19.0
-
None
-
Product / Portfolio Work
-
False
-
-
False
-
3
-
None
-
None
-
Installer Sprint 268
User Story:
As a (user persona), I want to be able to:
- Use custom endpoints through out all cluster components
- Capability 2
- Capability 3
so that I can achieve
- Using the same api endpoints through the cluster
- Outcome 2
- Outcome 3
Acceptance Criteria:
Description of criteria:
- Upstream documentation
- Point 1
- Point 2
- Point 3
(optional) Out of Scope:
Detail about what is specifically not being delivered in the story
Engineering Details:
pkg/gcpclient/client.go: cloudResourceManagerClient, err := cloudresourcemanager.NewService(ctx, option.WithCredentials(creds)) pkg/gcpclient/client.go: return nil, fmt.Errorf("gcpclient.NewClient.cloudresourcemanager.NewService %v", err) pkg/gcpclient/client.go: iamClient, err := iam.NewService(ctx, option.WithCredentials(creds)) pkg/gcpclient/client.go: return nil, fmt.Errorf("gcpclient.iam.NewService %v", err) pkg/gcpclient/client.go: serviceUsageClient, err := serviceusage.NewService(ctx, option.WithCredentials(creds)) pkg/gcpclient/client.go: return nil, fmt.Errorf("gcpclient.serviceUsageClient.NewService %v", err) pkg/gcpclient/client.go: cloudBillingClient, err := cloudbilling.NewService(ctx, option.WithCredentials(creds)) pkg/gcpclient/client.go: return nil, fmt.Errorf("gcpclient.cloudBillingClient.NewService %v", err) pkg/gcpclient/client.go: computeService, err := compute.NewService(ctx, option.WithCredentials(creds)) pkg/gcpclient/client.go: return nil, fmt.Errorf("gcpclient.compute.NewService %v", err)
- Each time the service is created New, the the option for `withEndpoint` should be issued when applicable.
This requires/does not require a design proposal.
This requires/does not require a feature gate.