This is an automated email from the ASF dual-hosted git repository.

ccondit pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/yunikorn-site.git


The following commit(s) were added to refs/heads/master by this push:
     new 613edb48f9 [YUNIKORN-1829] Document helm chart support for podLabels 
and podAnnotations (#319)
613edb48f9 is described below

commit 613edb48f9187827d06ce84af6f21067faf2fb99
Author: Jacob Salway <[email protected]>
AuthorDate: Thu Jun 22 11:11:51 2023 -0500

    [YUNIKORN-1829] Document helm chart support for podLabels and 
podAnnotations (#319)
    
    Closes: #319
    
    Signed-off-by: Craig Condit <[email protected]>
---
 docs/user_guide/service_config.md | 46 +++++++++++++++++++++++++++++++++++++++
 1 file changed, 46 insertions(+)

diff --git a/docs/user_guide/service_config.md 
b/docs/user_guide/service_config.md
index d698b4cd45..1727602b67 100644
--- a/docs/user_guide/service_config.md
+++ b/docs/user_guide/service_config.md
@@ -269,6 +269,52 @@ admissionController:
     - key: CriticalAddonsOnly
       operator: Exists
 ```
+#### podLabels
+Sets the labels for the YuniKorn scheduler pod.
+
+Default: `{}`
+
+Example:
+```yaml
+podLabels:
+  app.kubernetes.io/name: scheduler
+  app.kubernetes.io/part-of: yunikorn
+```
+#### admissionController.podLabels
+Sets the labels for the YuniKorn admission controller pod.
+
+Default: `{}`
+
+Example:
+```yaml
+admissionController:
+  podLabels:
+    app.kubernetes.io/name: admission-controller
+    app.kubernetes.io/part-of: yunikorn
+```
+#### podAnnotations
+Sets the annotations for the YuniKorn scheduler pod.
+
+Default: `{}`
+
+Example:
+```yaml
+podAnnotations:
+  prometheus.io/scrape: "true"
+  prometheus.io/path: /ws/v1/metrics
+  prometheus.io/port: 9080
+```
+#### admissionController.podAnnotations
+Sets the annotations for the YuniKorn admission controller pod.
+
+Default: `{}`
+
+Example:
+```yaml
+admissionController:
+  podAnnotations:
+    example.com/admission: "false"
+```
 ### Resource utilization
 The resources requested for YuniKorn pods can be customized as follows:
 ```yaml


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to