Neeraj Poddar
Neeraj Poddar
Istio's [Authentication Policies](https://istio.io/docs/reference/config/istio.authentication.v1alpha1/) only get applied if the service it is targeting has label selectors and there are corresponding Pods that have the same labels. Earlier implementation of Istio relied...
The [VirtualService](https://istio.io/docs/reference/config/networking/v1alpha3/virtual-service/#VirtualService) resource's destination host for any protocol type `HTTP`, `TCP` & `TLS` should always point to a Service port like [Destination Port](https://istio.io/docs/reference/config/networking/v1alpha3/virtual-service/#Destination). The new vet should verify that the...
Istio release 1.1 has new options to allow mTLS and readiness/liveness probes to co-exist without causing pods to be restarted by kubelet as mentioned [here](https://istio.io/help/faq/security/#k8s-health-checks) We need to update mtlsprobes...
README should have instructions for easily adding new APIs exposed by Istio
The generated Go structs for [Istio API](https://github.com/istio/api) resources are missing the `DeepCopyInto` methods which are needed by k8s codegen to generate client code. A poor man's version of `DeepCopyInto` has...
Added an options argument to exported function which can enable the functionality of throwing an error if template pattern doesn't match any of the passed argument strings. Default behavior is...