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

Fixed Patchset 1 comments
Change-Id: I90612391ea4c29332bc017f5f993663e36287bac
Signed-off-by: Juanita Balaraj <juanita.balaraj@windriver.com>
This commit is contained in:
Juanita Balaraj 2024-10-29 07:46:29 +00:00
parent 391e222c6e
commit 148fb654bc

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 To set or override a kubelet option, add the desired parameters to a
``kubelet_configurations`` section in the ``localhost.yml``. ``kubelet_configurations`` section in the ``localhost.yml``.
Example usage: Example usage:
.. code-block:: .. code-block::
@ -272,25 +271,25 @@ The expected structure for existing field types are:
- No structure defined, quotes may or may not be used. - No structure defined, quotes may or may not be used.
- Ex.: ``cgroupDriver=cgroupfs`` or ``cgroupDriver="cgroupfs"`` - Example: ``cgroupDriver=cgroupfs`` or ``cgroupDriver="cgroupfs"``
- int32,int64: - int32,int64:
- No structure defined, quotes may or may not be used. - 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``): - Array of strings (``[]string``):
- JSON-like format: ``'["string1","string2","stringN"]'`` - JSON-like format: ``'["string1","string2","stringN"]'``
- Ex.: ``clusterDNS='["10.96.0.10"]'`` - Example: ``clusterDNS='["10.96.0.10"]'``
- ``map[string]string``: json format. - ``map[string]string``: json format.
- JSON-like format: ``'{"key_string1":"string1","key_string2":"string2","key_stringN":"stringN"}'`` - 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: Example usage:
@ -491,11 +490,11 @@ Valid input formats:
- Pairs of strings separated by commas: - 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: - 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: Example usage with two linked configuration files: