mirror of
https://github.com/lordmathis/dev-cluster.git
synced 2025-12-22 16:44:24 +00:00
20 lines
424 B
YAML
20 lines
424 B
YAML
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
name: ghost
|
|
namespace: ghost
|
|
spec:
|
|
template:
|
|
spec:
|
|
containers:
|
|
- name: ghost
|
|
env:
|
|
- name: url
|
|
value: https://${GHOST_DOMAIN}
|
|
volumeMounts:
|
|
- name: ghost-content
|
|
mountPath: /var/lib/ghost/content
|
|
volumes:
|
|
- name: ghost-content
|
|
persistentVolumeClaim:
|
|
claimName: ghost-content |