Merge pull request #411 from andyzhangx/upgrade-csi-provisioner-v3.1.0
feat: upgrade to csi-provisioner v3.1.0
This commit is contained in:
commit
d890a30915
|
|
@ -12,5 +12,5 @@ jobs:
|
|||
- name: Run linter
|
||||
uses: golangci/golangci-lint-action@v2
|
||||
with:
|
||||
version: v1.31
|
||||
args: -E=gofmt,deadcode,unused,varcheck,ineffassign,golint,misspell --timeout=30m0s
|
||||
version: v1.43
|
||||
args: -E=gofmt,deadcode,unused,varcheck,ineffassign,revive,misspell,exportloopref,asciicheck,bodyclose,contextcheck --timeout=30m0s
|
||||
|
|
|
|||
|
|
@ -10,7 +10,7 @@ This driver allows Kubernetes to access [SMB](https://wiki.wireshark.org/SMB) se
|
|||
### Container Images & Kubernetes Compatibility:
|
||||
|Driver Version | supported k8s version | supported [Windows csi-proxy](https://github.com/kubernetes-csi/csi-proxy) version |
|
||||
|---------------|-----------------------|-------------------------------------|
|
||||
|master branch | 1.19+ | v0.2.2+ |
|
||||
|master branch | 1.20+ | v0.2.2+ |
|
||||
|v1.5.0 | 1.19+ | v0.2.2+ |
|
||||
|v1.4.0 | 1.19+ | v0.2.2+ |
|
||||
|v1.3.0 | 1.18+ | v0.2.2+ |
|
||||
|
|
|
|||
|
|
@ -43,7 +43,7 @@ The following table lists the configurable parameters of the latest SMB CSI Driv
|
|||
| `image.smb.tag` | csi-driver-smb docker image tag | `latest` |
|
||||
| `image.smb.pullPolicy` | csi-driver-smb image pull policy | `IfNotPresent` |
|
||||
| `image.csiProvisioner.repository` | csi-provisioner docker image | `k8s.gcr.io/sig-storage/csi-provisioner` |
|
||||
| `image.csiProvisioner.tag` | csi-provisioner docker image tag | `v2.2.0` |
|
||||
| `image.csiProvisioner.tag` | csi-provisioner docker image tag | `v3.1.0` |
|
||||
| `image.csiProvisioner.pullPolicy` | csi-provisioner image pull policy | `IfNotPresent` |
|
||||
| `image.livenessProbe.repository` | liveness-probe docker image | `k8s.gcr.io/sig-storage/livenessprobe` |
|
||||
| `image.livenessProbe.tag` | liveness-probe docker image tag | `v2.5.0` |
|
||||
|
|
|
|||
Binary file not shown.
|
|
@ -6,7 +6,7 @@ image:
|
|||
pullPolicy: IfNotPresent
|
||||
csiProvisioner:
|
||||
repository: k8s.gcr.io/sig-storage/csi-provisioner
|
||||
tag: v2.2.2
|
||||
tag: v3.1.0
|
||||
pullPolicy: IfNotPresent
|
||||
livenessProbe:
|
||||
repository: k8s.gcr.io/sig-storage/livenessprobe
|
||||
|
|
|
|||
|
|
@ -28,7 +28,7 @@ spec:
|
|||
effect: "NoSchedule"
|
||||
containers:
|
||||
- name: csi-provisioner
|
||||
image: k8s.gcr.io/sig-storage/csi-provisioner:v2.2.2
|
||||
image: k8s.gcr.io/sig-storage/csi-provisioner:v3.1.0
|
||||
args:
|
||||
- "-v=2"
|
||||
- "--csi-address=$(ADDRESS)"
|
||||
|
|
|
|||
Loading…
Reference in New Issue