From 5f65c4b562fc38c812ffe8f794b76fc9f3577664 Mon Sep 17 00:00:00 2001 From: andyzhangx Date: Mon, 6 Mar 2023 13:57:15 +0000 Subject: [PATCH] update vendor --- .../cadvisor/utils/cloudinfo/azure/azure.go | 58 ------------------- vendor/modules.txt | 1 - 2 files changed, 59 deletions(-) delete mode 100644 vendor/github.com/google/cadvisor/utils/cloudinfo/azure/azure.go diff --git a/vendor/github.com/google/cadvisor/utils/cloudinfo/azure/azure.go b/vendor/github.com/google/cadvisor/utils/cloudinfo/azure/azure.go deleted file mode 100644 index d04b0e2b404..00000000000 --- a/vendor/github.com/google/cadvisor/utils/cloudinfo/azure/azure.go +++ /dev/null @@ -1,58 +0,0 @@ -// Copyright 2015 Google Inc. All Rights Reserved. -// -// 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 cloudinfo - -import ( - "io/ioutil" - "strings" - - info "github.com/google/cadvisor/info/v1" - "github.com/google/cadvisor/utils/cloudinfo" -) - -const ( - sysVendorFileName = "/sys/class/dmi/id/sys_vendor" - biosUUIDFileName = "/sys/class/dmi/id/product_uuid" - microsoftCorporation = "Microsoft Corporation" -) - -func init() { - cloudinfo.RegisterCloudProvider(info.Azure, &provider{}) -} - -type provider struct{} - -var _ cloudinfo.CloudProvider = provider{} - -func (provider) IsActiveProvider() bool { - data, err := ioutil.ReadFile(sysVendorFileName) - if err != nil { - return false - } - return strings.Contains(string(data), microsoftCorporation) -} - -// TODO: Implement method. -func (provider) GetInstanceType() info.InstanceType { - return info.UnknownInstance -} - -func (provider) GetInstanceID() info.InstanceID { - data, err := ioutil.ReadFile(biosUUIDFileName) - if err != nil { - return info.UnNamedInstance - } - return info.InstanceID(strings.TrimSuffix(string(data), "\n")) -} diff --git a/vendor/modules.txt b/vendor/modules.txt index fc9f4b144e4..c1f35f49804 100644 --- a/vendor/modules.txt +++ b/vendor/modules.txt @@ -384,7 +384,6 @@ github.com/google/cadvisor/third_party/containerd/api/types github.com/google/cadvisor/third_party/containerd/api/types/task github.com/google/cadvisor/utils github.com/google/cadvisor/utils/cloudinfo -github.com/google/cadvisor/utils/cloudinfo/azure github.com/google/cadvisor/utils/cloudinfo/gce github.com/google/cadvisor/utils/cpuload github.com/google/cadvisor/utils/cpuload/netlink