Files
infrastructure/servers/legion/k8s/plane/worker.yaml
T
Will Anderson 2d98df75ad 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.
2026-04-24 14:21:02 -05:00

36 lines
789 B
YAML

apiVersion: apps/v1
kind: Deployment
metadata:
name: plane-worker
namespace: plane
spec:
replicas: 1
selector:
matchLabels:
app: plane-worker
template:
metadata:
labels:
app: plane-worker
spec:
containers:
- name: plane-worker
image: makeplane/plane-backend:stable
command: ["./bin/worker"]
envFrom:
- configMapRef:
name: plane-config
env:
- name: SECRET_KEY
valueFrom:
secretKeyRef:
name: plane-secrets
key: secret_key
resources:
requests:
cpu: 100m
memory: 256Mi
limits:
cpu: 500m
memory: 512Mi