Skip to content

Commit 35ae081

Browse files
authored
Merge pull request kubernetes-retired#5 from brahmaroutu/remove_release_tools
We maintain release tools only under Spec repo
2 parents 8539a5f + d8faa00 commit 35ae081

23 files changed

+11
-2806
lines changed
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"]
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: container-object-storage-interface-controller/release-tools/.prow.sh

-7
This file was deleted.

Diff for: container-object-storage-interface-controller/release-tools/CONTRIBUTING.md

-31
This file was deleted.

Diff for: container-object-storage-interface-controller/release-tools/LICENSE

-201
This file was deleted.

Diff for: container-object-storage-interface-controller/release-tools/OWNERS

-11
This file was deleted.

0 commit comments

Comments
 (0)