Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Diff between v1.1.4 and original #2

Open
wants to merge 22 commits into
base: parent
Choose a base branch
from
Open
Changes from 1 commit
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
da13967
release v1.1.0
vdhanan Jun 3, 2021
f0011c9
Merge pull request #917 from vdhanan/release-1.1
k8s-ci-robot Jun 3, 2021
3a08218
Revert "Fix kustomize RBAC bindings to have namespace kube-system"
wongma7 Jun 22, 2021
737b067
Add fake test-e2e-external-eks make rule
wongma7 Jun 22, 2021
8546261
Merge pull request #948 from wongma7/revert-kustomize-changes
k8s-ci-robot Jun 22, 2021
8e3b578
update inFlight cache to avoid race condition on volume operation
AndyXiangLi Jun 9, 2021
2c6373b
Release v1.1.1 and chart v1.2.4
wongma7 Jul 1, 2021
83a49f1
Merge pull request #958 from wongma7/1.1.1
k8s-ci-robot Jul 7, 2021
7511324
Update base images: yum update al2, bump debian tag
wongma7 Jul 22, 2021
061fcd8
release 1.1.2
vdhanan Jul 23, 2021
d2c462c
Merge pull request #990 from vdhanan/release-1.1
k8s-ci-robot Jul 23, 2021
b104754
Release v1.1.3
wongma7 Jul 24, 2021
ab520ad
Merge pull request #991 from wongma7/113
wongma7 Jul 24, 2021
d011261
Added Mount Idempotency
nirmalaagash Aug 10, 2021
482d3bd
fixed:g-format error
nirmalaagash Aug 11, 2021
25fdec3
Added Mount Idempotency for block device
nirmalaagash Aug 18, 2021
76265af
go formatt error fixed using go v1.17
nirmalaagash Aug 25, 2021
d275c06
Merge pull request #1039 from ialidzhikov/automated-cherry-pick-of-#1…
k8s-ci-robot Sep 2, 2021
8187146
release v1.1.4
vdhanan Sep 2, 2021
ef6016a
Merge pull request #1042 from vdhanan/release-1.1
k8s-ci-robot Sep 3, 2021
7d42839
Increase prow timeout to 1h15m
wongma7 Sep 9, 2021
5510b07
Merge pull request #1049 from wongma7/prowtimeout
k8s-ci-robot Sep 9, 2021
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
release 1.1.2
vdhanan committed Jul 23, 2021
commit 061fcd8d9ba1dc75c2cb8c0fc3b72794cb3972c5
5 changes: 5 additions & 0 deletions CHANGELOG-0.x.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
# v1.1.2

## Notable changes
- Update base images: yum update al2, bump debian tag ([#986](https://github.com/kubernetes-sigs/aws-ebs-csi-driver/pull/986), [@wongma7](https://github.com/wongma7))

# v1.1.1

### Bug fixes
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -14,7 +14,7 @@

PKG=github.com/kubernetes-sigs/aws-ebs-csi-driver
IMAGE?=amazon/aws-ebs-csi-driver
VERSION=v1.1.1
VERSION=v1.1.2
VERSION_AMAZONLINUX=$(VERSION)-amazonlinux
GIT_COMMIT?=$(shell git rev-parse HEAD)
BUILD_DATE?=$(shell date -u +"%Y-%m-%dT%H:%M:%SZ")
2 changes: 1 addition & 1 deletion charts/aws-ebs-csi-driver/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
apiVersion: v1
appVersion: "1.1.1"
appVersion: "1.1.2"
name: aws-ebs-csi-driver
description: A Helm chart for AWS EBS CSI Driver
version: 1.2.4
2 changes: 1 addition & 1 deletion charts/aws-ebs-csi-driver/values.yaml
Original file line number Diff line number Diff line change
@@ -4,7 +4,7 @@

image:
repository: k8s.gcr.io/provider-aws/aws-ebs-csi-driver
tag: "v1.1.1"
tag: "v1.1.2"
pullPolicy: IfNotPresent

sidecars:
2 changes: 1 addition & 1 deletion deploy/kubernetes/base/controller.yaml
Original file line number Diff line number Diff line change
@@ -31,7 +31,7 @@ spec:
tolerationSeconds: 300
containers:
- name: ebs-plugin
image: k8s.gcr.io/provider-aws/aws-ebs-csi-driver:v1.1.1
image: k8s.gcr.io/provider-aws/aws-ebs-csi-driver:v1.1.2
imagePullPolicy: IfNotPresent
args:
# - {all,controller,node} # specify the driver mode
2 changes: 1 addition & 1 deletion deploy/kubernetes/base/node.yaml
Original file line number Diff line number Diff line change
@@ -42,7 +42,7 @@ spec:
- name: ebs-plugin
securityContext:
privileged: true
image: k8s.gcr.io/provider-aws/aws-ebs-csi-driver:v1.1.1
image: k8s.gcr.io/provider-aws/aws-ebs-csi-driver:v1.1.2
args:
- node
- --endpoint=$(CSI_ENDPOINT)
2 changes: 1 addition & 1 deletion deploy/kubernetes/overlays/stable/ecr/kustomization.yaml
Original file line number Diff line number Diff line change
@@ -5,7 +5,7 @@ bases:
images:
- name: k8s.gcr.io/provider-aws/aws-ebs-csi-driver
newName: 602401143452.dkr.ecr.us-west-2.amazonaws.com/eks/aws-ebs-csi-driver
newTag: v1.1.1
newTag: v1.1.2
- name: k8s.gcr.io/sig-storage/csi-provisioner
newName: public.ecr.aws/eks-distro/kubernetes-csi/external-provisioner
newTag: v2.1.1-eks-1-18-3
2 changes: 1 addition & 1 deletion deploy/kubernetes/overlays/stable/kustomization.yaml
Original file line number Diff line number Diff line change
@@ -4,7 +4,7 @@ bases:
- ../../base
images:
- name: k8s.gcr.io/provider-aws/aws-ebs-csi-driver
newTag: v1.1.1
newTag: v1.1.2
- name: k8s.gcr.io/sig-storage/csi-provisioner
newTag: v2.1.1
- name: k8s.gcr.io/sig-storage/csi-attacher
1 change: 1 addition & 0 deletions docs/README.md
Original file line number Diff line number Diff line change
@@ -96,6 +96,7 @@ Following sections are Kubernetes specific. If you are Kubernetes user, use foll
## Container Images:
|AWS EBS CSI Driver Version | Image |
|---------------------------|--------------------------------------------------|
|v1.1.2 |k8s.gcr.io/provider-aws/aws-ebs-csi-driver:v1.1.2 |
|v1.1.1 |k8s.gcr.io/provider-aws/aws-ebs-csi-driver:v1.1.1 |
|v1.1.0 |k8s.gcr.io/provider-aws/aws-ebs-csi-driver:v1.1.0 |
|v1.0.0 |k8s.gcr.io/provider-aws/aws-ebs-csi-driver:v1.0.0 |