Skip to content

Commit 066b0a2

Browse files
authored
Merge branch 'master' into update-registry
2 parents bb8c05c + c033268 commit 066b0a2

File tree

6 files changed

+32
-0
lines changed

6 files changed

+32
-0
lines changed

CHANGELOG/CHANGELOG-1.8.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@
66
### Other (Cleanup or Flake)
77

88
- Update to go 1.19.4 ([#1103](https://github.com/kubernetes-sigs/gcp-compute-persistent-disk-csi-driver/pull/1103), [@msau42](https://github.com/msau42))
9+
- limit grpc loging info to a configurable char limit ([#1111](https://github.com/kubernetes-sigs/gcp-compute-persistent-disk-csi-driver/pull/1111), [@leiyiz](https://github.com/leiyiz))
10+
- Upgrade klog v1 to v2 and fix error wrapping & separate user errors from internal errors ([#1115](https://github.com/kubernetes-sigs/gcp-compute-persistent-disk-csi-driver/pull/1115), [@sunnylovestiramisu](https://github.com/sunnylovestiramisu))
11+
- Add debugging log for the mapping of a PD name to /dev/* path ([#1115](https://github.com/kubernetes-sigs/gcp-compute-persistent-disk-csi-driver/pull/1115), [@sunnylovestiramisu](https://github.com/sunnylovestiramisu))
912

1013

1114
# v1.8.1 - Changelog since v1.8.0

CHANGELOG/CHANGELOG-1.9.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,12 @@
1313
### Bug or Regression
1414

1515
- Add udevadm binary in the container image. ([#1072](https://github.com/kubernetes-sigs/gcp-compute-persistent-disk-csi-driver/pull/1072), [@jenting](https://github.com/jenting))
16+
- Remove debug.PrintStack() ([#1135](https://github.com/kubernetes-sigs/gcp-compute-persistent-disk-csi-driver/pull/1135), [@sunnylovestiramisu](https://github.com/sunnylovestiramisu))
17+
18+
### Other (Cleanup or Flake)
19+
20+
- Improve logging for device path verification ([#1142](https://github.com/kubernetes-sigs/gcp-compute-persistent-disk-csi-driver/pull/1142), [@saikat-royc](https://github.com/saikat-royc))
21+
- Update csi-attacher to v4.2.0 ([#1144](https://github.com/kubernetes-sigs/gcp-compute-persistent-disk-csi-driver/pull/1144), [@sunnylovestiramisu](https://github.com/sunnylovestiramisu))
1622

1723
## Dependencies
1824

deploy/kubernetes/base/controller/kustomization.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,3 +6,4 @@ resources:
66
- cluster_setup.yaml
77
- controller.yaml
88
- v1_csidriver.yaml
9+
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# Set default-fstype for attacher sidecar.
2+
- op: add
3+
path: /spec/template/spec/containers/1/args/-
4+
value: "--default-fstype=ext4"
5+

deploy/kubernetes/overlays/prow-stable-sidecar-rc-master/kustomization.yaml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,17 @@ patchesJson6902:
1212
kind: Deployment
1313
name: csi-gce-pd-controller
1414
path: disk_labels.yaml
15+
- path: max-grpc-log-length.yaml
16+
target:
17+
group: apps
18+
kind: Deployment
19+
name: csi-gce-pd-controller
20+
version: v1
21+
- path: default-fstype.yaml
22+
target:
23+
group: apps
24+
kind: Deployment
25+
name: csi-gce-pd-controller
26+
version: v1
1527
transformers:
1628
- ../../images/prow-stable-sidecar-rc-master
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# Set max-grpc-log-length for attacher sidecar.
2+
- op: add
3+
path: /spec/template/spec/containers/1/args/-
4+
value: "--max-grpc-log-length=10000"
5+

0 commit comments

Comments
 (0)