diff --git a/docs/en/getting-started/advanced-install.md b/docs/en/getting-started/advanced-install.md
index 7c9ca40..2ab8d53 100644
--- a/docs/en/getting-started/advanced-install.md
+++ b/docs/en/getting-started/advanced-install.md
@@ -61,7 +61,7 @@ Runtime parameters are supported via "--set k1=v1 --set k2=v2 ..." when install
| systemMysql.users.root.password | root user password of KDP built-in MySQL(base64 encoded) | a2RwUm9vdDEyMyo= | N | - Effective only when using KDP built-in MySQL
- A force update after installation will cause KDP built-in MySQL workloads to operate abnormally |
| systemMysql.users.kdpAdmin.user | MySQL user name used by the KDP infrastructure services | kdpAdmin | Y | - If using KDP built-in MySQL, the user will be automatically created
- If using external MySQL, specify the corresponding user name |
| systemMysql.users.kdpAdmin.password | MySQL user password used by the KDP infrastructure services(base64 encoded) | a2RwQWRtaW4xMjMq | Y | - If using KDP built-in MySQL, the user password will be automatically set
- If using external MySQL, specify the corresponding user password |
-| dnsService.name | The DNS service name used by KDP logging gateway for service discovery | coredns | Y | Used in conjunction with the `dnsService.namespace` parameter, only specified if the DNS service of the K8s cluster does not use CoreDNS |
+| dnsService.name | The DNS service name used by KDP logging gateway for service discovery | kube-dns | Y | Used in conjunction with the `dnsService.namespace` parameter, only specified if the DNS service of the K8s cluster does not use CoreDNS |
| dnsService.namespace | The DNS service namespace used by KDP logging gateway for service discovery | kube-system | Y | |
## Visit KDP UX
diff --git a/docs/zh/getting-started/advanced-install.md b/docs/zh/getting-started/advanced-install.md
index 5cbe4e4..2d555c2 100644
--- a/docs/zh/getting-started/advanced-install.md
+++ b/docs/zh/getting-started/advanced-install.md
@@ -57,7 +57,7 @@ kdp install
| systemMysql.users.root.password | KDP 内置 MySQL root 用户密码(base64编码) | a2RwUm9vdDEyMyo= | 否 | - 仅使用 KDP 内置 MySQL 时生效
- 安装后强制更新会导致 KDP 内置 MySQL 工作负载运行异常 |
| systemMysql.users.kdpAdmin.user | KDP 基础服务使用的 MySQL 用户名 | kdpAdmin | 是 | - 如使用 KDP 内置 MySQL 会自动创建用户
- 如使用外部 MySQL,可指定为对应的用户名 |
| systemMysql.users.kdpAdmin.password | KDP 基础服务使用的 MySQL 用户密码(base64编码) | a2RwQWRtaW4xMjMq | 是 | - 如使用 KDP 内置 MySQL 会自动设置用户密码
- 如使用外部 MySQL,可指定为对应的用户密码 |
-| dnsService.name | KDP 日志网关自动发现所使用的 DNS service 名称 | coredns | 是 | 配合`dnsService.namespace`参数使用,仅当 K8s 集群的 DNS 服务不使用 CoreDNS 时指定 |
+| dnsService.name | KDP 日志网关自动发现所使用的 DNS service 名称 | kube-dns | 是 | 配合`dnsService.namespace`参数使用,仅当 K8s 集群的 DNS 服务不使用 CoreDNS 时指定 |
| dnsService.namespace | KDP 日志网关自动发现所使用的 DNS service 命名空间 | kube-system | 是 | |
## 访问 KDP UX
diff --git a/infra/plg-stack/parameter.cue b/infra/plg-stack/parameter.cue
index baa03bc..fd5ead4 100644
--- a/infra/plg-stack/parameter.cue
+++ b/infra/plg-stack/parameter.cue
@@ -39,7 +39,7 @@ parameter: {
}
// +usage=Specify cluster DNS service
dnsService: {
- name: *"coredns" | string
+ name: *"kube-dns" | string
namespace: *"kube-system" | string
}
// +usage=Enable/Disable Prometheus CRD installation