You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@yunikorn.apache.org by ch...@apache.org on 2024/03/30 08:45:50 UTC

(yunikorn-site) branch master updated: [YUNIKORN-2192] Adjust the instruction of create/update ConfigMap (#374)

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

chia7712 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 7745cde7f7 [YUNIKORN-2192] Adjust the instruction of create/update ConfigMap (#374)
7745cde7f7 is described below

commit 7745cde7f7e9edb40155a9efc5b39891082a5134
Author: targetoee <ta...@gmail.com>
AuthorDate: Sat Mar 30 16:45:09 2024 +0800

    [YUNIKORN-2192] Adjust the instruction of create/update ConfigMap (#374)
    
    Closes: #374
    
    Signed-off-by: Chia-Ping Tsai <ch...@gmail.com>
---
 docs/developer_guide/deployment.md | 9 +++------
 1 file changed, 3 insertions(+), 6 deletions(-)

diff --git a/docs/developer_guide/deployment.md b/docs/developer_guide/deployment.md
index 2a098e25d9..50ad30b3aa 100644
--- a/docs/developer_guide/deployment.md
+++ b/docs/developer_guide/deployment.md
@@ -60,18 +60,15 @@ This kubernetes environment can be either local or remote.
 ```
 curl -o yunikorn-configs.yaml https://raw.githubusercontent.com/apache/yunikorn-k8shim/master/deployments/scheduler/yunikorn-configs.yaml
 ```
-- modify the content of yunikorn-configs.yaml file as needed, and create ConfigMap in kubernetes:
+- modify the content of yunikorn-configs.yaml file as needed, and apply yunikorn-configs.yaml file in kubernetes:
 ```
-kubectl create configmap yunikorn-configs --from-file=yunikorn-configs.yaml
-```
-- Or update ConfigMap in kubernetes:
-```
-kubectl create configmap yunikorn-configs --from-file=yunikorn-configs.yaml -o yaml --dry-run=client | kubectl apply -f -
+kubectl apply -f yunikorn-configs.yaml
 ```
 - check if the ConfigMap was created/updated correctly:
 ```
 kubectl describe configmaps yunikorn-configs
 ```
+- for more configuration detail, see [Service Configuration](../user_guide/service_config.md).
 
 ## Deploy the Scheduler
 


---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@yunikorn.apache.org
For additional commands, e-mail: issues-help@yunikorn.apache.org