From 200d749944d5bf4a8180a2b710950c1197727810 Mon Sep 17 00:00:00 2001 From: Chao Xu Date: Fri, 12 May 2017 17:10:50 -0700 Subject: [PATCH] manually remove heapster/v1alpah1 from Godeps --- Godeps/Godeps.json | 5 -- .../metrics/apis/metrics/v1alpha1/BUILD | 31 -------- .../metrics/apis/metrics/v1alpha1/types.go | 78 ------------------- 3 files changed, 114 deletions(-) delete mode 100644 vendor/k8s.io/heapster/metrics/apis/metrics/v1alpha1/BUILD delete mode 100644 vendor/k8s.io/heapster/metrics/apis/metrics/v1alpha1/types.go diff --git a/Godeps/Godeps.json b/Godeps/Godeps.json index b3d7b8353e9..2039c1f9d39 100644 --- a/Godeps/Godeps.json +++ b/Godeps/Godeps.json @@ -2864,11 +2864,6 @@ "Comment": "v1.2.0-beta.1", "Rev": "c2ac40f1adf8c42a79badddb2a2acd673cae3bcb" }, - { - "ImportPath": "k8s.io/heapster/metrics/apis/metrics/v1alpha1", - "Comment": "v1.2.0-beta.1", - "Rev": "c2ac40f1adf8c42a79badddb2a2acd673cae3bcb" - }, { "ImportPath": "vbom.ml/util/sortorder", "Rev": "db5cfe13f5cc80a4990d98e2e1b0707a4d1a5394" diff --git a/vendor/k8s.io/heapster/metrics/apis/metrics/v1alpha1/BUILD b/vendor/k8s.io/heapster/metrics/apis/metrics/v1alpha1/BUILD deleted file mode 100644 index 1beb8e8e0c1..00000000000 --- a/vendor/k8s.io/heapster/metrics/apis/metrics/v1alpha1/BUILD +++ /dev/null @@ -1,31 +0,0 @@ -package(default_visibility = ["//visibility:public"]) - -licenses(["notice"]) - -load( - "@io_bazel_rules_go//go:def.bzl", - "go_library", -) - -go_library( - name = "go_default_library", - srcs = ["types.go"], - tags = ["automanaged"], - deps = [ - "//pkg/api/unversioned:go_default_library", - "//pkg/api/v1:go_default_library", - ], -) - -filegroup( - name = "package-srcs", - srcs = glob(["**"]), - tags = ["automanaged"], - visibility = ["//visibility:private"], -) - -filegroup( - name = "all-srcs", - srcs = [":package-srcs"], - tags = ["automanaged"], -) diff --git a/vendor/k8s.io/heapster/metrics/apis/metrics/v1alpha1/types.go b/vendor/k8s.io/heapster/metrics/apis/metrics/v1alpha1/types.go deleted file mode 100644 index 430a01bd111..00000000000 --- a/vendor/k8s.io/heapster/metrics/apis/metrics/v1alpha1/types.go +++ /dev/null @@ -1,78 +0,0 @@ -// Copyright 2016 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 v1alpha1 - -import ( - "k8s.io/kubernetes/pkg/api/unversioned" - "k8s.io/kubernetes/pkg/api/v1" -) - -// resource usage metrics of a node. -type NodeMetrics struct { - unversioned.TypeMeta `json:",inline"` - v1.ObjectMeta `json:"metadata,omitempty"` - - // The following fields define time interval from which metrics were - // collected from the interval [Timestamp-Window, Timestamp]. - Timestamp unversioned.Time `json:"timestamp"` - Window unversioned.Duration `json:"window"` - - // The memory usage is the memory working set. - Usage v1.ResourceList `json:"usage"` -} - -// NodeMetricsList is a list of NodeMetrics. -type NodeMetricsList struct { - unversioned.TypeMeta `json:",inline"` - // Standard list metadata. - // More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds - unversioned.ListMeta `json:"metadata,omitempty"` - - // List of node metrics. - Items []NodeMetrics `json:"items"` -} - -// resource usage metrics of a pod. -type PodMetrics struct { - unversioned.TypeMeta `json:",inline"` - v1.ObjectMeta `json:"metadata,omitempty"` - - // The following fields define time interval from which metrics were - // collected from the interval [Timestamp-Window, Timestamp]. - Timestamp unversioned.Time `json:"timestamp"` - Window unversioned.Duration `json:"window"` - - // Metrics for all containers are collected within the same time window. - Containers []ContainerMetrics `json:"containers"` -} - -// PodMetricsList is a list of PodMetrics. -type PodMetricsList struct { - unversioned.TypeMeta `json:",inline"` - // Standard list metadata. - // More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds - unversioned.ListMeta `json:"metadata,omitempty"` - - // List of pod metrics. - Items []PodMetrics `json:"items"` -} - -// resource usage metrics of a container. -type ContainerMetrics struct { - // Container name corresponding to the one from pod.spec.containers. - Name string `json:"name"` - // The memory usage is the memory working set. - Usage v1.ResourceList `json:"usage"` -}