Skip to content

Commit 5d6a25b

Browse files
Add max-grpc-log-length to kustomization
1 parent d4208d0 commit 5d6a25b

File tree

4 files changed

+23
-0
lines changed

4 files changed

+23
-0
lines changed

deploy/kubernetes/base/controller/kustomization.yaml

+1
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+
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

+12
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
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)