Skip to content

Docs: change default dns service name #186

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/en/getting-started/advanced-install.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 <br> - 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 <br> - 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 <br> - 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
Expand Down
2 changes: 1 addition & 1 deletion docs/zh/getting-started/advanced-install.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ kdp install
| systemMysql.users.root.password | KDP 内置 MySQL root 用户密码(base64编码) | a2RwUm9vdDEyMyo= | 否 | - 仅使用 KDP 内置 MySQL 时生效 <br> - 安装后强制更新会导致 KDP 内置 MySQL 工作负载运行异常 |
| systemMysql.users.kdpAdmin.user | KDP 基础服务使用的 MySQL 用户名 | kdpAdmin | 是 | - 如使用 KDP 内置 MySQL 会自动创建用户 <br> - 如使用外部 MySQL,可指定为对应的用户名 |
| systemMysql.users.kdpAdmin.password | KDP 基础服务使用的 MySQL 用户密码(base64编码) | a2RwQWRtaW4xMjMq | 是 | - 如使用 KDP 内置 MySQL 会自动设置用户密码 <br> - 如使用外部 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
Expand Down
2 changes: 1 addition & 1 deletion infra/plg-stack/parameter.cue
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Loading