skip to Main Content

Call to Kubernetes service failed – CentOS

kubernetes version: 1.5.2 os: centos 7 etcd version: 3.4.0 First, I create an etcd pod, the etcd dockerfile and etcd pod YAML file like this: etcd dockerfile: FROM alpine COPY . /usr/bin WORKDIR /usr/bin CMD etcd --listen-client-urls http://0.0.0.0:2379 --advertise-client-urls http://0.0.0.0:2379…

VIEW QUESTION

Kubernetes Pod not able to contact another pod when Namespace specified – CentOS

I'm using Kubernetes on a centOS 7. Client Version: version.Info{Major:"1", Minor:"16", GitVersion:"v1.16.3", GitCommit:"b3cbbae08ec52a7fc73d334838e18d17e8512749", GitTreeState:"clean", BuildDate:"2019-11-13T11:23:11Z", GoVersion:"go1.12.12", Compiler:"gc", Platform:"linux/amd64"} Server Version: version.Info{Major:"1", Minor:"16", GitVersion:"v1.16.3", GitCommit:"b3cbbae08ec52a7fc73d334838e18d17e8512749", GitTreeState:"clean", BuildDate:"2019-11-13T11:13:49Z", GoVersion:"go1.12.12", Compiler:"gc", Platform:"linux/amd64"} I did deploy a Nginx pod on a "production" namespace by…

VIEW QUESTION
Back To Top
Search