[WIP] More work implementing create/delete volume and publish/unpublish volume

This commit is contained in:
2024-09-29 10:37:55 -04:00
parent c98b421b03
commit b9f2259674
17 changed files with 225 additions and 85 deletions

View File

@@ -1,4 +1,4 @@
FROM golang:1.18-buster
FROM golang:1.21-bookworm
ARG GOPROXY
@@ -6,7 +6,7 @@ WORKDIR /workspace
COPY . .
ENV GOPROXY=${GOPROXY:-https://proxy.golang.org}
RUN make csi
RUN chmod u+x /workspace/bin/csi
RUN make build
RUN chmod u+x /workspace/bin/manager
ENTRYPOINT ["/workspace/bin/csi"]
ENTRYPOINT ["/workspace/bin/manager"]