Files
charts/bitnami/clickhouse/templates/networkpolicy.yaml

133 lines
5.3 KiB
YAML

{{- /*
Copyright Broadcom, Inc. All Rights Reserved.
SPDX-License-Identifier: APACHE-2.0
*/}}
{{- if .Values.networkPolicy.enabled }}
kind: NetworkPolicy
apiVersion: {{ include "common.capabilities.networkPolicy.apiVersion" . }}
metadata:
name: {{ include "common.names.fullname" . }}
namespace: {{ include "common.names.namespace" . | quote }}
labels: {{- include "common.labels.standard" (dict "customLabels" .Values.commonLabels "context" .) | nindent 4 }}
app.kubernetes.io/part-of: clickhouse
app.kubernetes.io/component: clickhouse
{{- if .Values.commonAnnotations }}
annotations: {{- include "common.tplvalues.render" (dict "value" .Values.commonAnnotations "context" .) | nindent 4 }}
{{- end }}
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 }}
app.kubernetes.io/part-of: clickhouse
app.kubernetes.io/component: clickhouse
policyTypes:
- Ingress
- Egress
{{- if .Values.networkPolicy.allowExternalEgress }}
egress:
- {}
{{- else }}
egress:
# Allow dns resolution
- ports:
- port: 53
protocol: UDP
- port: 53
protocol: TCP
{{- if or .Values.keeper.enabled .Values.externalZookeeper.servers }}
# Allow outbound connections to [Zoo]keeper
- ports:
{{- if .Values.keeper.enabled }}
- port: {{ .Values.keeper.containerPorts.tcp }}
{{- if .Values.tls.enabled }}
- port: {{ .Values.keeper.containerPorts.tcpSecure }}
{{- end }}
to:
{{- $keeperPodLabels := include "common.tplvalues.merge" (dict "values" (list .Values.keeper.podLabels .Values.commonLabels) "context" .) }}
- podSelector:
matchLabels: {{- include "common.labels.matchLabels" (dict "customLabels" $keeperPodLabels "context" .) | nindent 14 }}
app.kubernetes.io/part-of: clickhouse
app.kubernetes.io/component: keeper
{{- else }}
- port: {{ .Values.externalZookeeper.port }}
{{- end }}
{{- end }}
# Allow outbound connections to other cluster pods
- ports:
- port: {{ .Values.service.ports.http }}
{{- if .Values.tls.enabled }}
- port: {{ .Values.service.ports.https }}
{{- end }}
- port: {{ .Values.service.ports.tcp }}
{{- if .Values.tls.enabled }}
- port: {{ .Values.service.ports.tcpSecure }}
{{- end }}
{{- if .Values.exposeMysql }}
- port: {{ .Values.service.ports.mysql }}
{{- end }}
{{- if .Values.exposePostgresql }}
- port: {{ .Values.service.ports.postgresql }}
{{- end }}
- port: {{ .Values.service.ports.interserver }}
{{- if .Values.metrics.enabled }}
- port: {{ .Values.service.ports.metrics }}
{{- end }}
to:
- podSelector:
matchLabels: {{- include "common.labels.matchLabels" (dict "customLabels" $podLabels "context" .) | nindent 14 }}
app.kubernetes.io/part-of: clickhouse
app.kubernetes.io/component: clickhouse
{{- if .Values.networkPolicy.extraEgress }}
{{- include "common.tplvalues.render" (dict "value" .Values.networkPolicy.extraEgress "context" .) | nindent 4 }}
{{- end }}
{{- end }}
ingress:
- ports:
- port: {{ .Values.containerPorts.http }}
- port: {{ .Values.containerPorts.tcp }}
{{- if .Values.exposeMysql }}
- port: {{ .Values.containerPorts.mysql }}
{{- end }}
{{- if .Values.exposePostgresql }}
- port: {{ .Values.containerPorts.postgresql }}
{{- end }}
- port: {{ .Values.containerPorts.interserver }}
{{- if .Values.tls.enabled }}
- port: {{ .Values.containerPorts.tcpSecure }}
- port: {{ .Values.containerPorts.https }}
{{- end }}
{{- if .Values.metrics.enabled }}
- port: {{ .Values.containerPorts.metrics }}
{{- end }}
{{- if not .Values.networkPolicy.allowExternal }}
from:
- podSelector:
matchLabels: {{- include "common.labels.matchLabels" (dict "customLabels" $podLabels "context" .) | nindent 14 }}
app.kubernetes.io/part-of: clickhouse
app.kubernetes.io/component: clickhouse
{{- if .Values.networkPolicy.addExternalClientAccess }}
- podSelector:
matchLabels:
{{ include "common.names.fullname" . }}-client: "true"
{{- end }}
{{- if .Values.networkPolicy.ingressNSMatchLabels }}
- namespaceSelector:
matchLabels:
{{- range $key, $value := .Values.networkPolicy.ingressNSMatchLabels }}
{{ $key | quote }}: {{ $value | quote }}
{{- end }}
{{- if .Values.networkPolicy.ingressNSPodMatchLabels }}
podSelector:
matchLabels:
{{- range $key, $value := .Values.networkPolicy.ingressNSPodMatchLabels }}
{{ $key | quote }}: {{ $value | quote }}
{{- end }}
{{- end }}
{{- end }}
{{- end }}
{{- if .Values.networkPolicy.extraIngress }}
{{- include "common.tplvalues.render" (dict "value" .Values.networkPolicy.extraIngress "context" .) | nindent 4 }}
{{- end }}
{{- end }}