Deploy Plane project management to k8s with Cloudflare Access gate

Adds all k8s manifests (namespace, postgres, redis, api, worker, beat,
web, ingress, externalsecret, configmap, kustomization), Argo CD Application,
and Cloudflare Zero Trust access policy for plane.neuralplatform.ai.
This commit is contained in:
Will Anderson
2026-04-24 14:21:02 -05:00
parent e901b9a541
commit 2d98df75ad
13 changed files with 438 additions and 0 deletions
+35
View File
@@ -0,0 +1,35 @@
apiVersion: apps/v1
kind: Deployment
metadata:
name: plane-beat
namespace: plane
spec:
replicas: 1
selector:
matchLabels:
app: plane-beat
template:
metadata:
labels:
app: plane-beat
spec:
containers:
- name: plane-beat
image: makeplane/plane-backend:stable
command: ["./bin/beat"]
envFrom:
- configMapRef:
name: plane-config
env:
- name: SECRET_KEY
valueFrom:
secretKeyRef:
name: plane-secrets
key: secret_key
resources:
requests:
cpu: 50m
memory: 128Mi
limits:
cpu: 200m
memory: 256Mi