Anil Arora

Results 5 comments of Anil Arora

@tbarnes-us So, the use case we were thinking was that we would want to have a persistent volume be created per managed server to hold some data for the pod....

So, let's take the example where we wanted to create a persistent volume that held "temp" data, as the boot volume may not have sufficient space to hold that data....

The alternate approach to the above would require us to create each persistent volume claim ahead of time, requiring them to match a specific pattern. ``` apiVersion: v1 kind: PersistentVolumeClaim...

This is usually controlled by using an annotation on the job pod template: ``` spec: template: metadata: annotations: sidecar.istio.io/inject: "false" ``` Is there a way to add annotations on the...

The annotation is the preferred way for Istio to determine which pods to filter.