摘要:
pod.yaml apiVersion: v1 kind: Pod metadata: labels: app: minio name: minio namespace: minio-dev # Change this value to match the namespace metadata.na 阅读全文
摘要:
Calico BGP Calico BGP模式之间Pod通信是要求二层互通的。 Calico BGP模式网络分析 在启用了BGP fullmesh模式的kubernetes集群下,部署2副本的nginx Deployment. 网络结构: Node: 172.16.67.138 Pod: 10.8. 阅读全文
摘要:
Calico BGP模式之间Pod通信是要求二层互通的。 Pod外的veth设备没有IP,只有MAC地址。向其他主机里运行的Pod发包时: Pod eth0网卡和主机cali-xxx网卡是veth pair关系。eth0->cali-xx cali-xx只有MAC地址,但是会有一条路由规则使得包发往 阅读全文
摘要:
这篇文章使用ctr创建一个nginx容器,并在宿主机使用curl进行访问。 Prerequisite 按照Containerd Quickstart完成: 安装cni 安装runc 安装containerd, 并以systemd service方式启动 Steps 1. 拉取镜像: ctr imag 阅读全文
摘要:
Opts Pattern 通常情况下,创建一个新的对象会使用默认构造器。 假设现在我们要准备一个家庭医药包,里面有抵抗新冠的一些常用药,比如莲花清瘟,999感冒灵颗粒,藿香正气片 etc. package main import "fmt" // MedicalKit contains medici 阅读全文
摘要:
The client-go library contains various mechanisms that you can use when developing your custom controllers. These mechanisms are defined in the tools/ 阅读全文
摘要:
CentOS 7 patroni 搭建postgresql高可用 Install Patroni 安装python等 #!/bin/bash yum install python-psycopg2 -y yum install epel-release -y echo "install python 阅读全文
摘要:
CoreDNS Pod DNS in kubernetes kubernetes会给每个Pod配置DNS,比如我的环境里nginx Pod的默认DNS配置: $ kubectl exec -it nginx-deployment-66b6c48dd5-tg5s6 -- /bin/bash root@ 阅读全文
摘要:
什么是Access Switch? 什么是Access Switch? What is the access switch? What does an Access Layer Switch do? The Difference Between Access Switch and Other Swi 阅读全文
摘要:
pflag用于子命令,比如下面示例程序: package main import ( "flag" "fmt" "os" ) type Options struct { Firstname string Lastname string } func main() { p:=&Options{Firs 阅读全文