This message was deleted.
# k3d
a
This message was deleted.
b
here's where i expose the port:
Copy code
$ cat service.yaml 
apiVersion: v1
kind: Service
metadata:
  labels:
    app: vpn-proxy
  name: vpn-proxy
spec:
  type: NodePort
  ports:
  - name: proxy-port
    nodePort: 32011
    port: 2011
    protocol: TCP
    targetPort: 3128
  - name: vpn-callback
    nodePort: 30786
    port: 29786
    protocol: TCP
    targetPort: 29786
  selector:
    app: vpn-proxy
I can exec into the pod and post the call back to the 29786 port, and it works, but i can't from the outside ...