I wanna Google Container Engine to host some containers for development environment, and my office connects via VPN.
Question:
- Is the IP of the Pod visible to me? or only Node is visible to me?
- The SkyDNS maintained by kubernetes which is available for pod, is that available to me?
Suppose I have a "headless" service created. I can access that via VPN?
{
"kind": "Service",
"apiVersion": "v1",
"metadata": {
"name": "redis-stage-1"
},
"spec": {
"ports": [{
"port": 36379,
"targetPort": 36379
}],
"selector": {
"name": "redis-stage-1"
}
}
}