-
Notifications
You must be signed in to change notification settings - Fork 8.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
how to access application only for VPN user.. #10155
Comments
This issue is currently awaiting triage. If Ingress contributors determines this is a relevant issue, they will accept it by applying the The Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository. |
Hello, i think that is a bug. |
I apology give you error message, resolve
my use helm deploy
|
This is stale, but we won't close it automatically, just bare in mind the maintainers may be busy with other tasks and will reach your issue ASAP. If you have any question or request to prioritize this, please reach |
this worked for me, thank you |
you're welcome 😁 |
I did the same but its not working for me. I have updated the externalTrafficPolicy from Cluster to Local |
No action item for project here. /remove-kind feature |
@longwuyuan: Closing this issue. In response to this:
Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes-sigs/prow repository. |
one of my application is access by external users. i have to restrict that application to VPN user only.. i tried with whielist but when i apply whitlist in annotation it block all user. kindly suggest me what to do
this is my ingress rule
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: kafdrop-ingress
annotations:
cert-manager.io/cluster-issuer: "letsencrypt-prod"
kubernetes.io/ingress.class: "nginx"
nginx.ingress.kubernetes.io/whitelist-source-range: x.x.x.x/32 (VPN user ip range)
spec:
tls:
hosts:
abc-a.xyz
secretName: kafdrop-tls
rules:
host: abc-a.xy
http:
paths:
path: "/"
backend:
service:
name: kafdrop
port:
number: 9000
this is my configuration... iam using Load balance also. when i apply this , all traffic get blocked after putting whitelist annotation.. please suggest way . i need to only VPN user to access this abc-a.xyz url
The text was updated successfully, but these errors were encountered: