-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #46 from metal-stack/updates
last updates and linter errors fixed
- Loading branch information
Showing
7 changed files
with
158 additions
and
111 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
FROM golang:1.15-alpine as builder | ||
FROM golang:1.16-alpine as builder | ||
RUN apk add make binutils | ||
COPY / /work | ||
WORKDIR /work | ||
RUN make controller | ||
|
||
FROM alpine:3.12 | ||
FROM alpine:3.13 | ||
COPY --from=builder /work/bin/csi-lvm-controller /csi-lvm-controller | ||
USER 65534 | ||
ENTRYPOINT ["/csi-lvm-controller"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,7 +19,6 @@ spec: | |
privileged: true | ||
fsGroup: | ||
rule: RunAsAny | ||
privileged: true | ||
runAsUser: | ||
rule: RunAsAny | ||
seLinux: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,37 +1,33 @@ | ||
module github.com/metal-stack/csi-lvm | ||
|
||
go 1.15 | ||
go 1.16 | ||
|
||
require ( | ||
github.com/cpuguy83/go-md2man/v2 v2.0.0 // indirect | ||
github.com/fsnotify/fsnotify v1.4.9 // indirect | ||
github.com/go-logr/logr v0.3.0 // indirect | ||
github.com/google/go-cmp v0.5.3 // indirect | ||
github.com/google/go-cmp v0.5.5 // indirect | ||
github.com/google/gofuzz v1.2.0 // indirect | ||
github.com/google/lvmd v0.0.0-20200421122210-17bd8b9f710f | ||
github.com/googleapis/gnostic v0.4.0 // indirect | ||
github.com/hashicorp/golang-lru v0.5.4 // indirect | ||
github.com/miekg/dns v1.1.35 // indirect | ||
github.com/miekg/dns v1.1.40 // indirect | ||
github.com/opentracing/opentracing-go v1.2.0 // indirect | ||
github.com/pkg/errors v0.9.1 | ||
github.com/prometheus/client_golang v1.8.0 // indirect | ||
github.com/prometheus/common v0.15.0 // indirect | ||
github.com/prometheus/client_golang v1.9.0 // indirect | ||
github.com/prometheus/common v0.18.0 // indirect | ||
github.com/russross/blackfriday/v2 v2.1.0 // indirect | ||
github.com/stretchr/testify v1.5.1 // indirect | ||
github.com/stretchr/testify v1.7.0 // indirect | ||
github.com/urfave/cli/v2 v2.3.0 | ||
golang.org/x/crypto v0.0.0-20201112155050-0c6587e931a9 // indirect | ||
golang.org/x/net v0.0.0-20201110031124-69a78807bb2b // indirect | ||
golang.org/x/oauth2 v0.0.0-20201109201403-9fd604954f58 // indirect | ||
golang.org/x/sys v0.0.0-20201112073958-5cba982894dd // indirect | ||
golang.org/x/text v0.3.4 // indirect | ||
golang.org/x/time v0.0.0-20200630173020-3af7569d3a1e // indirect | ||
golang.org/x/crypto v0.0.0-20210220033148-5ea612d1eb83 // indirect | ||
golang.org/x/net v0.0.0-20210226172049-e18ecbb05110 // indirect | ||
golang.org/x/oauth2 v0.0.0-20210311163135-5366d9dc1934 // indirect | ||
golang.org/x/text v0.3.5 // indirect | ||
golang.org/x/time v0.0.0-20210220033141-f8bda1e9f3ba // indirect | ||
google.golang.org/appengine v1.6.7 // indirect | ||
google.golang.org/genproto v0.0.0-20201112120144-2985b7af83de // indirect | ||
google.golang.org/grpc v1.33.2 // indirect | ||
k8s.io/api v0.18.12 | ||
k8s.io/apimachinery v0.18.12 | ||
k8s.io/client-go v0.18.12 | ||
k8s.io/klog/v2 v2.4.0 | ||
k8s.io/utils v0.0.0-20201110183641-67b214c5f920 // indirect | ||
sigs.k8s.io/sig-storage-lib-external-provisioner/v6 v6.0.0 | ||
google.golang.org/genproto v0.0.0-20210311153111-e2979279ddde // indirect | ||
google.golang.org/grpc v1.36.0 // indirect | ||
k8s.io/api v0.20.4 | ||
k8s.io/apimachinery v0.20.4 | ||
k8s.io/client-go v0.20.4 | ||
k8s.io/klog/v2 v2.7.0 | ||
k8s.io/utils v0.0.0-20210305010621-2afb4311ab10 // indirect | ||
sigs.k8s.io/sig-storage-lib-external-provisioner/v6 v6.3.0 | ||
) |
Oops, something went wrong.