kubernetes : expost service internally within VPN

Multi tool use


kubernetes : expost service internally within VPN
I've setup kubernetes cluster using kops
kops create cluster
--dns-zone=vpc.pharmeasy.in
--dns=private
--master-zones=ap-southeast-1a,ap-southeast-1b,ap-southeast-1c
--zones=ap-southeast-1a,ap-southeast-1b,ap-southeast-1c
--node-count 3
--topology private
--networking flannel-vxlan
--node-size=t2.medium
--master-size=t2.micro
${NAME}
Also, we have used internal LoadBalancer for Kubernetes api server.
Whenever i create a service of type=LoadBalancer it creates internet-facing load balancer and is available publically.
I tried created service using ClusterIp And exposed using Kubectl proxy, but it is not accessible. We already have VPN setup.
We want elasticsearch and kibana dashboard available only within vpn.
How to expose service internally with VPN?
By clicking "Post Your Answer", you acknowledge that you have read our updated terms of service, privacy policy and cookie policy, and that your continued use of the website is subject to these policies.