Skip to content

Commit

Permalink
release for v0.0.4
Browse files Browse the repository at this point in the history
  • Loading branch information
ddymko committed Nov 12, 2020
1 parent b61aefc commit 2cdc9f9
Show file tree
Hide file tree
Showing 4 changed files with 432 additions and 10 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# Change Log

## [v0.0.4](https://github.com/vultr/vultr-csi) (2020-11-12)
### Bug Fixes
* default socket location had wrong path [31](https://github.com/vultr/vultr-csi/pull/31)

### Enhancements
* Cleaned up naming on kubernetes resources to be more uniformed [31](https://github.com/vultr/vultr-csi/pull/31)

### Docker Image
[CSI Container v0.0.4](https://hub.docker.com/r/vultr/vultr-csi/tags)


## [v0.0.3](https://github.com/vultr/vultr-csi) (2020-04-29)
### Dependecies
* quay.io/k8scsi/csi-attacher v1.0.0 -> v2.2.0[#29](https://github.com/vultr/vultr-csi/pull/29)
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,8 @@ The deployment will create a [Storage Class](https://kubernetes.io/docs/concepts
```sh
$ kubectl get storageclass
NAME PROVISIONER RECLAIMPOLICY VOLUMEBINDINGMODE ALLOWVOLUMEEXPANSION AGE
vultr-block-storage (default) vultrbs.csi.driver.com Delete Immediate false 131m
vultr-block-storage-retain vultrbs.csi.driver.com Retain Immediate false 131m
vultr-block-storage (default) block.csi.vultr.com Delete Immediate false 131m
vultr-block-storage-retain block.csi.vultr.com Retain Immediate false 131m
```

To further validate the CSI, create a [PersistentVolumeClaim](https://kubernetes.io/docs/concepts/storage/persistent-volumes/)
Expand Down
16 changes: 8 additions & 8 deletions docs/releases/latest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
apiVersion: storage.k8s.io/v1beta1
kind: CSIDriver
metadata:
name: vultrbs.csi.driver.com
name: block.csi.vultr.com
spec:
attachRequired: true
podInfoOnMount: true
Expand All @@ -17,15 +17,15 @@ metadata:
namespace: kube-system
annotations:
storageclass.kubernetes.io/is-default-class: "true"
provisioner: vultrbs.csi.driver.com
provisioner: block.csi.vultr.com

---
kind: StorageClass
apiVersion: storage.k8s.io/v1
metadata:
name: vultr-block-storage-retain
namespace: kube-system
provisioner: vultrbs.csi.driver.com
provisioner: block.csi.vultr.com
reclaimPolicy: Retain

#########
Expand Down Expand Up @@ -168,7 +168,7 @@ spec:
- name: socket-dir
mountPath: /var/lib/csi/sockets/pluginproxy/
- name: vultr-csi-plugin
image: vultr/vultr-csi:v0.0.3
image: vultr/vultr-csi:v0.0.4
args :
- "--endpoint=$(CSI_ENDPOINT)"
- "--token=$(VULTR_API_KEY)"
Expand Down Expand Up @@ -309,7 +309,7 @@ spec:
- name: ADDRESS
value: /csi/csi.sock
- name: DRIVER_REG_SOCK_PATH
value: /var/lib/kubelet/plugins/vultrbs.csi.driver.com/csi.sock
value: /var/lib/kubelet/plugins/block.csi.vultr.com/csi.sock
- name: KUBE_NODE_NAME
valueFrom:
fieldRef:
Expand All @@ -320,7 +320,7 @@ spec:
- name: registration-dir
mountPath: /registration/
- name: csi-vultr-plugin
image: vultr/vultr-csi:v0.0.3
image: vultr/vultr-csi:v0.0.4
args :
- "--endpoint=$(CSI_ENDPOINT)"
env:
Expand Down Expand Up @@ -351,7 +351,7 @@ spec:
type: Directory
- name: plugin-dir
hostPath:
path: /var/lib/kubelet/plugins/vultrbs.csi.driver.com
path: /var/lib/kubelet/plugins/block.csi.vultr.com
type: DirectoryOrCreate
- name: pods-mount-dir
hostPath:
Expand Down Expand Up @@ -408,4 +408,4 @@ metadata:
rules:
- apiGroups: [""]
resources: ["events"]
verbs: ["get", "list", "watch", "create", "update", "patch"]
verbs: ["get", "list", "watch", "create", "update", "patch"]
Loading

0 comments on commit 2cdc9f9

Please sign in to comment.