mirror of
https://github.com/lordmathis/dev-cluster.git
synced 2025-12-23 00:54:26 +00:00
37 lines
751 B
YAML
37 lines
751 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: database__connection__filename
|
|
value: /var/lib/ghost/content/data/ghost.db
|
|
- name: NODE_ENV
|
|
value: production
|
|
resources:
|
|
limits:
|
|
cpu: 500m
|
|
memory: 512Mi
|
|
requests:
|
|
cpu: 100m
|
|
memory: 256Mi |