File tree 4 files changed +80
-33
lines changed
container-object-storage-interface-provisioner-sidecar
4 files changed +80
-33
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 1
1
module github.com/kubernetes-sigs/container-object-storage-interface-provisioner-sidecar
2
2
3
- go 1.14
3
+ go 1.15
4
4
5
5
require (
6
+ github.com/kubernetes-csi/csi-lib-utils v0.9.0
6
7
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
8
10
golang.org/x/time v0.0.0-20201208040808-7e3f01d25324
9
11
google.golang.org/grpc v1.34.0
10
12
k8s.io/api v0.19.4
You can’t perform that action at this time.
0 commit comments