You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: content/zh/blog/_posts/2018-08-02-dynamically-expand-volume-csi.md
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,7 +8,7 @@ date: 2018-08-02
8
8
9
9
---
10
10
layout: blog
11
-
title: '使用CSI和Kubernetes实现卷的动态扩容'
11
+
title: '使用 CSI 和 Kubernetes 实现卷的动态扩容'
12
12
date: 2018-08-02
13
13
---
14
14
@@ -70,7 +70,7 @@ Currently, expanding volume is only available with those storage provisioners:
70
70
In order to enable this feature, we should set feature gate `ExpandPersistentVolumes` true and turn on the `PersistentVolumeClaimResize` admission plugin. Once `PersistentVolumeClaimResize` has been enabled, resizing will be allowed by a Storage Class whose `allowVolumeExpansion` field is set to true.
Unfortunately, dynamically expanding volume through the Container Storage Interface (CSI) and Kubernetes is unavailable, even though the underlying storage providers have this feature.
@@ -118,7 +118,7 @@ This diagram depicts a kind of high-level Kubernetes archetypes integrated with
118
118
* Red arrows present gRPC to call against Volume Driver
119
119
-->
120
120
121
-
*引入了三个新的外部组件以分离 Kubernetes 和存储提供程序逻辑
121
+
*引入了三个新的外部组件以解耦 Kubernetes 和存储提供程序逻辑
122
122
* 蓝色箭头表示针对 API 服务器进行调用的常规方法
123
123
* 红色箭头显示 gRPC 以针对 Volume Driver 进行调用
124
124
@@ -132,7 +132,7 @@ For more details, please visit: https://github.com/container-storage-interface/s
132
132
## Extend CSI and Kubernetes
133
133
-->
134
134
135
-
##扩展 CSI 和 Kubernetes
135
+
##扩展 CSI 和 Kubernetes
136
136
137
137
<!--
138
138
In order to enable the feature of expanding volume atop Kubernetes, we should extend several components including CSI specification, “in-tree” volume plugin, external-provisioner and external-attacher.
@@ -144,7 +144,7 @@ In order to enable the feature of expanding volume atop Kubernetes, we should ex
144
144
## Extend CSI spec
145
145
-->
146
146
147
-
##扩展CSI规范
147
+
##扩展CSI规范
148
148
149
149
<!--
150
150
The feature of expanding volume is still undefined in latest CSI 0.2.0. The new 3 RPCs, including `RequiresFSResize` and `ControllerResizeVolume` and `NodeResizeVolume`, should be introduced.
@@ -176,7 +176,7 @@ service Node {
176
176
## Extend “In-Tree” Volume Plugin
177
177
-->
178
178
179
-
##扩展 “In-Tree” 卷插件
179
+
##扩展 “In-Tree” 卷插件
180
180
181
181
<!--
182
182
In addition to the extend CSI specification, the `csiPlugin` interface within Kubernetes should also implement `expandablePlugin`. The `csiPlugin` interface will expand `PersistentVolumeClaim` representing for `ExpanderController`.
0 commit comments