Istio and Hashicorpt Vault agent Sidecar not working properly Istio and Hashicorpt Vault agent Sidecar not working properly kubernetes kubernetes

Istio and Hashicorpt Vault agent Sidecar not working properly


Added below annotations worked for me.

  template:    metadata:      annotations:        traffic.sidecar.istio.io/excludeOutboundPorts: "8200"        vault.hashicorp.com/agent-init-first: "true"        vault.hashicorp.com/agent-inject: "true"


The below annotation is also working fine with me. If we use 'traffic.sidecar.istio.io/excludeOutboundPorts' which means while reading secret from the vault the traffic is not going through Istio sidecar and is most likely not encrypted.

template:    metadata:      annotations:        vault.hashicorp.com/agent-init-first: "true"        vault.hashicorp.com/agent-inject: "true"