kubernetes-up-and-running/14-4-ghost.yaml
Lachlan Evenson 3fc8603078
manifest API updates to support current Kubernetes versions
Signed-off-by: Lachlan Evenson <lachlan.evenson@gmail.com>
2023-11-14 20:14:34 -08:00

31 lines
613 B
YAML

apiVersion: apps/v1
kind: Deployment
metadata:
name: ghost
spec:
replicas: 1
selector:
matchLabels:
run: ghost
template:
metadata:
labels:
run: ghost
spec:
containers:
- image: ghost
name: ghost
command:
- sh
- -c
- cp /ghost-config/ghost-config.js /var/lib/ghost/config.js
&& docker-entrypoint.sh node current/index.js
volumeMounts:
- mountPath: /ghost-config
name: config
volumes:
- name: config
configMap:
defaultMode: 420
name: ghost-config