DNS:10.4.246.1
臭小子、不要乱动(⊙o⊙)哦
git config --global user.name "yansongwei"
git config --global user.email "yansongwei888@163.com"
mkdir dubbo-demo-web
cd dubbo-demo-web
git init
touch README.md
git add .
git commit -m "first commit"
git remote add origin https://gitee.com/nongfuyunwei/dubbo-demo-web.git
git push -u origin master
yansongwei888@163.com
centos7.0内核升级文档:
https://www.cnblogs.com/panwenbin-logs/p/10213309.html
安装weave scpoe
问题描述:
The DaemonSet "weave-scope-agent" is invalid: spec.template.spec.containers[0].securityContext.privileged: Forbidden: disallowed by cluster policy
在kube-apiserver.sh配置中添加
--allow-privileged=true #设置为true时,kubernetes允许在Pod中运行拥有系统特权的容器应用。
weave 添加ingress报错问题解决:
http://www.huilog.com/?p=1093
k8s的node节点服务器重启后,启动kube-proxy发现报错
6月 19 09:57:07 node1 kube-proxy[17770]: E0619 09:57:07.022125 17770 proxier.go:1319] Failed to delete stale service IP 10.254.0.2 connections, error: error deleting connection tracking state for UDP service IP: 10.254.0.2, error: error looking for path of conntrack: exec: "conntrack": executable file not found in $PATH
1
yum -y install conntrack 后重启kube-proxy,问题解决
metrics安装失败:
kube-apiserver日志报错信息:
loading OpenAPI spec for "v1beta1.metrics.k8s.io" failed with: failed to retrieve openAPI spec, http error: ResponseCode: 503, Body: service unavailable
, Header: map[Content-Type:[text/plain; charset=utf-8] X-Content-Type-Options:[nosniff]]
解决方法:
kubectl delete apiservice v1beta1.metrics.k8s.io
解决思路:
kubectl get apiservice
kubectl get apiservice v1beta1.metrics.k8s.io -o yaml
安装metrics-server,解决kubeoard安装失败问题:
https://www.cnblogs.com/chimeiwangliang/p/9239592.html