Update the allow-namespace authz policy
Relates to #13 (closed)
Affects this file.
Add this policy to allow all traffic from inside the namespace.
{{- if and .Values.istio.enabled .Values.istio.hardened.enabled -}}
apiVersion: security.istio.io/v1
kind: AuthorizationPolicy
metadata:
name: allow-all-in-namespace
namespace: {{ .Release.Namespace }}
spec:
action: ALLOW
rules:
- from:
- source:
namespaces: [{{ .Release.Namespace | quote }}]
{{- end }}