Skip to content

Commit

Permalink
chore: bump csi interface
Browse files Browse the repository at this point in the history
  • Loading branch information
jtherin committed Aug 11, 2022
1 parent 9f53e31 commit fd4895f
Show file tree
Hide file tree
Showing 14 changed files with 1,466 additions and 167 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/pull-request.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
unit-test:
strategy:
matrix:
go-version: [1.14.x, 1.15.x]
go-version: [1.17.x]
platform: [ubuntu-latest]
runs-on: ${{ matrix.platform }}
steps:
Expand All @@ -24,7 +24,7 @@ jobs:
build-test:
strategy:
matrix:
go-version: [1.14.x, 1.15.x]
go-version: [1.17.x]
platform: [ubuntu-latest]
arch: [386, amd64, arm, arm64]
runs-on: ${{ matrix.platform }}
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.14-alpine as builder
FROM golang:1.17-alpine as builder

RUN apk update && apk add --no-cache git ca-certificates && update-ca-certificates

Expand All @@ -17,7 +17,7 @@ ARG COMMIT_SHA
ARG BUILD_DATE
RUN CGO_ENABLED=0 GOOS=${TARGETOS} GOARCH=${TARGETARCH} go build -a -ldflags "-w -s -X github.com/scaleway/scaleway-csi/driver.driverVersion=${TAG} -X github.com/scaleway/scaleway-csi/driver.buildDate=${BUILD_DATE} -X github.com/scaleway/scaleway-csi/driver.gitCommit=${COMMIT_SHA} " -o scaleway-csi ./cmd/scaleway-csi

FROM alpine:3.12
FROM alpine:3.16
RUN apk update && apk add --no-cache e2fsprogs e2fsprogs-extra xfsprogs xfsprogs-extra cryptsetup ca-certificates && update-ca-certificates
WORKDIR /
COPY --from=builder /go/src/github.com/scaleway/scaleway-csi/scaleway-csi .
Expand Down
23 changes: 10 additions & 13 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,11 @@ The [Scaleway Block Volume](https://www.scaleway.com/en/block-storage/) Containe

### CSI Specification Compability Matrix

| Scaleway CSI Driver \ CSI Version | v1.2.0 |
|----------------------------------------|--------|
| master branch | yes |
| v0.1.0 | yes |
| v0.1.1 | yes |
| v0.1.2 | yes |
| v0.1.3 | yes |
| v0.1.4 | yes |
| v0.1.5 | yes |
| Scaleway CSI Driver \ CSI Version | v1.2.0 | v1.6.0 |
|-----------------------------------|--------|--------|
| master branch | yes | yes |
| v0.1.x | yes | no |
| v0.2.x | yes | yes |

### Features

Expand Down Expand Up @@ -56,10 +52,11 @@ The CSI driver allows to use [Persistent Volumes](https://kubernetes.io/docs/con

### Kubernetes Version Compability Matrix

| Scaleway CSI Driver \ Kubernetes Version | K8S v1.17 | K8S v1.18 | K8S v1.19 |
|------------------------------------------|-----------|-----------|-----------|
| master branch | yes | yes | yes |
| v0.1.x | yes | yes | yes |
| Scaleway CSI Driver \ Kubernetes Version | Min K8s Version | Max K8s Version |
|------------------------------------------|-----------------|-----------------|
| master branch | v1.20 | - |
| v0.1.x | v1.17 | - |
| v0.2.x | v1.20 | - |

### Examples

Expand Down
2 changes: 1 addition & 1 deletion cmd/scaleway-csi/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"os"

"github.com/scaleway/scaleway-csi/driver"
"k8s.io/klog"
"k8s.io/klog/v2"
)

var (
Expand Down
Loading

0 comments on commit fd4895f

Please sign in to comment.