Skip to content

Commit

Permalink
Release v0.6.0 #minor
Browse files Browse the repository at this point in the history
  • Loading branch information
ddymko authored Apr 15, 2022
1 parent 2dc5269 commit 6f72509
Show file tree
Hide file tree
Showing 3 changed files with 390 additions and 4 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,16 @@
# Change Log

## [v0.6.0](https://github.com/vultr/vultr-csi) (2022-04-15)
### Enhancements
* Added support for multi-block [71](https://github.com/vultr/vultr-csi/pull/71)

### Dependencies
* GoVultr bump to v2.15.1 [71](https://github.com/vultr/vultr-csi/pull/71)

### Documentation
* Nomad documentation [66](https://github.com/vultr/vultr-csi/pull/66)
* Block Types information [71](https://github.com/vultr/vultr-csi/pull/71)

## [v0.5.0](https://github.com/vultr/vultr-csi) (2022-03-11)
### Dependencies
* Bump google.golang.org/grpc from 1.40.0 to 1.44.0 [58](https://github.com/vultr/vultr-csi/pull/58)
Expand Down
31 changes: 27 additions & 4 deletions docs/releases/latest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ apiVersion: storage.k8s.io/v1
metadata:
name: vultr-block-storage
namespace: kube-system
annotations:
storageclass.kubernetes.io/is-default-class: "true"
provisioner: block.csi.vultr.com
parameters:
block_type: high_perf

---
kind: StorageClass
Expand All @@ -27,6 +27,29 @@ metadata:
namespace: kube-system
provisioner: block.csi.vultr.com
reclaimPolicy: Retain
parameters:
block_type: high_perf

---
kind: StorageClass
apiVersion: storage.k8s.io/v1
metadata:
name: vultr-block-storage-hdd
namespace: kube-system
provisioner: block.csi.vultr.com
parameters:
block_type: storage_opt

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

###################
### CSI Controller
Expand Down Expand Up @@ -79,7 +102,7 @@ spec:
- name: socket-dir
mountPath: /var/lib/csi/sockets/pluginproxy/
- name: csi-vultr-plugin
image: vultr/vultr-csi:v0.5.0
image: vultr/vultr-csi:v0.6.0
args:
- "--endpoint=$(CSI_ENDPOINT)"
- "--token=$(VULTR_API_KEY)"
Expand Down Expand Up @@ -237,7 +260,7 @@ spec:
- name: registration-dir
mountPath: /registration/
- name: csi-vultr-plugin
image: vultr/vultr-csi:v0.5.0
image: vultr/vultr-csi:v0.6.0
args:
- "--endpoint=$(CSI_ENDPOINT)"
env:
Expand Down
Loading

0 comments on commit 6f72509

Please sign in to comment.