This repository was archived by the owner on Dec 3, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 5 files changed +82
-35
lines changed
pkg/controller/bucketaccess Expand file tree Collapse file tree 5 files changed +82
-35
lines changed Original file line number Diff line number Diff line change 1+ * .tmp
2+ .DS_Store
3+ .build
4+ * .swp
5+ travis.yml
6+ release-tools
7+ bin
Original file line number Diff line number Diff line change 1+ # Copyright 2020 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+ all : reltools build
16+ .PHONY : reltools
17+ reltools : release-tools/build.make
18+ release-tools/build.make :
19+ $(eval CURDIR := $(shell pwd) )
20+ $(eval TMP := $(shell mktemp -d) )
21+ $(shell cd ${TMP} && git clone https://github.com/kubernetes-sigs/container-object-storage-interface-spec)
22+ $(shell cp -r ${TMP}/container-object-storage-interface-spec/release-tools ${CURDIR}/)
23+ $(shell rm -rf ${TMP})
24+ ln -s release-tools/travis.yml travis.yml
25+
26+ # CMDS=provisioner-sidecar
27+
28+ include release-tools/build.make
Original file line number Diff line number Diff line change 11module github.com/kubernetes-sigs/container-object-storage-interface-provisioner-sidecar
22
3- go 1.14
3+ go 1.15
44
55require (
6+ github.com/kubernetes-csi/csi-lib-utils v0.9.0
67 github.com/kubernetes-sigs/container-object-storage-interface-api v0.0.0-20201204201926-43539346a903
7- github.com/kubernetes-sigs/container-object-storage-interface-spec v0.0.0-20201208142312-59e00cb00687
8+ github.com/kubernetes-sigs/container-object-storage-interface-spec v0.0.0-20201217184109-8cbf84dde8d3
9+ golang.org/x/net v0.0.0-20200707034311-ab3426394381
810 golang.org/x/time v0.0.0-20201208040808-7e3f01d25324
911 google.golang.org/grpc v1.34.0
1012 k8s.io/api v0.19.4
You can’t perform that action at this time.
0 commit comments