From 2a9eaf06bcdf609711d3e2797bb3b2453fb2fc78 Mon Sep 17 00:00:00 2001 From: Oscar Beaumont Date: Wed, 24 Nov 2021 04:39:49 +1100 Subject: [PATCH] fixed incorrect selector for SMTP service The selector was set incorrectly and hence would point to nothing causing 500 errors when sending emails. I must have not tested with SMTP when I originally created the Kubernetes configurations hence this mistake made it through. --- kubernetes/plausible-mail.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kubernetes/plausible-mail.yaml b/kubernetes/plausible-mail.yaml index b551ef7..fe263a0 100644 --- a/kubernetes/plausible-mail.yaml +++ b/kubernetes/plausible-mail.yaml @@ -15,7 +15,7 @@ spec: protocol: TCP selector: app.kubernetes.io/name: smtp - app.kubernetes.io/component: database + app.kubernetes.io/component: email app.kubernetes.io/part-of: plausible --- apiVersion: apps/v1