- boot IP is the original address on a network interface even when the cluster is down - service IP is a movable IP that will be added to a network interface when a resource group becomes online. Clients normally should connect to service IP. If a re…
一.为什么Servcie能定位到Pod 因为Pod的IP是不固定的,所以Kubernetes需要Service,除此之外它还可以在多个Pod间负载均衡 Service的访问入口,其实是宿主机的kube-proxy生成的iptables规则 ,及kube-dns生成的DNS记录 Service通过label标签选中Pod,被选中的的Pod称为Service的Endpoints 示例如下 # kubectl get ep hostnames NAME ENDPOINTS AGE hostnames…
Web Service基本概念 Web Service也叫XML Web Service WebService是一种可以接收从Internet或者Intranet上的其它系统中传递过来的请求,轻量级的独立的通讯技术.是:通过SOAP在Web上提供的软件服务,使用WSDL文件进行说明,并通过UDDI进行注册. XML:(Extensible Markup Language)扩展型可标记语言.面向短期的临时数据处理.面向万维网络,是Soap的基础. Soap:(Simple Object Acces…