摘要: 在Kubernetes官方博客之前的文章《Kubernetes1.11: In-Cluster Load Balancingand CoreDNS Plugin Graduate to General Availability中我们宣布了基于IPVS的集群内负载均衡已经实现了GA(General A 阅读全文
posted @ 2021-09-01 17:09 技术颜良 阅读(2151) 评论(0) 推荐(0)
摘要: Kubernetes 集群中运行的应用通过 Service 抽象来互相查找、通信和与外部世界沟通。本文介绍被发送到不同类型 Services 的数据包源 IP 的变化过程,你可以根据你的需求改变这些行为。 准备开始 你必须拥有一个 Kubernetes 的集群,同时你的 Kubernetes 集群必 阅读全文
posted @ 2021-09-01 16:39 技术颜良 阅读(532) 评论(0) 推荐(0)
摘要: type DataInLine struct { Id string Name string Age string} func StrctToSlice(f DataInLine) []string { v := reflect.ValueOf(f) ss := make([]string, v.N 阅读全文
posted @ 2021-09-01 11:41 技术颜良 阅读(808) 评论(0) 推荐(0)