From 8a3b098514e5f4f10c4d275e254525bada28f63d Mon Sep 17 00:00:00 2001 From: Simon Walker Date: Mon, 16 Dec 2024 22:38:18 +0000 Subject: [PATCH] Support exposing DNS UDP for service --- charts/localstack/templates/deployment.yaml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/charts/localstack/templates/deployment.yaml b/charts/localstack/templates/deployment.yaml index 3cb1086..f0b40b1 100644 --- a/charts/localstack/templates/deployment.yaml +++ b/charts/localstack/templates/deployment.yaml @@ -66,8 +66,12 @@ spec: protocol: TCP {{- end }} {{- if .Values.service.dnsService }} - - name: dns-svc + - name: dns-svc-tcp containerPort: 53 + protocol: TCP + - name: dns-svc-udp + containerPort: 53 + protocol: UDP {{- end }} livenessProbe: {{- toYaml .Values.livenessProbe | nindent 12 }}