From 7bc2170ffbc04044a48a3c870e4c2feed1c409d9 Mon Sep 17 00:00:00 2001 From: Camp Date: Fri, 4 Jul 2025 12:31:40 -0400 Subject: [PATCH] fix(newt): add SSL ca cert mount Add the missing ssl CA certificates. Signed-off-by: Camp Signed-off-by: Noel Georgi --- network/newt/newt.yaml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/network/newt/newt.yaml b/network/newt/newt.yaml index 7e81589..6b3e4ef 100644 --- a/network/newt/newt.yaml +++ b/network/newt/newt.yaml @@ -9,4 +9,12 @@ depends: - configuration: true container: entrypoint: /usr/local/bin/newt + mounts: + # Mount CA root certificates as the endpoints will be signed by Let's Encrypt + - source: /etc/ssl/certs + destination: /etc/ssl/certs + type: bind + options: + - rbind + - ro restart: always