91bfc42989
Scaled to replicas: 0: fornax (coordinator/ui/workers), jellyfin via media, overseerr, plex, radarr, sonarr, bazarr, prowlarr, flaresolverr, ollama, harmonic-wordpress, docuseal, listmonk, memos, plane, redpanda, wp-coordinator
51 lines
1015 B
YAML
51 lines
1015 B
YAML
---
|
|
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
name: plane-web
|
|
namespace: plane
|
|
spec:
|
|
replicas: 0
|
|
selector:
|
|
matchLabels:
|
|
app: plane-web
|
|
template:
|
|
metadata:
|
|
labels:
|
|
app: plane-web
|
|
spec:
|
|
containers:
|
|
- name: plane-web
|
|
image: makeplane/plane-frontend:stable
|
|
ports:
|
|
- containerPort: 3000
|
|
env:
|
|
- name: NEXT_PUBLIC_API_BASE_URL
|
|
value: "https://plane.neuralplatform.ai"
|
|
readinessProbe:
|
|
httpGet:
|
|
path: /
|
|
port: 3000
|
|
initialDelaySeconds: 20
|
|
periodSeconds: 10
|
|
failureThreshold: 6
|
|
resources:
|
|
requests:
|
|
cpu: 100m
|
|
memory: 256Mi
|
|
limits:
|
|
cpu: 500m
|
|
memory: 512Mi
|
|
---
|
|
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
name: plane-web
|
|
namespace: plane
|
|
spec:
|
|
selector:
|
|
app: plane-web
|
|
ports:
|
|
- port: 3000
|
|
targetPort: 3000
|