Skip to content
This repository was archived by the owner on Dec 6, 2024. It is now read-only.

Commit 465b16f

Browse files
committed
We maintain release tools only under Spec repo
1 parent 241a7a7 commit 465b16f

23 files changed

+11
-2806
lines changed

Diff for: Dockerfile

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
FROM gcr.io/distroless/static:latest
2+
LABEL maintainers="Kubernetes Authors"
3+
LABEL description="COSI Controller"
4+
5+
COPY ./bin/cosi-controller-manager cosi-controller-manager
6+
ENTRYPOINT ["/cosi-controller-manager"]
+5-10
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
1-
#!/usr/bin/env bash
2-
3-
# Copyright 2019 The Kubernetes Authors.
1+
# Copyright 2020 The Kubernetes Authors.
42
#
53
# Licensed under the Apache License, Version 2.0 (the "License");
64
# you may not use this file except in compliance with the License.
@@ -14,10 +12,7 @@
1412
# See the License for the specific language governing permissions and
1513
# limitations under the License.
1614

17-
if [ -f Gopkg.toml ]; then
18-
echo "Repo uses 'dep' for vendoring."
19-
(set -x; dep ensure)
20-
elif [ -f go.mod ]; then
21-
release-tools/verify-go-version.sh "go"
22-
(set -x; env GO111MODULE=on go mod tidy && env GO111MODULE=on go mod vendor)
23-
fi
15+
#CMDS=cosi-controller-manager
16+
all: build
17+
18+
include release-tools/build.make

Diff for: release-tools/.prow.sh

-7
This file was deleted.

Diff for: release-tools/CONTRIBUTING.md

-31
This file was deleted.

Diff for: release-tools/LICENSE

-201
This file was deleted.

Diff for: release-tools/OWNERS

-11
This file was deleted.

0 commit comments

Comments
 (0)