I am using bitnami helm to deploy nginx nginx-ingress-controller on k8s cluster using ArgoCD. It works well, and I am limiting the access via loadBalancerSourceRanges under the values.yaml:
loadBalancerSourceRanges:
- 205.231.13.209/32,
- 203.537.72.62/32,
etc..
I have a new client that want the entire range of the organization to be open, so it needs to be all addresses with
213.137.72.1, 213.137.72.2 , 213.137.72.3 , 213.137.72.4
and so on..
How can I solve this one ? is it possible to use wildcard here somehow?