feat: consolidate provider plugin and chart

This commit is contained in:
2026-07-12 14:42:22 +03:30
parent 4996a511eb
commit 077c472b9d
48 changed files with 1870 additions and 854 deletions
+3 -3
View File
@@ -5,10 +5,10 @@ RUN apk add --no-cache git
COPY go.mod go.sum ./
RUN go mod download
COPY . .
RUN CGO_ENABLED=0 go build -o /kks-csi .
RUN CGO_ENABLED=0 go build -o /kks-provider .
FROM alpine:3.21
RUN apk add --no-cache mount util-linux e2fsprogs findmnt
COPY --from=build /kks-csi /kks-csi
COPY --from=build /kks-provider /kks-provider
USER 0:0
ENTRYPOINT ["/kks-csi"]
ENTRYPOINT ["/kks-provider"]