Skip to content

Commit d1b90fa

Browse files
Update storage-classes.md
1 parent eb986f7 commit d1b90fa

File tree

1 file changed

+7
-10
lines changed

1 file changed

+7
-10
lines changed

content/en/docs/concepts/storage/storage-classes.md

Lines changed: 7 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -32,13 +32,10 @@ Each StorageClass contains the fields `provisioner`, `parameters`, and
3232
`reclaimPolicy`, which are used when a PersistentVolume belonging to the
3333
class needs to be dynamically provisioned.
3434

35-
The name of a StorageClass object is significant, as it allows users to request a specific
36-
class for their storage needs. When administrators create StorageClass objects, they define
37-
not only the name but also other parameters, annotations, and labels to customize the behavior
38-
of the class according to different use cases. Unlike the initial statement, the objects' annotations,
39-
labels, and parameters can be updated after creation. For instance, administrators can modify the StorageClass
40-
by adding more storage pools through parameters to adapt to changing requirements and optimize resource allocation
41-
for various workloads. This flexibility allows for better management and utilization of storage resources in the Kubernetes environment.
35+
The name of a StorageClass object is significant, and is how users can
36+
request a particular class. Administrators set the name and other parameters
37+
of a class when first creating StorageClass objects, and the objects cannot
38+
be updated once they are created.
4239

4340
Administrators can specify a default StorageClass only for PVCs that don't
4441
request any particular class to bind to: see the
@@ -49,10 +46,10 @@ for details.
4946
apiVersion: storage.k8s.io/v1
5047
kind: StorageClass
5148
metadata:
52-
name: sc-name
53-
provisioner: example.com/storage
49+
name: standard
50+
provisioner: kubernetes.io/aws-ebs
5451
parameters:
55-
pools: pool1,pool2,pool3
52+
type: gp2
5653
reclaimPolicy: Retain
5754
allowVolumeExpansion: true
5855
mountOptions:

0 commit comments

Comments
 (0)