kubezero/charts/kubezero-argo-cd/templates/istio-authorization-policy....

27 lines
616 B
YAML
Raw Normal View History

2020-11-24 14:44:57 +00:00
{{- if .Values.istio.enabled }}
{{- if .Values.istio.ipBlocks }}
apiVersion: security.istio.io/v1beta1
kind: AuthorizationPolicy
metadata:
2020-07-29 17:02:18 +00:00
name: argocd-deny-not-in-ipblocks
namespace: istio-system
2020-08-06 17:15:20 +00:00
labels:
{{ include "kubezero-lib.labels" . | indent 4 }}
spec:
selector:
matchLabels:
app: istio-ingressgateway
2020-07-29 17:02:18 +00:00
action: DENY
rules:
- from:
- source:
2020-07-29 17:02:18 +00:00
notIpBlocks:
2020-11-24 14:44:57 +00:00
{{- with .Values.istio.ipBlocks }}
{{- . | toYaml | nindent 8 }}
{{- end }}
to:
- operation:
hosts: ["{{ index .Values "argo-cd" "server" "config" "url" }}"]
2020-07-29 17:02:18 +00:00
{{- end }}
{{- end }}