File tree Expand file tree Collapse file tree 5 files changed +25
-16
lines changed Expand file tree Collapse file tree 5 files changed +25
-16
lines changed Original file line number Diff line number Diff line change @@ -121,7 +121,11 @@ The following table lists the configurable parameters of the latest Azure Blob S
121
121
| ` node.metricsPort ` | metrics port of csi-blob-node | ` 29635 ` |
122
122
| ` node.livenessProbe.healthPort ` | health check port for liveness probe | ` 29633 ` |
123
123
| ` node.logLevel ` | node driver log level | ` 5 ` |
124
- | ` node.enableBlobfuseProxy ` | node enable blobfuse-proxy | ` false ` |
124
+ | ` node.enableBlobfuseProxy ` | enable blobfuse-proxy on agent node | ` false ` |
125
+ | ` node.blobfuseProxy.installBlobfuse ` | whether install blobfuse on agent node| ` true ` |
126
+ | ` node.blobfuseProxy.blobfuseVersion ` | installed blobfuse version on agent node| ` 1.4.1 ` |
127
+ | ` node.blobfuseProxy.setMaxOpenFileNum ` | whether set max open file num on agent node| ` true ` |
128
+ | ` node.blobfuseProxy.maxOpenFileNum ` | max open file num on agent node| ` 9000000 ` |
125
129
| ` node.blobfuseCachePath ` | blobfuse cache path(` tmp-path ` ) | ` /mnt ` |
126
130
| ` node.resources.livenessProbe.limits.cpu ` | liveness-probe cpu limits | 100m |
127
131
| ` node.resources.livenessProbe.limits.memory ` | liveness-probe memory limits | 100Mi |
Original file line number Diff line number Diff line change @@ -77,16 +77,16 @@ spec:
77
77
imagePullPolicy : IfNotPresent
78
78
name : sysctl-install-blobfuse-proxy
79
79
env :
80
- - name : " DEBIAN_FRONTEND"
80
+ - name : DEBIAN_FRONTEND
81
81
value : " noninteractive"
82
- - name : " INSTALL_BLOBFUSE"
83
- value : " true "
84
- - name : " BLOBFUSE_VERSION"
85
- value : " 1.4.1 "
86
- - name : " SET_MAX_OPEN_FILE_NUM"
87
- value : " true "
88
- - name : " MAX_FILE_NUM"
89
- value : " 9000000 "
82
+ - name : INSTALL_BLOBFUSE
83
+ value : " {{ .Values.node.blobfuseProxy.installBlobfuse }} "
84
+ - name : BLOBFUSE_VERSION
85
+ value : " {{ .Values.node.blobfuseProxy.blobfuseVersion }} "
86
+ - name : SET_MAX_OPEN_FILE_NUM
87
+ value : " {{ .Values.node.blobfuseProxy.setMaxOpenFileNum }} "
88
+ - name : MAX_FILE_NUM
89
+ value : " {{ .Values.node.blobfuseProxy.maxOpenFileNum }} "
90
90
resources :
91
91
limits :
92
92
cpu : 200m
Original file line number Diff line number Diff line change 95
95
healthPort : 29633
96
96
logLevel : 5
97
97
enableBlobfuseProxy : false
98
+ blobfuseProxy :
99
+ installBlobfuse : true
100
+ blobfuseVersion : 1.4.1
101
+ setMaxOpenFileNum : true
102
+ maxOpenFileNum : " 9000000"
98
103
blobfuseCachePath : /mnt
99
104
resources :
100
105
livenessProbe :
Original file line number Diff line number Diff line change @@ -69,15 +69,15 @@ spec:
69
69
imagePullPolicy : IfNotPresent
70
70
name : sysctl-install-blobfuse-proxy
71
71
env :
72
- - name : " DEBIAN_FRONTEND"
72
+ - name : DEBIAN_FRONTEND
73
73
value : " noninteractive"
74
- - name : " INSTALL_BLOBFUSE"
74
+ - name : INSTALL_BLOBFUSE
75
75
value : " true"
76
- - name : " BLOBFUSE_VERSION"
77
- value : " 1.4.1"
78
- - name : " SET_MAX_OPEN_FILE_NUM"
76
+ - name : BLOBFUSE_VERSION
77
+ value : 1.4.1
78
+ - name : SET_MAX_OPEN_FILE_NUM
79
79
value : " true"
80
- - name : " MAX_FILE_NUM"
80
+ - name : MAX_FILE_NUM
81
81
value : " 9000000"
82
82
resources :
83
83
limits :
You can’t perform that action at this time.
0 commit comments