coreos - Can kube-apiserver allow the unsecure connection outside of localhost? -
i'm trying setup kubernetes cluster development environment (local vms). because it's development i'm not using working certs api-server. seem have use secure connection in order connect minion daemons such kube-proxy
, kubelet
master's kube-apiserver
. has found way around that? haven't seen in docs being able force unsecure connection or ignoring certs bad, assume there's flag when running either minion or master daemons, i've had no luck. etcd working, shows entry both master , minions , logs show attempts @ handshakes failing due bad certs.
you can set flag --insecure-bind-address=0.0.0.0
when starting kube-apiserver allow access unauthenticated api endpoint running on port 8080 network (by default accessible on localhost).
Comments
Post a Comment