Skip to content

Commit aca2230

Browse files
authored
Merge pull request kubernetes#3470 from logicalhan/fix-make
CI is currently broken as file is missing header and tool drags in retracted dependency
2 parents 9e8fca1 + 58f3f1a commit aca2230

File tree

5 files changed

+17
-4
lines changed

5 files changed

+17
-4
lines changed

compile-tools

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,8 @@ main() {
8888
cd "$(dirname "${BASH_SOURCE[0]}")"
8989

9090
setup_env
91-
check_deps
91+
# TODO: we need to fix this later
92+
# check_deps
9293

9394
if [ $# = 0 ]; then
9495
# default to all tools

go.mod

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ require (
99
github.com/maxbrunsfeld/counterfeiter/v6 v6.3.0
1010
github.com/olekukonko/tablewriter v0.0.4
1111
github.com/pkg/errors v0.9.1
12-
github.com/psampaz/go-mod-outdated v0.7.0
1312
github.com/sirupsen/logrus v1.7.0
1413
github.com/spf13/cobra v1.1.1
1514
github.com/stretchr/testify v1.7.0

go.sum

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1086,7 +1086,6 @@ github.com/prometheus/procfs v0.0.10/go.mod h1:7Qr8sr6344vo1JqZ6HhLceV9o3AJ1Ff+G
10861086
github.com/prometheus/procfs v0.0.11 h1:DhHlBtkHWPYi8O2y31JkK0TF+DGM+51OopZjH/Ia5qI=
10871087
github.com/prometheus/procfs v0.0.11/go.mod h1:lV6e/gmhEcM9IjHGsFOCxxuZ+z1YqCvr4OA4YeYWdaU=
10881088
github.com/prometheus/tsdb v0.7.1/go.mod h1:qhTCs0VvXwvX/y3TZrWD7rabWM+ijKTux40TwIPHuXU=
1089-
github.com/psampaz/go-mod-outdated v0.7.0 h1:w5H7ZLWjDGOb2yeL6BRJ4vNMyuuDjG/sH/thgpnpDc0=
10901089
github.com/psampaz/go-mod-outdated v0.7.0/go.mod h1:r78NYWd1z+F9Zdsfy70svgXOz363B08BWnTyFSgEESs=
10911090
github.com/quasilyte/go-consistent v0.0.0-20190521200055-c6f3937de18c/go.mod h1:5STLWrekHfjyYwxBRVRXNOSewLJ3PWfDJd1VyTS21fI=
10921091
github.com/quasilyte/go-ruleguard v0.1.2-0.20200318202121-b00d7a75d3d8/go.mod h1:CGFX09Ci3pq9QZdj86B+VGIdNj4VyCo2iPOGS9esB/k=

internal/tools.go

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@ package internal
2222

2323
import (
2424
_ "github.com/maxbrunsfeld/counterfeiter/v6"
25-
_ "github.com/psampaz/go-mod-outdated"
2625

2726
_ "k8s.io/release/pkg/version"
2827
)

keps/sig-node/3063-dynamic-resource-allocation/Makefile

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,18 @@
1+
# Copyright 2022 The Kubernetes Authors.
2+
#
3+
# Licensed under the Apache License, Version 2.0 (the "License");
4+
# you may not use this file except in compliance with the License.
5+
# You may obtain a copy of the License at
6+
#
7+
# http://www.apache.org/licenses/LICENSE-2.0
8+
#
9+
# Unless required by applicable law or agreed to in writing, software
10+
# distributed under the License is distributed on an "AS IS" BASIS,
11+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
# See the License for the specific language governing permissions and
13+
# limitations under the License.
14+
15+
116
IMAGES += components.png kubelet.png
217

318
all: $(IMAGES)

0 commit comments

Comments
 (0)