File tree Expand file tree Collapse file tree 4 files changed +14
-7
lines changed
Expand file tree Collapse file tree 4 files changed +14
-7
lines changed Original file line number Diff line number Diff line change 66jobs :
77 lint :
88 name : Lint
9- runs-on : ubuntu-18 .04
9+ runs-on : ubuntu-20 .04
1010 steps :
1111 - uses : actions/checkout@v2
1212 - name : golangci-lint
1616
1717 build :
1818 name : Test & Build
19- runs-on : ubuntu-18 .04
19+ runs-on : ubuntu-20 .04
2020 steps :
2121 - name : Setup up Go 1.x
2222 uses : actions/setup-go@v2
Original file line number Diff line number Diff line change 1414jobs :
1515 push :
1616 name : Push images
17- runs-on : ubuntu-18 .04
17+ runs-on : ubuntu-20 .04
1818
1919 steps :
2020 - name : Check out code
6767
6868 release :
6969 name : Release
70- runs-on : ubuntu-18 .04
70+ runs-on : ubuntu-20 .04
7171
7272 # Run only if previous job has succeeded
7373 needs : [push]
Original file line number Diff line number Diff line change 1- FROM alpine:3.12.3
1+ FROM alpine:3.14.0
22
33LABEL \
44 org.opencontainers.image.description="CloudStack CSI driver" \
55 org.opencontainers.image.source="https://github.com/apalia/cloudstack-csi-driver/"
66
7- RUN apk add --no-cache xfsprogs e2fsprogs blkid ca-certificates
7+ RUN apk add --no-cache \
8+ ca-certificates \
9+ # Provides mkfs.ext2, mkfs.ext3, mkfs.ext4 (used by k8s.io/mount-utils)
10+ e2fsprogs \
11+ # Provides mkfs.xfs
12+ xfsprogs \
13+ # Provides blkid, also used by k8s.io/mount-utils
14+ blkid
815
916COPY ./bin/cloudstack-csi-driver /cloudstack-csi-driver
1017ENTRYPOINT ["/cloudstack-csi-driver" ]
Original file line number Diff line number Diff line change 1- FROM alpine:3.12.3
1+ FROM alpine:3.14.0
22
33LABEL \
44 org.opencontainers.image.description="CloudStack disk offering to Kubernetes storage class syncer" \
You can’t perform that action at this time.
0 commit comments