I want the Google Container Engine to host multiple containers for the development environment, and my office connects through a VPN .
Question:
- Is the Pod IP address visible to me? Or do I only see Node?
- Is skyDNS supported by kubernetes available for pod available to me?
Suppose I have created a "headless" service. Can I access this via VPN?
{ "kind": "Service", "apiVersion": "v1", "metadata": { "name": "redis-stage-1" }, "spec": { "ports": [{ "port": 36379, "targetPort": 36379 }], "selector": { "name": "redis-stage-1" } } }
google-container-engine
Mr.Wang from Next Door
source share