- how to install ingress-Controller
- ingress-controller.yaml
- Ingress控制器
- Ingress官方教程
- 如果先用helm创建,再用命令行创建ingress-controller可能会报错,如果遇到问题请参考
- pod探活
- pods的CPU内存监视:metrics-server,编写yaml详见
./base/metrics-server.yaml
configmap - 配置中心
- 字面量创建配置
kubectl create configmap special-config --from-literal=special.how=very
- 文件创建配置
kubectl create configmap special-config --from-file=configmap/game.yaml
- 创建配置
kubectl create configmap special-config --from-literal=special.how=very
- 查看配置列表
kubectl get configmap
- 以yaml格式查看某个配置详情
kubectl get configmap special-config -o yaml
- image pull secret管理