17 lines
413 B
YAML
17 lines
413 B
YAML
|
apiVersion: v1
|
||
|
kind: ConfigMap
|
||
|
metadata:
|
||
|
name: istio
|
||
|
namespace: {{ .Release.Namespace }}
|
||
|
labels:
|
||
|
app: cpx-sidecar-injector
|
||
|
chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
|
||
|
release: {{ .Release.Name }}
|
||
|
istio: sidecar-injector
|
||
|
data:
|
||
|
mesh: |-
|
||
|
# Needed for injection of securityContext in PodSpec during auto-sidecar injection
|
||
|
sdsUdsPath: unix:/etc/istio/proxy/SDS
|
||
|
|
||
|
---
|