上一页 1 2 3 4 5 6 ··· 27 下一页
摘要: Pod A/AAAA 记录 一般而言,Pod 会对应如下 DNS 名字解析: pod-ip-address.my-namespace.pod.cluster-domain.example 例如,对于一个位于 default 名字空间,IP 地址为 172.17.0.3 的 Pod, 如果集群的域名为 阅读全文
posted @ 2023-05-28 19:05 tigergaonotes 阅读(170) 评论(0) 推荐(0) 编辑
摘要: = #用于标准uri前,需要请求字串与uri完全匹配,如果匹配成功就停止向下匹配并立即处理请求。 ~ #区分大小写 ~* #不区分大写 !~ #区分大小写不匹配 !~* #不区分大小写不匹配 ^ #匹配正则开头 $ #匹配正则结尾 \ #转义字符。可以转. * ?等 * #代表任意长度的任意字 lo 阅读全文
posted @ 2023-05-24 14:16 tigergaonotes 阅读(338) 评论(0) 推荐(0) 编辑
摘要: perf record -a -g -p 16787 -- sleep 30 会生成perf data在当前目录下: -rw 1 root root 1068092 May 21 18:11 perf.data yum -y install git git clone https://github. 阅读全文
posted @ 2023-05-20 18:38 tigergaonotes 阅读(171) 评论(0) 推荐(0) 编辑
摘要: [root@k8s-master docker]# iptables -S -t nat -P PREROUTING ACCEPT -P INPUT ACCEPT -P OUTPUT ACCEPT -P POSTROUTING ACCEPT -N DOCKER -N KUBE-MARK-DROP - 阅读全文
posted @ 2023-05-20 12:16 tigergaonotes 阅读(17) 评论(0) 推荐(0) 编辑
摘要: https://helm.sh/zh/docs/intro/using_helm/ 三大概念 Chart 代表着 Helm 包。它包含在 Kubernetes 集群内部运行应用程序,工具或服务所需的所有资源定义。你可以把它看作是 Homebrew formula,Apt dpkg,或 Yum RPM 阅读全文
posted @ 2023-05-06 20:46 tigergaonotes 阅读(24) 评论(0) 推荐(0) 编辑
摘要: 在三次握手发送的数据包中有两个ACK值(Acknowledgement),习惯一个大写,一个小写来加以区分。 一个是确认值(Acknowledgement),为1便是确认连接。 另一个是确认编号(Acknowledgement Number),即接收到的上一次远端主机传来的seq然后+1,再发送给远 阅读全文
posted @ 2023-05-02 13:11 tigergaonotes 阅读(68) 评论(0) 推荐(0) 编辑
摘要: 先根据etcd找到hostpatch 持久化目录,/var/lib/etcd 进入pod备份: ETCDCTL_API=3 etcdctl snapshot save snap.db \ --endpoints=https://127.0.0.1:2379 \ --cacert=/etc/kuber 阅读全文
posted @ 2023-04-22 21:25 tigergaonotes 阅读(20) 评论(0) 推荐(0) 编辑
摘要: https://helm.sh/zh/docs/intro/using_helm/ 阅读全文
posted @ 2023-04-21 16:04 tigergaonotes 阅读(4) 评论(0) 推荐(0) 编辑
摘要: 官档:https://kubernetes.io/zh-cn/docs/tasks/access-application-cluster/configure-access-multiple-clusters/ 阅读全文
posted @ 2023-04-21 14:15 tigergaonotes 阅读(21) 评论(0) 推荐(0) 编辑
摘要: 打标签: 1.增加节点标签 备注 =:代表增加标签 2.减少节点标签 备注 -:代表减少标签 root@k8s-master ~]# kubectl get nodes NAME STATUS ROLES AGE VERSION k8s-master Ready master 4m39s v1.13 阅读全文
posted @ 2023-04-19 23:17 tigergaonotes 阅读(83) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 27 下一页