Files
dev-cluster/apps/base/ghost/deployment.yaml

35 lines
650 B
YAML

apiVersion: apps/v1
kind: Deployment
metadata:
name: ghost
namespace: ghost
labels:
app: ghost
spec:
replicas: 1
selector:
matchLabels:
app: ghost
template:
metadata:
labels:
app: ghost
spec:
containers:
- name: ghost
image: ghost:5-alpine
ports:
- containerPort: 2368
name: http
env:
- name: database__client
value: sqlite3
- name: NODE_ENV
value: production
resources:
limits:
cpu: 500m
memory: 512Mi
requests:
cpu: 100m
memory: 256Mi