Merge pull request #12889 from justinsb/extend_gce_toolbox_dump

gce: Add network & subnet to toolbox dump
This commit is contained in:
Kubernetes Prow Robot 2021-12-04 10:12:32 -08:00 committed by GitHub
commit 4f90c0fe91
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 74 additions and 0 deletions

View File

@ -5,6 +5,8 @@ go_library(
srcs = [
"dump.go",
"gce.go",
"network.go",
"subnet.go",
],
importpath = "k8s.io/kops/pkg/resources/gce",
visibility = ["//visibility:public"],

View File

@ -740,6 +740,7 @@ func (d *clusterDiscoveryGCE) listSubnets() ([]*resources.Resource, error) {
Type: typeSubnet,
Deleter: deleteSubnet,
Obj: o,
Dumper: DumpSubnetwork,
}
resourceTracker.Blocks = append(resourceTracker.Blocks, typeNetwork+":"+gce.LastComponent(o.Network))
@ -868,6 +869,7 @@ func (d *clusterDiscoveryGCE) listNetworks() ([]*resources.Resource, error) {
Type: typeNetwork,
Deleter: deleteNetwork,
Obj: o,
Dumper: DumpNetwork,
}
klog.V(4).Infof("found resource: %s", o.SelfLink)

View File

@ -0,0 +1,35 @@
/*
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 gce
import (
compute "google.golang.org/api/compute/v1"
"k8s.io/kops/pkg/resources"
"k8s.io/kops/upup/pkg/fi/cloudup/gce"
)
// DumpNetwork is responsible for dumping a resource for a Network
func DumpNetwork(op *resources.DumpOperation, r *resources.Resource) error {
network := r.Obj.(*compute.Network)
vpc := &resources.VPC{
ID: gce.LastComponent(network.SelfLink),
}
op.Dump.VPC = vpc
return nil
}

View File

@ -0,0 +1,35 @@
/*
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 gce
import (
compute "google.golang.org/api/compute/v1"
"k8s.io/kops/pkg/resources"
"k8s.io/kops/upup/pkg/fi/cloudup/gce"
)
// DumpSubnetwork is responsible for dumping a resource for a Subnetwork
func DumpSubnetwork(op *resources.DumpOperation, r *resources.Resource) error {
obj := r.Obj.(*compute.Subnetwork)
subnet := &resources.Subnet{
ID: gce.LastComponent(obj.SelfLink),
}
op.Dump.Subnets = append(op.Dump.Subnets, subnet)
return nil
}