KassieZ commented on code in PR #1369:
URL: https://github.com/apache/doris-website/pull/1369#discussion_r1851220864


##########
docs/install/cluster-deployment/k8s-deploy/compute-storage-coupled/install-config-cluster.md:
##########
@@ -94,164 +94,166 @@ spec:
       cpu: 16
       memory: 32Gi
 ```
-Update the configuration to the [DorisCluster 
resource](install-quickstart.md#step-3-deploy-doris-cluster) that needs to be 
deployed.
+Update the configuration in the target [DorisCluster 
resource](install-quickstart.md#step-2-deploy-doris-cluster).
 
 :::tip Tip  
-The minimum resources required for FE and BE are 4c and 8Gi. This is the 
minimum required for startup. The normal testing needed resources are 8c and 
8Gi.  
+The minimum required resources for FE and BE to start are 4 CPUs and 8Gi of 
memory. For normal performance testing, it is recommended to configure  8 CPUs 
and 8Gi of memory.  
 :::
 
 ## Custom startup configuration
-Doris uses ConfigMap to decouple configuration files from services, in 
Kubernetes. By default, services use the default configurations in the image as 
startup parameter configurations.Customized the startup parameters into a 
specific ConfigMap according to the introductions in the [FE Configuration 
Document](../../../../admin-manual/config/fe-config.md) and the [BE 
Configuration Document](../../../../admin-manual/config/be-config.md),
-and deploy the customized ConfigMap to the namespace where the [DorisCluster 
resource](install-quickstart.md#step-3-deploy-doris-cluster) needs to be 
deployed.
+Doris uses ConfigMap to decouple configuration files from services, in 
Kubernetes. By default, services use the default configurations in the image as 
startup parameter configurations. To customize the startup parameters, create a 
specific ConfigMap following the instructions in the [FE Configuration 
Document](../../../../admin-manual/config/fe-config.md) and the [BE 
Configuration Document](../../../../admin-manual/config/be-config.md). Then 
deploy the customized ConfigMap to the namespace where the [DorisCluster 
resource](install-quickstart.md#step-2-deploy-doris-cluster) is to be deployed.
 
 ### Custom FE startup configuration
-1. Deploying ConfigMap  
-  The following defines a ConfigMap named fe-conf that can be used by Doris FE:
-  ```yaml
-  apiVersion: v1
-  kind: ConfigMap
-  metadata:
-    name: fe-conf
-    labels:
-      app.kubernetes.io/component: fe
-  data:
-    fe.conf: |
-      CUR_DATE=`date +%Y%m%d-%H%M%S`
-  
-      # the output dir of stderr and stdout
-      LOG_DIR = ${DORIS_HOME}/log
-  
-      JAVA_OPTS="-Djavax.security.auth.useSubjectCredsOnly=false -Xss4m 
-Xmx8192m -XX:+UseMembar -XX:SurvivorRatio=8 -XX:MaxTenuringThreshold=7 
-XX:+PrintGCDateStamps -XX:+PrintGCDetails -XX:+UseConcMarkSweepGC 
-XX:+UseParNewGC -XX:+CMSClassUnloadingEnabled -XX:-CMSParallelRemarkEnabled 
-XX:CMSInitiatingOccupancyFraction=80 -XX:SoftRefLRUPolicyMSPerMB=0 
-Xloggc:$DORIS_HOME/log/fe.gc.log.$CUR_DATE"
-  
-      # For jdk 9+, this JAVA_OPTS will be used as default JVM options
-      JAVA_OPTS_FOR_JDK_9="-Djavax.security.auth.useSubjectCredsOnly=false 
-Xss4m -Xmx8192m -XX:SurvivorRatio=8 -XX:MaxTenuringThreshold=7 
-XX:+CMSClassUnloadingEnabled -XX:-CMSParallelRemarkEnabled 
-XX:CMSInitiatingOccupancyFraction=80 -XX:SoftRefLRUPolicyMSPerMB=0 
-Xlog:gc*:$DORIS_HOME/log/fe.gc.log.$CUR_DATE:time"
-  
-      # INFO, WARN, ERROR, FATAL
-      sys_log_level = INFO
-  
-      # NORMAL, BRIEF, ASYNC
-      sys_log_mode = NORMAL
-  
-      # Default dirs to put jdbc drivers,default value is 
${DORIS_HOME}/jdbc_drivers
-      # jdbc_drivers_dir = ${DORIS_HOME}/jdbc_drivers
-  
-      http_port = 8030
-      rpc_port = 9020
-      query_port = 9030
-      edit_log_port = 9010
-      enable_fqdn_mode = true
-  ```
-  When using the ConfigMap to mount FE startup configuration, the key 
corresponding to the configuration must be `fe.conf`. Write the ConfigMap to a 
file and deploy it to the namespace where the DorisCluster resource is 
deployed, using the following command:
-  ```shell
-  kubectl -n ${namespace} apply -f ${feConfigMapFile}.yaml
-  ```
-  ${namespace} is the namespace to which the DorisCluster resource needs to be 
deployed, and ${feConfigMapFile} is the name of the configMap file used by FE.
+#### step 1:  Create and deploy the FE ConfigMap
+The following example defines a ConfigMap named fe-conf for use with Doris FE:
+```yaml
+apiVersion: v1
+kind: ConfigMap
+metadata:
+  name: fe-conf
+  labels:
+    app.kubernetes.io/component: fe
+data:
+  fe.conf: |
+    CUR_DATE=`date +%Y%m%d-%H%M%S`
+
+    # the output dir of stderr and stdout
+    LOG_DIR = ${DORIS_HOME}/log
+
+    JAVA_OPTS="-Djavax.security.auth.useSubjectCredsOnly=false -Xss4m 
-Xmx8192m -XX:+UseMembar -XX:SurvivorRatio=8 -XX:MaxTenuringThreshold=7 
-XX:+PrintGCDateStamps -XX:+PrintGCDetails -XX:+UseConcMarkSweepGC 
-XX:+UseParNewGC -XX:+CMSClassUnloadingEnabled -XX:-CMSParallelRemarkEnabled 
-XX:CMSInitiatingOccupancyFraction=80 -XX:SoftRefLRUPolicyMSPerMB=0 
-Xloggc:$DORIS_HOME/log/fe.gc.log.$CUR_DATE"
+
+    # For jdk 9+, this JAVA_OPTS will be used as default JVM options
+    JAVA_OPTS_FOR_JDK_9="-Djavax.security.auth.useSubjectCredsOnly=false 
-Xss4m -Xmx8192m -XX:SurvivorRatio=8 -XX:MaxTenuringThreshold=7 
-XX:+CMSClassUnloadingEnabled -XX:-CMSParallelRemarkEnabled 
-XX:CMSInitiatingOccupancyFraction=80 -XX:SoftRefLRUPolicyMSPerMB=0 
-Xlog:gc*:$DORIS_HOME/log/fe.gc.log.$CUR_DATE:time"
+
+    # INFO, WARN, ERROR, FATAL
+    sys_log_level = INFO
+
+    # NORMAL, BRIEF, ASYNC
+    sys_log_mode = NORMAL
+
+    # Default dirs to put jdbc drivers,default value is 
${DORIS_HOME}/jdbc_drivers
+    # jdbc_drivers_dir = ${DORIS_HOME}/jdbc_drivers
+
+    http_port = 8030
+    rpc_port = 9020
+    query_port = 9030
+    edit_log_port = 9010
+    enable_fqdn_mode = true
+```
+When using the ConfigMap to mount FE startup configuration, the key 
corresponding to the configuration must be `fe.conf`. Write the ConfigMap to a 
file and deploy it to the namespace where the DorisCluster resource is 
deployed, using the following command:
+```shell
+kubectl -n ${namespace} apply -f ${feConfigMapFile}.yaml
+```
+Here, ${namespace} refers to the namespace where the DorisCluster is to be 
deployed, and ${feConfigMapFile} is the name of the ConfigMap file for FE.  
 
-2. Configuring DorisCluster resource  
-  When use the ConfigMap named by `fe-conf` to mount startup configuration, 
add the following config to the FE spec of the [DorisCluster 
resource](install-quickstart.md#step-3-deploy-doris-cluster) to be deployed:
-  ```yaml
-  spec:
-    feSpec:
-      configMapInfo:
-        configMapName: fe-conf
-        resolveKey: fe.conf
-  ```
+#### step 2: Update the DorisCluster resource
+To use the ConfigMap named `fe-conf` for mounting the startup configuration, 
add the following config to the FE spec of the [DorisCluster 
resource](install-quickstart.md#step-2-deploy-doris-cluster):
+```yaml
+spec:
+  feSpec:
+    configMapInfo:
+      configMapName: fe-conf
+      resolveKey: fe.conf
+```
 
 :::tip Tip
-Please add `enable_fqdn_mode=true` in start config. If you want to use ip mode 
and K8s have the ability that the pod IP keep the same after restarted, please 
refer to the [issue](https://github.com/apache/doris-operator/issues/138) to 
config.
+Please ensure that `enable_fqdn_mode=true` is included in the startup 
configuration.. If you want to use IP mode and K8s have the ability that the 
pod IP keep the same after restarted, please refer to the issue 
[#138](https://github.com/apache/doris-operator/issues/138) to config.
 :::
 
 ### Custom BE startup configuration
-1. Deploying ConfigMap  
-  The following defines a ConfigMap named `be-conf` that can be used by Doris 
BE:
-  ```yaml
-  apiVersion: v1
-  kind: ConfigMap
-  metadata:
-    name: be-conf
-    labels:
-      app.kubernetes.io/component: be
-  data:
-    be.conf: |
-      CUR_DATE=`date +%Y%m%d-%H%M%S`
-  
-      PPROF_TMPDIR="$DORIS_HOME/log/"
-  
-      JAVA_OPTS="-Xmx1024m -DlogPath=$DORIS_HOME/log/jni.log 
-Xloggc:$DORIS_HOME/log/be.gc.log.$CUR_DATE 
-Djavax.security.auth.useSubjectCredsOnly=false -Dsun.java.command=DorisBE 
-XX:-CriticalJNINatives -DJDBC_MIN_POOL=1 -DJDBC_MAX_POOL=100 
-DJDBC_MAX_IDLE_TIME=300000 -DJDBC_MAX_WAIT_TIME=5000"
-  
-      # For jdk 9+, this JAVA_OPTS will be used as default JVM options
-      JAVA_OPTS_FOR_JDK_9="-Xmx1024m -DlogPath=$DORIS_HOME/log/jni.log 
-Xlog:gc:$DORIS_HOME/log/be.gc.log.$CUR_DATE 
-Djavax.security.auth.useSubjectCredsOnly=false -Dsun.java.command=DorisBE 
-XX:-CriticalJNINatives -DJDBC_MIN_POOL=1 -DJDBC_MAX_POOL=100 
-DJDBC_MAX_IDLE_TIME=300000 -DJDBC_MAX_WAIT_TIME=5000"
-  
-      # since 1.2, the JAVA_HOME need to be set to run BE process.
-      # JAVA_HOME=/path/to/jdk/
-  
-      # 
https://github.com/apache/doris/blob/master/docs/zh-CN/community/developer-guide/debug-tool.md#jemalloc-heap-profile
-      # https://jemalloc.net/jemalloc.3.html
-      
JEMALLOC_CONF="percpu_arena:percpu,background_thread:true,metadata_thp:auto,muzzy_decay_ms:15000,dirty_decay_ms:15000,oversize_threshold:0,lg_tcache_max:20,prof:false,lg_prof_interval:32,lg_prof_sample:19,prof_gdump:false,prof_accum:false,prof_leak:false,prof_final:false"
-      JEMALLOC_PROF_PRFIX=""
-  
-      # INFO, WARNING, ERROR, FATAL
-      sys_log_level = INFO
-  
-      # ports for admin, web, heartbeat service
-      be_port = 9060
-      webserver_port = 8040
-      heartbeat_service_port = 9050
-      brpc_port = 8060
-  ```
-  When using the ConfigMap to mount BE startup configuration, the key 
corresponding to the configuration must be `be.conf`. Write the ConfigMap to a 
file and deploy it to the namespace where the [DorisCluster 
resource](install-quickstart.md#step-3-deploy-doris-cluster) is deployed, using 
the following command:
-  ```shell
-  kubectl -n ${namespace} apply -f ${beConfigMapFile}.yaml
-  ```
-  ${namespace} is the namespace to which the DorisCluster resource needs to be 
deployed, and ${beConfigMapFile} is the name of the configMap file used by BE.
-  
-2. Configuring DorisCluster Resource  
-  When use the ConfigMap named by `be-conf` to mount startup configuration, 
add the following config to the BE spec of the [DorisCluster 
resource](install-quickstart.md#step-3-deploy-doris-cluster) to be deployed:
-  ```yaml
-  spec:
-    feSpec:
-      configMapInfo:
-        configMapName: be-conf
-        resolveKey: be.conf
-  ```
+#### step 1: Create and deploy the BE ConfigMap  

Review Comment:
   Step 1: 



##########
docs/install/cluster-deployment/k8s-deploy/compute-storage-coupled/install-config-cluster.md:
##########
@@ -94,164 +94,166 @@ spec:
       cpu: 16
       memory: 32Gi
 ```
-Update the configuration to the [DorisCluster 
resource](install-quickstart.md#step-3-deploy-doris-cluster) that needs to be 
deployed.
+Update the configuration in the target [DorisCluster 
resource](install-quickstart.md#step-2-deploy-doris-cluster).
 
 :::tip Tip  
-The minimum resources required for FE and BE are 4c and 8Gi. This is the 
minimum required for startup. The normal testing needed resources are 8c and 
8Gi.  
+The minimum required resources for FE and BE to start are 4 CPUs and 8Gi of 
memory. For normal performance testing, it is recommended to configure  8 CPUs 
and 8Gi of memory.  
 :::
 
 ## Custom startup configuration
-Doris uses ConfigMap to decouple configuration files from services, in 
Kubernetes. By default, services use the default configurations in the image as 
startup parameter configurations.Customized the startup parameters into a 
specific ConfigMap according to the introductions in the [FE Configuration 
Document](../../../../admin-manual/config/fe-config.md) and the [BE 
Configuration Document](../../../../admin-manual/config/be-config.md),
-and deploy the customized ConfigMap to the namespace where the [DorisCluster 
resource](install-quickstart.md#step-3-deploy-doris-cluster) needs to be 
deployed.
+Doris uses ConfigMap to decouple configuration files from services, in 
Kubernetes. By default, services use the default configurations in the image as 
startup parameter configurations. To customize the startup parameters, create a 
specific ConfigMap following the instructions in the [FE Configuration 
Document](../../../../admin-manual/config/fe-config.md) and the [BE 
Configuration Document](../../../../admin-manual/config/be-config.md). Then 
deploy the customized ConfigMap to the namespace where the [DorisCluster 
resource](install-quickstart.md#step-2-deploy-doris-cluster) is to be deployed.
 
 ### Custom FE startup configuration
-1. Deploying ConfigMap  
-  The following defines a ConfigMap named fe-conf that can be used by Doris FE:
-  ```yaml
-  apiVersion: v1
-  kind: ConfigMap
-  metadata:
-    name: fe-conf
-    labels:
-      app.kubernetes.io/component: fe
-  data:
-    fe.conf: |
-      CUR_DATE=`date +%Y%m%d-%H%M%S`
-  
-      # the output dir of stderr and stdout
-      LOG_DIR = ${DORIS_HOME}/log
-  
-      JAVA_OPTS="-Djavax.security.auth.useSubjectCredsOnly=false -Xss4m 
-Xmx8192m -XX:+UseMembar -XX:SurvivorRatio=8 -XX:MaxTenuringThreshold=7 
-XX:+PrintGCDateStamps -XX:+PrintGCDetails -XX:+UseConcMarkSweepGC 
-XX:+UseParNewGC -XX:+CMSClassUnloadingEnabled -XX:-CMSParallelRemarkEnabled 
-XX:CMSInitiatingOccupancyFraction=80 -XX:SoftRefLRUPolicyMSPerMB=0 
-Xloggc:$DORIS_HOME/log/fe.gc.log.$CUR_DATE"
-  
-      # For jdk 9+, this JAVA_OPTS will be used as default JVM options
-      JAVA_OPTS_FOR_JDK_9="-Djavax.security.auth.useSubjectCredsOnly=false 
-Xss4m -Xmx8192m -XX:SurvivorRatio=8 -XX:MaxTenuringThreshold=7 
-XX:+CMSClassUnloadingEnabled -XX:-CMSParallelRemarkEnabled 
-XX:CMSInitiatingOccupancyFraction=80 -XX:SoftRefLRUPolicyMSPerMB=0 
-Xlog:gc*:$DORIS_HOME/log/fe.gc.log.$CUR_DATE:time"
-  
-      # INFO, WARN, ERROR, FATAL
-      sys_log_level = INFO
-  
-      # NORMAL, BRIEF, ASYNC
-      sys_log_mode = NORMAL
-  
-      # Default dirs to put jdbc drivers,default value is 
${DORIS_HOME}/jdbc_drivers
-      # jdbc_drivers_dir = ${DORIS_HOME}/jdbc_drivers
-  
-      http_port = 8030
-      rpc_port = 9020
-      query_port = 9030
-      edit_log_port = 9010
-      enable_fqdn_mode = true
-  ```
-  When using the ConfigMap to mount FE startup configuration, the key 
corresponding to the configuration must be `fe.conf`. Write the ConfigMap to a 
file and deploy it to the namespace where the DorisCluster resource is 
deployed, using the following command:
-  ```shell
-  kubectl -n ${namespace} apply -f ${feConfigMapFile}.yaml
-  ```
-  ${namespace} is the namespace to which the DorisCluster resource needs to be 
deployed, and ${feConfigMapFile} is the name of the configMap file used by FE.
+#### step 1:  Create and deploy the FE ConfigMap

Review Comment:
   Step 1 / Step 2 , S should be uppercase



##########
i18n/zh-CN/docusaurus-plugin-content-docs/version-2.1/install/cluster-deployment/k8s-deploy/install-config-cluster.md:
##########
@@ -94,147 +94,135 @@ spec:
       cpu: 16
       memory: 32Gi
 ```
-将配置更新到需要部署的 [DorisCluster 资源](install-quickstart.md#第-3-步部署-doris-集群)中。
+将配置更新到需要部署的 [DorisCluster 资源](install-quickstart.md#第-2-步部署-doris-集群)中。
 
-:::tip Tip  
-- FE 和 BE 所需要的最小资源为 4c 8Gi,此为最小启动配置,如果需要进行正常能力测试为 8c 8Gi。  
+:::tip Tip
+- FE 和 BE 所需要的最小启动资源为 4c 8Gi ,如果需要进行正常能力测试,建议配置为 8c 8Gi。  
 :::
 
 ## 定制化启动配置
-Doris 在 Kubernetes 使用 `ConfigMap` 实现配置文件和服务解耦。默认情况下,服务使用 image 
里默认配置作为启动参数配置。请预先按照[FE 配置文档](../../../admin-manual/config/fe-config.md)和 [BE 
配置文档](../../../admin-manual/config/be-config.md)介绍,将定制好启动参数配置到特定的 `ConfigMap` 
中。配置好后,将定制的 ConfigMap 部署到需要[部署 `DorisCluster` 
资源](install-quickstart.md#第-3-步部署-doris-集群)的 namespace 中。
+在 Kubernetes 中,Doris 使用 `ConfigMap` 将配置文件和服务分离。默认情况下,服务使用镜像里默认配置作为启动参数。请根据 [FE 
配置文档](../../../admin-manual/config/fe-config.md)和 [BE 
配置文档](../../../admin-manual/config/be-config.md)介绍,预先将定制好的启动参数配置到特定的 
`ConfigMap` 中。配置完成后,将其部署到目标[ `DorisCluster` 
资源](install-quickstart.md#第-2-步部署-doris-集群)所在的命名空间中。
 
 ### FE 定制化启动配置
+#### 第 1 步:配置并部署 ConfigMap  
+以下示例定义了名为 `fe-conf` 的 ConfigMap,该配置可供 Doris FE 使用:
+```yaml
+apiVersion: v1
+kind: ConfigMap
+metadata:
+  name: fe-conf
+  labels:
+    app.kubernetes.io/component: fe
+data:
+  fe.conf: |
+    CUR_DATE=`date +%Y%m%d-%H%M%S`
+
+    # the output dir of stderr and stdout
+    LOG_DIR = ${DORIS_HOME}/log
+
+    JAVA_OPTS="-Djavax.security.auth.useSubjectCredsOnly=false -Xss4m 
-Xmx8192m -XX:+UseMembar -XX:SurvivorRatio=8 -XX:MaxTenuringThreshold=7 
-XX:+PrintGCDateStamps -XX:+PrintGCDetails -XX:+UseConcMarkSweepGC 
-XX:+UseParNewGC -XX:+CMSClassUnloadingEnabled -XX:-CMSParallelRemarkEnabled 
-XX:CMSInitiatingOccupancyFraction=80 -XX:SoftRefLRUPolicyMSPerMB=0 
-Xloggc:$DORIS_HOME/log/fe.gc.log.$CUR_DATE"
+
+    # For jdk 9+, this JAVA_OPTS will be used as default JVM options
+    JAVA_OPTS_FOR_JDK_9="-Djavax.security.auth.useSubjectCredsOnly=false 
-Xss4m -Xmx8192m -XX:SurvivorRatio=8 -XX:MaxTenuringThreshold=7 
-XX:+CMSClassUnloadingEnabled -XX:-CMSParallelRemarkEnabled 
-XX:CMSInitiatingOccupancyFraction=80 -XX:SoftRefLRUPolicyMSPerMB=0 
-Xlog:gc*:$DORIS_HOME/log/fe.gc.log.$CUR_DATE:time"
+
+    # INFO, WARN, ERROR, FATAL
+    sys_log_level = INFO
+
+    # NORMAL, BRIEF, ASYNC
+    sys_log_mode = NORMAL
+
+    # Default dirs to put jdbc drivers,default value is 
${DORIS_HOME}/jdbc_drivers
+    # jdbc_drivers_dir = ${DORIS_HOME}/jdbc_drivers
+
+    http_port = 8030
+    rpc_port = 9020
+    query_port = 9030
+    edit_log_port = 9010
+    enable_fqdn_mode = true
+```
+使用 ConfigMap 挂载 FE 启动配置信息时,配置信息对应的 key 必须为 `fe.conf` 。完成配置文件后,通过如下命令部署到 
`DorisCluster` 资源将要部署的命名空间。
+```shell
+kubectl -n ${namespace} apply -f ${feConfigMapFile}.yaml
+```
+${namespace} 为 目标 `DorisCluster` 资源 将要部署的命名空间, ${feConfigMapFile} 为包含上述配置的文件名。
 
-1. 部署 configmap  
-
-  以下定义了名为 `fe-conf` ,Doris FE 可使用的 ConfigMap:  
-
-  ```shell
-  apiVersion: v1
-  kind: ConfigMap
-  metadata:
-    name: fe-conf
-    labels:
-      app.kubernetes.io/component: fe
-  data:
-    fe.conf: |
-      CUR_DATE=`date +%Y%m%d-%H%M%S`
-
-      # the output dir of stderr and stdout
-      LOG_DIR = ${DORIS_HOME}/log
-
-      JAVA_OPTS="-Djavax.security.auth.useSubjectCredsOnly=false -Xss4m 
-Xmx8192m -XX:+UseMembar -XX:SurvivorRatio=8 -XX:MaxTenuringThreshold=7 
-XX:+PrintGCDateStamps -XX:+PrintGCDetails -XX:+UseConcMarkSweepGC 
-XX:+UseParNewGC -XX:+CMSClassUnloadingEnabled -XX:-CMSParallelRemarkEnabled 
-XX:CMSInitiatingOccupancyFraction=80 -XX:SoftRefLRUPolicyMSPerMB=0 
-Xloggc:$DORIS_HOME/log/fe.gc.log.$CUR_DATE"
-
-      # For jdk 9+, this JAVA_OPTS will be used as default JVM options
-      JAVA_OPTS_FOR_JDK_9="-Djavax.security.auth.useSubjectCredsOnly=false 
-Xss4m -Xmx8192m -XX:SurvivorRatio=8 -XX:MaxTenuringThreshold=7 
-XX:+CMSClassUnloadingEnabled -XX:-CMSParallelRemarkEnabled 
-XX:CMSInitiatingOccupancyFraction=80 -XX:SoftRefLRUPolicyMSPerMB=0 
-Xlog:gc*:$DORIS_HOME/log/fe.gc.log.$CUR_DATE:time"
-
-      # INFO, WARN, ERROR, FATAL
-      sys_log_level = INFO
-
-      # NORMAL, BRIEF, ASYNC
-      sys_log_mode = NORMAL
-
-      # Default dirs to put jdbc drivers,default value is 
${DORIS_HOME}/jdbc_drivers
-      # jdbc_drivers_dir = ${DORIS_HOME}/jdbc_drivers
-
-      http_port = 8030
-      rpc_port = 9020
-      query_port = 9030
-      edit_log_port = 9010
-      enable_fqdn_mode = true
-  ```
-    
-  使用 ConfigMap 挂载 FE 启动配置信息时,配置信息对应的 key 必须为 `fe.conf` 。将 ConfigMap 
写入文件,通过如下命令部署到 `DorisCluster` 资源部署的 namespace:
-
-  ```shell
-  kubectl -n ${namespace} apply -f ${feConfigMapFile}.yaml
-  ```
-
-  ${namespace} 为 `DorisCluster` 资源需要部署到的 namespace,${feConfigMapFile} 为 fe 使用的 
configMap 文件名称。
-
-2. 配置 DorisCluster 资源  
-
-  以 fe-conf 对应的 ConfigMap 为例,在需要[部署的 `DorisCluster` 
资源](install-quickstart.md#第-3-步部署-doris-集群)的 FE 配置中,添加如下信息:
-
-  ```yaml
-  spec:
-    feSpec:
-      configMapInfo:
-        configMapName: fe-conf
-        resolveKey: fe.conf
-  ```
+#### 第 2 步:配置 DorisCluster 资源  
+以 fe-conf 对应的 ConfigMap 为例,需要在[部署的 `DorisCluster` 
资源](install-quickstart.md#第-2-步部署-doris-集群)中添加如下信息:
+```yaml
+spec:
+  feSpec:
+    configMapInfo:
+      configMapName: fe-conf
+      resolveKey: fe.conf
+```
 
 :::tip Tip  
-K8s 部署中请将 `enable_fqdn_mode=true` 加入启动配置中。如果想用 IP 模式,且 K8s 集群能够保证 pod 重启后 IP 
不发生变化,请参照这个 [issue](https://github.com/apache/doris-operator/issues/138) 进行配置 
IP 模式启动。
+Kubernetes 部署中,建议使用 FQDN 模式,启动配置中应添加 enable_fqdn_mode=true 。如果想用 IP 模式,且 
Kubernetes 集群能够保证 pod 重启后 IP 不发生变化,请参照 issue 
[#138](https://github.com/apache/doris-operator/issues/138) 进行配置 IP 模式启动。
 :::
 
 ### BE 定制化启动配置
+#### 第 1 步:配置并部署 configmap   

Review Comment:
   ConfigMap



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org
For additional commands, e-mail: commits-h...@doris.apache.org

Reply via email to