mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-07-31 23:37:01 +00:00
long running operation support
This commit is contained in:
parent
8250950d15
commit
75bff35884
142
pkg/cloudprovider/providers/gce/cloud/op.go
Normal file
142
pkg/cloudprovider/providers/gce/cloud/op.go
Normal file
@ -0,0 +1,142 @@
|
|||||||
|
/*
|
||||||
|
Copyright 2017 The Kubernetes Authors.
|
||||||
|
|
||||||
|
Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
you may not use this file except in compliance with the License.
|
||||||
|
You may obtain a copy of the License at
|
||||||
|
|
||||||
|
http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
|
||||||
|
Unless required by applicable law or agreed to in writing, software
|
||||||
|
distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
See the License for the specific language governing permissions and
|
||||||
|
limitations under the License.
|
||||||
|
*/
|
||||||
|
|
||||||
|
package cloud
|
||||||
|
|
||||||
|
import (
|
||||||
|
"context"
|
||||||
|
|
||||||
|
alpha "google.golang.org/api/compute/v0.alpha"
|
||||||
|
beta "google.golang.org/api/compute/v0.beta"
|
||||||
|
ga "google.golang.org/api/compute/v1"
|
||||||
|
|
||||||
|
"k8s.io/kubernetes/pkg/cloudprovider/providers/gce/cloud/meta"
|
||||||
|
)
|
||||||
|
|
||||||
|
// operation is a GCE operation that can be watied on.
|
||||||
|
type operation interface {
|
||||||
|
// isDone queries GCE for the done status. This call can block.
|
||||||
|
isDone(ctx context.Context) (bool, error)
|
||||||
|
// rateLimitKey returns the rate limit key to use for the given operation.
|
||||||
|
// This rate limit will govern how fast the server will be polled for
|
||||||
|
// operation completion status.
|
||||||
|
rateLimitKey() *RateLimitKey
|
||||||
|
}
|
||||||
|
|
||||||
|
type gaOperation struct {
|
||||||
|
s *Service
|
||||||
|
op *ga.Operation
|
||||||
|
projectID string
|
||||||
|
}
|
||||||
|
|
||||||
|
func (o *gaOperation) isDone(ctx context.Context) (bool, error) {
|
||||||
|
var (
|
||||||
|
op *ga.Operation
|
||||||
|
err error
|
||||||
|
)
|
||||||
|
|
||||||
|
switch {
|
||||||
|
case o.op.Region != "":
|
||||||
|
op, err = o.s.GA.RegionOperations.Get(o.projectID, o.op.Region, o.op.Name).Context(ctx).Do()
|
||||||
|
case o.op.Zone != "":
|
||||||
|
op, err = o.s.GA.ZoneOperations.Get(o.projectID, o.op.Zone, o.op.Name).Context(ctx).Do()
|
||||||
|
default:
|
||||||
|
op, err = o.s.GA.GlobalOperations.Get(o.projectID, o.op.Name).Context(ctx).Do()
|
||||||
|
}
|
||||||
|
if err != nil {
|
||||||
|
return false, err
|
||||||
|
}
|
||||||
|
return op != nil && op.Status == "DONE", nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func (o *gaOperation) rateLimitKey() *RateLimitKey {
|
||||||
|
return &RateLimitKey{
|
||||||
|
ProjectID: o.projectID,
|
||||||
|
Operation: "Get",
|
||||||
|
Service: "Operations",
|
||||||
|
Version: meta.VersionGA,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
type alphaOperation struct {
|
||||||
|
s *Service
|
||||||
|
op *alpha.Operation
|
||||||
|
projectID string
|
||||||
|
}
|
||||||
|
|
||||||
|
func (o *alphaOperation) isDone(ctx context.Context) (bool, error) {
|
||||||
|
var (
|
||||||
|
op *alpha.Operation
|
||||||
|
err error
|
||||||
|
)
|
||||||
|
|
||||||
|
switch {
|
||||||
|
case o.op.Region != "":
|
||||||
|
op, err = o.s.Alpha.RegionOperations.Get(o.projectID, o.op.Region, o.op.Name).Context(ctx).Do()
|
||||||
|
case o.op.Zone != "":
|
||||||
|
op, err = o.s.Alpha.ZoneOperations.Get(o.projectID, o.op.Zone, o.op.Name).Context(ctx).Do()
|
||||||
|
default:
|
||||||
|
op, err = o.s.Alpha.GlobalOperations.Get(o.projectID, o.op.Name).Context(ctx).Do()
|
||||||
|
}
|
||||||
|
if err != nil {
|
||||||
|
return false, err
|
||||||
|
}
|
||||||
|
return op != nil && op.Status == "DONE", nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func (o *alphaOperation) rateLimitKey() *RateLimitKey {
|
||||||
|
return &RateLimitKey{
|
||||||
|
ProjectID: o.projectID,
|
||||||
|
Operation: "Get",
|
||||||
|
Service: "Operations",
|
||||||
|
Version: meta.VersionAlpha,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
type betaOperation struct {
|
||||||
|
s *Service
|
||||||
|
op *beta.Operation
|
||||||
|
projectID string
|
||||||
|
}
|
||||||
|
|
||||||
|
func (o *betaOperation) isDone(ctx context.Context) (bool, error) {
|
||||||
|
var (
|
||||||
|
op *beta.Operation
|
||||||
|
err error
|
||||||
|
)
|
||||||
|
|
||||||
|
switch {
|
||||||
|
case o.op.Region != "":
|
||||||
|
op, err = o.s.Beta.RegionOperations.Get(o.projectID, o.op.Region, o.op.Name).Context(ctx).Do()
|
||||||
|
case o.op.Zone != "":
|
||||||
|
op, err = o.s.Beta.ZoneOperations.Get(o.projectID, o.op.Zone, o.op.Name).Context(ctx).Do()
|
||||||
|
default:
|
||||||
|
op, err = o.s.Beta.GlobalOperations.Get(o.projectID, o.op.Name).Context(ctx).Do()
|
||||||
|
}
|
||||||
|
if err != nil {
|
||||||
|
return false, err
|
||||||
|
}
|
||||||
|
return op != nil && op.Status == "DONE", nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func (o *betaOperation) rateLimitKey() *RateLimitKey {
|
||||||
|
return &RateLimitKey{
|
||||||
|
ProjectID: o.projectID,
|
||||||
|
Operation: "Get",
|
||||||
|
Service: "Operations",
|
||||||
|
Version: meta.VersionBeta,
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user