mirror of
https://github.com/ceph/ceph-csi.git
synced 2024-11-27 08:40:23 +00:00
Merge pull request #16 from sbezverk/v0.1.0_tag
Changing tags from latest to v0.1.0 for branch v0.1.0
This commit is contained in:
commit
ff73d28532
4
Makefile
4
Makefile
@ -14,8 +14,8 @@
|
|||||||
|
|
||||||
.PHONY: all rbdplugin
|
.PHONY: all rbdplugin
|
||||||
|
|
||||||
IMAGE_NAME=csi_images/rbdplugin
|
IMAGE_NAME=quay.io/k8scsi/rbdplugin
|
||||||
IMAGE_VERSION=latest
|
IMAGE_VERSION=v0.1.0
|
||||||
|
|
||||||
all: rbdplugin
|
all: rbdplugin
|
||||||
|
|
||||||
|
@ -26,6 +26,11 @@ workloads.
|
|||||||
|
|
||||||
### Feature Status
|
### Feature Status
|
||||||
|
|
||||||
|
### CSI Spec version
|
||||||
|
v0.1.0 branch of ceph-csi repo correpsonds to version 0.1.0 of CSI spec, in order for a plugin
|
||||||
|
to operate sucessfully, other components: external-attacher, external-provisioner and driver-registrar must
|
||||||
|
be built for the same CSI spec version.
|
||||||
|
|
||||||
### 1.9: Alpha
|
### 1.9: Alpha
|
||||||
|
|
||||||
**Important:** `CSIPersistentVolume` and `MountPropagation`
|
**Important:** `CSIPersistentVolume` and `MountPropagation`
|
||||||
@ -52,7 +57,7 @@ $ docker images | grep rbdplugin
|
|||||||
```
|
```
|
||||||
You should see the following line in the output:
|
You should see the following line in the output:
|
||||||
```
|
```
|
||||||
csi_images/rbdplugin latest 248ddba297fa 30 seconds ago 431 MB
|
csi_images/rbdplugin v0.1.0 248ddba297fa 30 seconds ago 431 MB
|
||||||
```
|
```
|
||||||
|
|
||||||
### Testing
|
### Testing
|
||||||
|
@ -66,7 +66,7 @@ spec:
|
|||||||
serviceAccount: csi-attacher
|
serviceAccount: csi-attacher
|
||||||
containers:
|
containers:
|
||||||
- name: csi-attacher
|
- name: csi-attacher
|
||||||
image: docker.io/k8scsi/csi-attacher:latest
|
image: quay.io/k8scsi/csi-attacher:v0.1.0
|
||||||
args:
|
args:
|
||||||
- "--v=5"
|
- "--v=5"
|
||||||
- "--csi-address=$(ADDRESS)"
|
- "--csi-address=$(ADDRESS)"
|
||||||
|
@ -75,7 +75,7 @@ spec:
|
|||||||
serviceAccount: csi-provisioner
|
serviceAccount: csi-provisioner
|
||||||
containers:
|
containers:
|
||||||
- name: csi-provisioner
|
- name: csi-provisioner
|
||||||
image: quay.io/k8scsi/csi-provisioner:latest
|
image: quay.io/k8scsi/csi-provisioner:v0.1.0
|
||||||
args:
|
args:
|
||||||
- "--provisioner=rbdplugin"
|
- "--provisioner=rbdplugin"
|
||||||
- "--csi-address=$(ADDRESS)"
|
- "--csi-address=$(ADDRESS)"
|
||||||
|
@ -61,7 +61,7 @@ spec:
|
|||||||
hostNetwork: true
|
hostNetwork: true
|
||||||
containers:
|
containers:
|
||||||
- name: driver-registrar
|
- name: driver-registrar
|
||||||
image: docker.io/k8scsi/driver-registrar:latest
|
image: quay.io/k8scsi/driver-registrar:v0.1.0
|
||||||
args:
|
args:
|
||||||
- "--v=5"
|
- "--v=5"
|
||||||
- "--csi-address=$(ADDRESS)"
|
- "--csi-address=$(ADDRESS)"
|
||||||
@ -81,7 +81,7 @@ spec:
|
|||||||
capabilities:
|
capabilities:
|
||||||
add: ["SYS_ADMIN"]
|
add: ["SYS_ADMIN"]
|
||||||
allowPrivilegeEscalation: true
|
allowPrivilegeEscalation: true
|
||||||
image: csi_images/rbdplugin:latest
|
image: quay.io/k8scsi/rbdplugin:v0.1.0
|
||||||
args :
|
args :
|
||||||
- "--nodeid=$(NODE_ID)"
|
- "--nodeid=$(NODE_ID)"
|
||||||
- "--endpoint=$(CSI_ENDPOINT)"
|
- "--endpoint=$(CSI_ENDPOINT)"
|
||||||
|
Loading…
Reference in New Issue
Block a user