Skip to content

Commit

Permalink
CSI: update kubernetes sidecar images
Browse files Browse the repository at this point in the history
update csi sidecar images to fix CVE-2019-11255

more info:
kubernetes/kubernetes#85233
kubernetes-csi/external-snapshotter#193
kubernetes-csi/external-provisioner#380

Signed-off-by: Madhu Rajanna <madhupr007@gmail.com>
  • Loading branch information
Madhu-1 committed Nov 19, 2019
1 parent 893b80e commit 49381b3
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions Documentation/ceph-upgrade.md
Expand Up @@ -290,9 +290,9 @@ below, which you should change to match where your images are located.
- name: ROOK_CSI_REGISTRAR_IMAGE
value: "quay.io/k8scsi/csi-node-driver-registrar:v1.1.0"
- name: ROOK_CSI_PROVISIONER_IMAGE
value: "quay.io/k8scsi/csi-provisioner:v1.3.0"
value: "quay.io/k8scsi/csi-provisioner:v1.4.0"
- name: ROOK_CSI_SNAPSHOTTER_IMAGE
value: "quay.io/k8scsi/csi-snapshotter:v1.2.0"
value: "quay.io/k8scsi/csi-snapshotter:v1.2.2"
- name: ROOK_CSI_ATTACHER_IMAGE
value: "quay.io/k8scsi/csi-attacher:v1.2.0"
```
Expand Down
4 changes: 2 additions & 2 deletions Documentation/helm-operator.md
Expand Up @@ -129,8 +129,8 @@ The following tables lists the configurable parameters of the rook-operator char
| `csi.kubeletDirPath` | Kubelet root directory path (if the Kubelet uses a different path for the `--root-dir` flag) | `/var/lib/kubelet` |
| `csi.cephcsi.image` | Ceph CSI image. | `quay.io/cephcsi/cephcsi:v1.2.1` |
| `csi.registrar.image` | Kubernetes CSI registrar image. | `quay.io/k8scsi/csi-node-driver-registrar:v1.1.0` |
| `csi.provisioner.image` | Kubernetes CSI provisioner image. | `quay.io/k8scsi/csi-provisioner:v1.3.0` |
| `csi.snapshotter.image` | Kubernetes CSI snapshotter image. | `quay.io/k8scsi/csi-snapshotter:v1.2.0` |
| `csi.provisioner.image` | Kubernetes CSI provisioner image. | `quay.io/k8scsi/csi-provisioner:v1.4.0` |
| `csi.snapshotter.image` | Kubernetes CSI snapshotter image. | `quay.io/k8scsi/csi-snapshotter:v1.2.2` |
| `csi.attacher.image` | Kubernetes CSI Attacher image. | `quay.io/k8scsi/csi-attacher:v1.2.0` |
| `agent.flexVolumeDirPath` | Path where the Rook agent discovers the flex volume plugins (*) | `/usr/libexec/kubernetes/kubelet-plugins/volume/exec/` |
| `agent.libModulesDirPath` | Path where the Rook agent should look for kernel modules (*) | `/lib/modules` |
Expand Down
4 changes: 2 additions & 2 deletions cluster/charts/rook-ceph/values.yaml
Expand Up @@ -78,9 +78,9 @@ csi:
#registrar:
#image: quay.io/k8scsi/csi-node-driver-registrar:v1.1.0
#provisioner:
#image: quay.io/k8scsi/csi-provisioner:v1.3.0
#image: quay.io/k8scsi/csi-provisioner:v1.4.0
#snapshotter:
#image: quay.io/k8scsi/csi-snapshotter:v1.2.0
#image: quay.io/k8scsi/csi-snapshotter:v1.2.2
#attacher:
#image: quay.io/k8scsi/csi-attacher:v1.2.0

Expand Down
4 changes: 2 additions & 2 deletions cluster/examples/kubernetes/ceph/operator.yaml
Expand Up @@ -176,9 +176,9 @@ spec:
#- name: ROOK_CSI_REGISTRAR_IMAGE
# value: "quay.io/k8scsi/csi-node-driver-registrar:v1.1.0"
#- name: ROOK_CSI_PROVISIONER_IMAGE
# value: "quay.io/k8scsi/csi-provisioner:v1.3.0"
# value: "quay.io/k8scsi/csi-provisioner:v1.4.0"
#- name: ROOK_CSI_SNAPSHOTTER_IMAGE
# value: "quay.io/k8scsi/csi-snapshotter:v1.2.0"
# value: "quay.io/k8scsi/csi-snapshotter:v1.2.2"
#- name: ROOK_CSI_ATTACHER_IMAGE
# value: "quay.io/k8scsi/csi-attacher:v1.2.0"
# kubelet directory path, if kubelet configured to use other than /var/lib/kubelet path.
Expand Down
4 changes: 2 additions & 2 deletions pkg/operator/ceph/csi/spec.go
Expand Up @@ -85,9 +85,9 @@ var (
// image names
DefaultCSIPluginImage = "quay.io/cephcsi/cephcsi:v1.2.1"
DefaultRegistrarImage = "quay.io/k8scsi/csi-node-driver-registrar:v1.1.0"
DefaultProvisionerImage = "quay.io/k8scsi/csi-provisioner:v1.3.0"
DefaultProvisionerImage = "quay.io/k8scsi/csi-provisioner:v1.4.0"
DefaultAttacherImage = "quay.io/k8scsi/csi-attacher:v1.2.0"
DefaultSnapshotterImage = "quay.io/k8scsi/csi-snapshotter:v1.2.0"
DefaultSnapshotterImage = "quay.io/k8scsi/csi-snapshotter:v1.2.2"
)

const (
Expand Down

0 comments on commit 49381b3

Please sign in to comment.