From 5ff78ca34671d047d44923e47a0a21f22ee937bb Mon Sep 17 00:00:00 2001 From: DontDDoS Date: Sat, 10 Jan 2026 13:43:46 +0000 Subject: [PATCH] Deployed newt --- kubernetes/newt/newt/deployment.yaml | 30 ++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 kubernetes/newt/newt/deployment.yaml diff --git a/kubernetes/newt/newt/deployment.yaml b/kubernetes/newt/newt/deployment.yaml new file mode 100644 index 0000000..036c434 --- /dev/null +++ b/kubernetes/newt/newt/deployment.yaml @@ -0,0 +1,30 @@ +apiVersion: apps/v1 +kind: Deployment +metadata: + name: newt + namespace: newt +spec: + selector: + matchLabels: + app: newt + template: + metadata: + labels: + app: newt + spec: + containers: + - name: newt + image: fosrl/newt + env: + - name: PANGOLIN_ENDPOINT + value: "https://pangolin.dontddos.me" + - name: NEWT_ID + valueFrom: + secretKeyRef: + key: newt-id + name: newt-secret + - name: NEWT_SECRET + valueFrom: + secretKeyRef: + key: newt-secret + name: newt-secret