etcd-adminer
跳转到导航
跳转到搜索
etcd-adminer是一套etcd的网页管理工具。
安装与设定
这边的方式是用Docker Compose跑起来,先设定/srv/etcd-adminer.example.com/docker-compose.yml
,其中里面可以看到对外开Port 8081使用:
version: '3.2'
services:
etcd-adminer:
image: srimaln91/etcd-adminer:latest
container_name: etcd-adminer
hostname: etcd-adminer
ports:
- 8081:8080
restart: unless-stopped
volumes:
- /srv/etcd-adminer.example.com/config.yaml:/app/config.yaml
接着设定/srv/etcd-adminer.example.com/config.yaml
,这边是直接指定了etcd所有的机器,这边的设定值可以参考config.go[1]的程式码:
http:
port: 8080
logger:
level: "DEBUG"
etcd:
- name: "example-etcd"
endpoints:
- "10.1.2.1:2379"
- "10.1.2.2:2379"
- "10.1.2.3:2379"
superadmin:
username: "root"
password: "password"
后续就是标准的Docker Compose操作了:
sudo docker compose up -d
注意事项
etcd-adminer没有登入机制,这边可以搭配oauth2-proxy或是类似的工具绑定公司的SSO使用。
相关连结
参考资料
- ↑ etcd-adminer/config/confg.go at main · srimaln91/etcd-adminer. [2023-10-25].
外部链接
- 官方网站 (英文)