Skip to content

Commit ee6e798

Browse files
authored
Merge pull request #9261 from mburke5678/XFS-quota
XFS quota for emptyDir volumes
2 parents b3af866 + f5fb200 commit ee6e798

File tree

2 files changed

+38
-17
lines changed

2 files changed

+38
-17
lines changed

day_two_guide/topics/node_maintenance.adoc

+5-4
Original file line numberDiff line numberDiff line change
@@ -260,9 +260,10 @@ is lost. The location of the data in the *{rhocp}* node is located in
260260
be configured:
261261

262262
NOTE: If the XFS filesystem hosting that folder is mounted with the
263-
`gquota` option in the `/etc/fstab`
264-
* the matching security context contraint’s `fsGroup` type set to `MustRunAs`
265-
* The `/etc/origin/node/node-config.yml` is configured as:
263+
`grpquota` option in the `/etc/fstab` file:
264+
265+
* Set the matching security context contraint’s `fsGroup` type set to `MustRunAs`
266+
* xref:../install_config/master_node_configuration.adoc#node-config-volume-config[Configure the volume] using the node-config-compute configuration map in the openshift-node project.:
266267

267268
[subs=+quotes]
268269
----
@@ -335,4 +336,4 @@ allowed to be "disrupted".
335336
====
336337
`PodDisruptionBudget` objects cannot be edited. In the event of any changes then
337338
it is required to deploy a new `PodDisruptionBudget` object should be created.
338-
====
339+
====

install_config/master_node_configuration.adoc

+33-13
Original file line numberDiff line numberDiff line change
@@ -1078,14 +1078,11 @@ If -1, there is no limit on requests.
10781078
|`*DynamicProvisioningEnabled*`
10791079
|A boolean to enable or disable dynamic provisioning. Default is *true*.
10801080

1081-
|FSGroup
1082-
|Can be specified to enable a quota on local storage use per unique FSGroup ID.
1081+
|*FSGroup*
1082+
|Enables xref:node-config-volume-config[local storage quotas] on each node for each FSGroup.
10831083
At present this is only implemented for emptyDir volumes, and if the underlying
10841084
`*volumeDirectory*` is on an XFS filesystem.
10851085

1086-
|`*LocalQuota*`
1087-
|Contains options for controlling local volume quota on the node.
1088-
10891086
|`*MasterVolumeConfig*`
10901087
|Contains options for configuring volume plug-ins in the master node.
10911088

@@ -1343,9 +1340,6 @@ podManifestConfig: <2>
13431340
proxyArguments:
13441341
proxy-mode:
13451342
- iptables <5>
1346-
volumeConfig:
1347-
localQuota:
1348-
perFSGroup: null<6>
13491343
servingInfo:
13501344
bindAddress: 0.0.0.0:10250
13511345
bindNetwork: tcp4
@@ -1367,11 +1361,6 @@ manifest files. This is used by the Kubelet to create pods on the node.
13671361
data. The interval must be a positive value.
13681362
<5> The xref:../architecture/core_concepts/pods_and_services.adoc#service-proxy-mode[service
13691363
proxy implementation] to use.
1370-
<6> Preliminary support for local emptyDir volume quotas, set this value to a resource
1371-
quantity representing the desired quota per FSGroup, per node. (i.e. 1Gi, 512Mi, etc)
1372-
Currently requires that the *_volumeDirectory_* be on an XFS filesystem mounted
1373-
with the 'gquota' option, and the matching security context contraint's fsGroup
1374-
type set to 'MustRunAs'.
13751364
====
13761365

13771366
The node configuration file determines the resources of a node. See the
@@ -1431,6 +1420,37 @@ start on a machine that does not have docker started.
14311420

14321421
|===
14331422

1423+
[[node-config-volume-config]]
1424+
=== Local Storage Configuration
1425+
1426+
You can use the link:https://access.redhat.com/documentation/en-us/red_hat_enterprise_linux/7/html/storage_administration_guide/ch-xfs[XFS quota subsystem]
1427+
to limit the size of `emptyDir` volumes and volumes based on an `emptyDir` volume, such as secrets and configuration maps, on each node.
1428+
1429+
To limit the size of `emptyDir` volumes in an XFS filesystem, configure local volume quota for each unique
1430+
xref:../install_config/persistent_storage/pod_security_context.adoc#fsgroup[FSGroup] using the *_node-config-compute_* configuration map in the *openshift-node* project.
1431+
1432+
----
1433+
apiVersion: kubelet.config.openshift.io/v1
1434+
kind: VolumeConfig
1435+
localQuota: <1>
1436+
perFSGroup: 1Gi <2>
1437+
----
1438+
1439+
<1> Contains options for controlling local volume quota on the node.
1440+
<2> Set this value to a resource quantity representing the desired quota per
1441+
[FSGroup], per node, such as `1Gi`, `512Mi`, and so forth.
1442+
Requires the *volumeDirectory* to be on an XFS filesystem mounted with the `grpquota` option. The matching security context constraint *fsGroup* type must be
1443+
xref:../architecture/additional_concepts/authorization.adoc#authorization-FSGroup[set to `MustRunAs`].
1444+
1445+
If no FSGroup is specified, indicating the request matched an SCC with `RunAsAny`, the quota
1446+
application is skipped.
1447+
1448+
[NOTE]
1449+
====
1450+
Do not edit the *_/etc/origin/node/volume-config.yaml_* file directly. The file is created from the *_node-config-compute_* configuration map.
1451+
Use the *_node-config-compute_* configuration map to create or edit the paramaters in the *_volume-config.yaml_* file.
1452+
====
1453+
14341454
[[master-node-configuration-parallel-image-pulls-with-docker]]
14351455
=== Parallel Image Pulls with Docker 1.9+
14361456

0 commit comments

Comments
 (0)