Skip to content

Commit

Permalink
Merge pull request #648 from saad-ali/release-1.1
Browse files Browse the repository at this point in the history
Cherrypick #644, #647, #652 from `master` to `release-1.1`
  • Loading branch information
k8s-ci-robot authored Oct 31, 2020
2 parents 4ac49d4 + 634236b commit d0d7f59
Show file tree
Hide file tree
Showing 4 changed files with 54 additions and 4 deletions.
47 changes: 47 additions & 0 deletions CHANGELOG/CHANGELOG-1.1.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
# v1.1.0 - Changelog since v1.0.0

## Changes by Kind

## Feature

- Improved Windows Support
- Update driver to use CSI proxy beta for Windows ([#607](https://github.com/kubernetes-sigs/gcp-compute-persistent-disk-csi-driver/pull/607), [@jingxu97](https://github.com/jingxu97))
- Add volume expansion support for Windows in GCE PD CSI driver ([#637](https://github.com/kubernetes-sigs/gcp-compute-persistent-disk-csi-driver/pull/637), [@jingxu97](https://github.com/jingxu97))
- Add defensive check for Windows. GCE PD CSI driver only support ntfs for Windows. If other fstype is passed, return error. ([#641](https://github.com/kubernetes-sigs/gcp-compute-persistent-disk-csi-driver/pull/641), [@jingxu97](https://github.com/jingxu97))
- Modify NodeUnstageVolume call for Windows to use csi_proxy dismount call. With CSI proxy v0.2.2+, this will also result in flush of data cache before mount point removal. ([#633](https://github.com/kubernetes-sigs/gcp-compute-persistent-disk-csi-driver/pull/633), [@jingxu97](https://github.com/jingxu97))
- Add VolumeStats for Windows ([#627](https://github.com/kubernetes-sigs/gcp-compute-persistent-disk-csi-driver/pull/627), [@jingxu97](https://github.com/jingxu97))

## Bug or Regression

- Add PSP for the controller Deployment ([#623](https://github.com/kubernetes-sigs/gcp-compute-persistent-disk-csi-driver/pull/623), [@george-angel](https://github.com/george-angel))
- Update GCE PD CSI Driver Docker base image to `k8s.gcr.io/build-image/debian-base-amd64:v2.1.3` (previously `gcr.io/google-containers/debian-base-amd64:v2.0.0`) to address CVEs. ([#596](https://github.com/kubernetes-sigs/gcp-compute-persistent-disk-csi-driver/pull/596), [@saad-ali](https://github.com/saad-ali))
- Also cherry picked to 1.0.1.

## Tests

- PD CSI e2e test infra should take GKE node version as an optional input argument. ([#603](https://github.com/kubernetes-sigs/gcp-compute-persistent-disk-csi-driver/pull/603), [@saikat-royc](https://github.com/saikat-royc))
- Collect managed pd csi driver logs from node ([#619](https://github.com/kubernetes-sigs/gcp-compute-persistent-disk-csi-driver/pull/619), [@saikat-royc](https://github.com/saikat-royc))
- Enable dump GKE node logs ([#635](https://github.com/kubernetes-sigs/gcp-compute-persistent-disk-csi-driver/pull/635), [@saikat-royc](https://github.com/saikat-royc))
- Enable volume expansion test for GKE managed driver ([#584](https://github.com/kubernetes-sigs/gcp-compute-persistent-disk-csi-driver/pull/584), [@saikat-royc](https://github.com/saikat-royc))
- Provide a knob to run intree and csi plugin tests ([#629](https://github.com/kubernetes-sigs/gcp-compute-persistent-disk-csi-driver/pull/629), [@saikat-royc](https://github.com/saikat-royc))
- Fix CI script focus string ([#630](https://github.com/kubernetes-sigs/gcp-compute-persistent-disk-csi-driver/pull/630), [@saikat-royc](https://github.com/saikat-royc))
- Build only linux container image for tests on Linux ([#636](https://github.com/kubernetes-sigs/gcp-compute-persistent-disk-csi-driver/pull/636), [@jingxu97](https://github.com/jingxu97))

## Dependencies

### Added
- google.golang.org/protobuf: v1.25.0

### Changed
- github.com/golang/protobuf: [v1.3.4 → v1.4.1](https://github.com/golang/protobuf/compare/v1.3.4...v1.4.1)
- github.com/google/go-cmp: [v0.3.1 → v0.5.0](https://github.com/google/go-cmp/compare/v0.3.1...v0.5.0)
- github.com/kubernetes-csi/csi-proxy/client: [9eff164 → v0.2.1](https://github.com/kubernetes-csi/csi-proxy/client/compare/9eff164...v0.2.1)
- golang.org/x/mod: c90efee → 4bf6d31
- golang.org/x/tools: 6862ede → 5eefd05
- golang.org/x/xerrors: 1b5146a → 9bdfabe
- google.golang.org/genproto: 6bbd007 → cb27e3a
- honnef.co/go/tools: v0.0.1-2020.1.3 → v0.0.1-2019.2.2
- mvdan.cc/xurls/v2: v2.1.0 → v2.0.0

### Removed
- golang.org/x/tools/gopls: v0.3.3
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,9 @@ that represents availability by zone (e.g. `us-central1-c`, etc.).
| Snapshots | Beta | 1.17 | Any | v1.0.0 | Stable |
| Resize (Expand) | Alpha | 1.14 | 1.14 | v0.6.0 | Alpha |
| Resize (Expand) | Beta | 1.16 | 1.16 | v0.7.0 | Stable |
| Windows* | Beta | 1.18 | 1.18 | v1.1.0 | Stable |

* For Windows, it is recommended to use this driver with CSI proxy v0.2.2+.

### Future Features

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ metadata:
imageTag:
name: gke.gcr.io/gcp-compute-persistent-disk-csi-driver
newName: gcr.io/gke-release-staging/gcp-compute-persistent-disk-csi-driver
newTag: "v1.0.1-gke.0"
newTag: "v1.1.0-rc1"
---

apiVersion: builtin
Expand Down
6 changes: 3 additions & 3 deletions deploy/kubernetes/install-kustomize.sh
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ pushd $tmpDir >& /dev/null

opsys=windows
if [[ "$OSTYPE" == linux* ]]; then
opsys=linux
opsys=linux_amd64
elif [[ "$OSTYPE" == darwin* ]]; then
opsys=darwin
fi
Expand All @@ -50,11 +50,11 @@ curl -s https://api.github.com/repos/kubernetes-sigs/kustomize/releases |\
grep browser_download |\
grep $opsys |\
cut -d '"' -f 4 |\
grep /kustomize/v3.8.0 |\
grep /kustomize/v3.8.6 |\
sort | tail -n 1 |\
xargs curl -s -O -L

tar xzf ./kustomize_v*_${opsys}_amd64.tar.gz
tar xzf ./kustomize_v*_${opsys}.tar.gz

cp ./kustomize $where

Expand Down

0 comments on commit d0d7f59

Please sign in to comment.