Merge "Fixed Typo in kubelet configurations (dsr8MR2, dsr8MR3, r9)"

This commit is contained in:
Zuul 2024-11-06 14:34:48 +00:00 committed by Gerrit Code Review
commit 3c2cd8913c

View File

@ -251,7 +251,6 @@ For a list of all configurable options, see `Kubelet Configuration (v1beta1)
To set or override a kubelet option, add the desired parameters to a
``kubelet_configurations`` section in the ``localhost.yml``.
Example usage:
.. code-block::
@ -272,25 +271,25 @@ The expected structure for existing field types are:
- No structure defined, quotes may or may not be used.
- Ex.: ``cgroupDriver=cgroupfs`` or ``cgroupDriver="cgroupfs"``
- Example: ``cgroupDriver=cgroupfs`` or ``cgroupDriver="cgroupfs"``
- int32,int64:
- No structure defined, quotes may or may not be used.
- Ex.: ``imageGCLowThresholdPercent=70`` or ``imageGCLowThresholdPercent="70"``
- Example: ``imageGCLowThresholdPercent=70`` or ``imageGCLowThresholdPercent="70"``
- Array of strings (``[]string``):
- JSON-like format: ``'["string1","string2","stringN"]'``
- Ex.: ``clusterDNS='["10.96.0.10"]'``
- Example: ``clusterDNS='["10.96.0.10"]'``
- ``map[string]string``: json format.
- JSON-like format: ``'{"key_string1":"string1","key_string2":"string2","key_stringN":"stringN"}'``
- Ex: ``evictionHard='{"memory.available":"100Mi", "nodefs.available": "10%","nodefs.inodesFree": "6%", "imagefs.available": "2Gi"}'``
- Example: ``evictionHard='{"memory.available": "100Mi", "nodefs.available": "10%","nodefs.inodesFree": "6%", "imagefs.available": "2Gi"}'``
Example usage:
@ -491,11 +490,11 @@ Valid input formats:
- Pairs of strings separated by commas:
- Ex.: ``audit-log-dir=hostPath:/var/log/kubernetes/audit,readOnly:false,pathType:DirectoryOrCreate``
- Example: ``audit-log-dir=hostPath:/var/log/kubernetes/audit,readOnly:false,pathType:DirectoryOrCreate``
- JSON format:
- Ex.: ``encryption-config='{"name": "encryption-config", "hostPath": "/etc/kubernetes/encryption-provider.yaml", "mountPath": "/etc/kubernetes/encryption-provider.yaml", "readOnly": true, "pathType":"File"}'``
- Example: ``encryption-config='{"name": "encryption-config", "hostPath": "/etc/kubernetes/encryption-provider.yaml", "mountPath": "/etc/kubernetes/encryption-provider.yaml", "readOnly": true, "pathType":"File"}'``
Example usage with two linked configuration files: