From d0a4cf7564fca8f85d2fc4ed80189221da56bba0 Mon Sep 17 00:00:00 2001 From: Markus Lehtonen Date: Mon, 28 Nov 2022 18:07:17 +0200 Subject: [PATCH] docs: document helm chart params related to worker serviceaccount --- docs/deployment/helm.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/docs/deployment/helm.md b/docs/deployment/helm.md index 824f3c72bf..41a3d64bb7 100644 --- a/docs/deployment/helm.md +++ b/docs/deployment/helm.md @@ -132,6 +132,9 @@ We have introduced the following Chart parameters. | `worker.config` | dict | | NFD worker [configuration](../reference/worker-configuration-reference) | | `worker.podSecurityContext` | dict | {} | [PodSecurityContext](https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-pod) holds pod-level security attributes and common container settings | | `worker.securityContext` | dict | {} | Container [security settings](https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-container) | +| `worker.serviceAccount.create` | bool | true | Specifies whether a service account for nfd-worker should be created +| `worker.serviceAccount.annotations` | dict | {} | Annotations to add to the service account for nfd-worker +| `worker.serviceAccount.name` | string | | The name of the service account to use for nfd-worker. If not set and create is true, a name is generated using the fullname template (suffixed with `-worker`) | `worker.mountUsrSrc` | bool | false | Specifies whether to allow users to mount the hostpath /user/src. Does not work on systems without /usr/src AND a read-only /usr | | `worker.resources` | dict | {} | NFD worker pod [resources management](https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/) | | `worker.nodeSelector` | dict | {} | NFD worker pod [node selector](https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#nodeselector) |