File tree 4 files changed +6
-2
lines changed
4 files changed +6
-2
lines changed Original file line number Diff line number Diff line change
1
+ release-tools/cloudbuild.sh
Original file line number Diff line number Diff line change
1
+ release-tools/cloudbuild.yaml
Original file line number Diff line number Diff line change 1
1
FROM gcr.io/distroless/static:latest
2
2
LABEL maintainers="Kubernetes Authors"
3
3
LABEL description="CSI External Snapshotter Sidecar"
4
+ ARG binary=./bin/csi-snapshotter
4
5
5
- COPY ./bin/csi-snapshotter csi-snapshotter
6
+ COPY ${binary} csi-snapshotter
6
7
ENTRYPOINT ["/csi-snapshotter" ]
Original file line number Diff line number Diff line change 1
1
FROM gcr.io/distroless/static:latest
2
2
LABEL maintainers="Kubernetes Authors"
3
3
LABEL description="Snapshot Controller"
4
+ ARG binary=./bin/snapshot-controller
4
5
5
- COPY ./bin/snapshot-controller snapshot-controller
6
+ COPY ${binary} snapshot-controller
6
7
ENTRYPOINT ["/snapshot-controller" ]
You can’t perform that action at this time.
0 commit comments