Skip to content

Commit c2e8516

Browse files
author
Cheng Pan
authored
Merge pull request #543 from leakingtapan/release
update changelog and version
2 parents 0fc4cc5 + 4e7ce0a commit c2e8516

File tree

4 files changed

+7
-5
lines changed

4 files changed

+7
-5
lines changed

CHANGELOG-0.x.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
## Notable changes
33
### New features
44
* Allow volume attach limit overwrite via command line parameter ([#522](https://github.com/kubernetes-sigs/aws-ebs-csi-driver/pull/522), [@rfranzke](https://github.com/rfranzke))
5+
* Add tags that the in-tree volume plugin uses ([#530](https://github.com/kubernetes-sigs/aws-ebs-csi-driver/pull/530), [@jsafrane](https://github.com/jsafrane))
56

67
### Bug fixes
78
* Adding amd64 as nodeSelector to avoid arm64 archtectures (#471) ([#472](https://github.com/kubernetes-sigs/aws-ebs-csi-driver/pull/472), [@hugoprudente](https://github.com/hugoprudente))

Makefile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ LDFLAGS?="-X ${PKG}/pkg/driver.driverVersion=${VERSION} -X ${PKG}/pkg/driver.git
2121
GO111MODULE=on
2222
GOPROXY=direct
2323
GOPATH=$(shell go env GOPATH)
24+
GOOS=$(shell go env GOOS)
2425
GOBIN=$(shell pwd)/bin
2526

2627
.EXPORT_ALL_VARIABLES:
@@ -32,7 +33,7 @@ bin /tmp/helm /tmp/kubeval:
3233
@mkdir -p $@
3334

3435
bin/helm: | /tmp/helm bin
35-
@curl -o /tmp/helm/helm.tar.gz -sSL https://get.helm.sh/helm-v3.1.2-linux-amd64.tar.gz
36+
@curl -o /tmp/helm/helm.tar.gz -sSL https://get.helm.sh/helm-v3.1.2-${GOOS}-amd64.tar.gz
3637
@tar -zxf /tmp/helm/helm.tar.gz -C bin --strip-components=1
3738
@rm -rf /tmp/helm/*
3839

aws-ebs-csi-driver/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
apiVersion: v1
2-
appVersion: "0.5.0"
2+
appVersion: "0.6.0"
33
name: aws-ebs-csi-driver
44
description: A Helm chart for AWS EBS CSI Driver
5-
version: 0.4.0
5+
version: 0.5.0
66
kubeVersion: ">=1.13.0-0"
77
home: https://github.com/kubernetes-sigs/aws-ebs-csi-driver
88
sources:

deploy/kubernetes/overlays/stable/kustomization.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ bases:
44
- ../../base
55
images:
66
- name: amazon/aws-ebs-csi-driver
7-
newTag: v0.5.0
7+
newTag: v0.6.0
88
- name: quay.io/k8scsi/csi-provisioner
9-
newTag: v1.3.0
9+
newTag: v1.5.0
1010
- name: quay.io/k8scsi/csi-attacher
1111
newTag: v1.2.0
1212
- name: quay.io/k8scsi/livenessprobe

0 commit comments

Comments
 (0)