From aef669c11539ed20226e5ec96e04a0d4d1fc6788 Mon Sep 17 00:00:00 2001 From: Graham McIntire Date: Sun, 11 Jan 2026 14:37:41 -0600 Subject: [PATCH] Add Pangolin Newt site connector for home-cluster --- cluster/pangolin-newt.yaml | 51 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 51 insertions(+) create mode 100644 cluster/pangolin-newt.yaml diff --git a/cluster/pangolin-newt.yaml b/cluster/pangolin-newt.yaml new file mode 100644 index 0000000..daf5467 --- /dev/null +++ b/cluster/pangolin-newt.yaml @@ -0,0 +1,51 @@ +--- +apiVersion: v1 +kind: Namespace +metadata: + name: pangolin +--- +apiVersion: v1 +kind: Secret +metadata: + name: newt-credentials + namespace: pangolin +type: Opaque +stringData: + NEWT_ID: "mz1ixml2gg3vezk" + NEWT_SECRET: "0zwoklb1esw269r2pyf4x65dn0llgl8nnsdssmnzqbkwkv00" + PANGOLIN_ENDPOINT: "https://pangolin.w5isp.com" +--- +apiVersion: apps/v1 +kind: Deployment +metadata: + name: newt + namespace: pangolin +spec: + replicas: 1 + selector: + matchLabels: + app: newt + template: + metadata: + labels: + app: newt + spec: + containers: + - name: newt + image: fosrl/newt:latest + imagePullPolicy: Always + envFrom: + - secretRef: + name: newt-credentials + securityContext: + capabilities: + add: + - NET_ADMIN + resources: + requests: + memory: "128Mi" + cpu: "100m" + limits: + memory: "256Mi" + cpu: "200m" + restartPolicy: Always