Files
jenkins-pipeline/k8s_yaml/double admin/01_dubbo_admin_ConfigMap.yaml
2026-02-11 14:55:11 +08:00

27 lines
1.0 KiB
YAML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

apiVersion: v1
kind: ConfigMap
metadata:
name: dubbo-admin-config
namespace: opt
data:
application.properties: |
# Dubbo Admin 服务端配置
server.port=8080
spring.application.name=dubbo-admin
# Nacos 注册中心配置(集群模式 - 使用 server-addr 参数)
admin.registry.address=nacos://10.0.0.10:8848?namespace=sit&username=nacos&password=sRf6RtgwycTQRTGs&server-addr=10.0.0.10:8848;10.0.0.15:8848;10.0.0.8:8848
# Nacos 配置中心
admin.config-center=nacos://10.0.0.10:8848?namespace=sit&username=nacos&password=sRf6RtgwycTQRTGs&server-addr=10.0.0.10:8848;10.0.0.15:8848;10.0.0.8:8848
# Nacos 元数据中心
admin.metadata-report.address=nacos://10.0.0.10:8848?namespace=sit&username=nacos&password=sRf6RtgwycTQRTGs&server-addr=10.0.0.10:8848;10.0.0.15:8848;10.0.0.8:8848
# Dubbo Admin 登录密码(用户名默认为 root
admin.root.user.name=root
admin.root.user.password=7sG4dPDggYFH
# 日志配置
logging.level.root=INFO
logging.level.org.apache.dubbo=INFO