42 lines
1.7 KiB
YAML
42 lines
1.7 KiB
YAML
{{- /*
|
|
Copyright VMware, Inc.
|
|
SPDX-License-Identifier: APACHE-2.0
|
|
*/}}
|
|
|
|
{{- if .Values.networkPolicy.enabled }}
|
|
kind: NetworkPolicy
|
|
apiVersion: {{ include "common.capabilities.networkPolicy.apiVersion" . }}
|
|
metadata:
|
|
name: {{ template "common.names.fullname" . }}
|
|
labels: {{- include "common.labels.standard" ( dict "customLabels" .Values.commonLabels "context" $ ) | nindent 4 }}
|
|
{{- if .Values.commonAnnotations }}
|
|
annotations: {{- include "common.tplvalues.render" ( dict "value" .Values.commonAnnotations "context" $ ) | nindent 4 }}
|
|
{{- end }}
|
|
namespace: {{ .Release.Namespace }}
|
|
spec:
|
|
{{- $podLabels := include "common.tplvalues.merge" ( dict "values" ( list .Values.podLabels .Values.commonLabels ) "context" . ) }}
|
|
podSelector:
|
|
matchLabels: {{- include "common.labels.matchLabels" ( dict "customLabels" $podLabels "context" $ ) | nindent 6 }}
|
|
ingress:
|
|
# Allow inbound connections
|
|
- ports: {{- include "tomcat.ports" . | nindent 8 }}
|
|
{{- if not .Values.networkPolicy.allowExternal }}
|
|
from:
|
|
- podSelector:
|
|
matchLabels:
|
|
{{ template "common.names.fullname" . }}-client: "true"
|
|
{{- if .Values.networkPolicy.explicitNamespacesSelector }}
|
|
namespaceSelector:
|
|
{{ toYaml .Values.networkPolicy.explicitNamespacesSelector | indent 12 }}
|
|
{{- end }}
|
|
# Allow communication between Tomcat's POD
|
|
- podSelector:
|
|
matchLabels: {{- include "common.labels.matchLabels" ( dict "customLabels" $podLabels "context" $ ) | nindent 14 }}
|
|
{{- end }}
|
|
{{- if .Values.metrics.jmx.enabled }}
|
|
# Allow prometheus scrapes
|
|
- ports:
|
|
- port: {{ .Values.metrics.jmx.ports.metrics }}
|
|
{{- end }}
|
|
{{- end }}
|