aboutsummaryrefslogtreecommitdiffstats
path: root/kubernetes/namespaces/web/ghost/deployment.yaml
diff options
context:
space:
mode:
authorGravatar Chris Lovering <[email protected]>2024-07-22 16:14:35 +0100
committerGravatar Chris Lovering <[email protected]>2024-07-22 16:14:35 +0100
commit216cfcfc51190d98422883febc83b6511f745039 (patch)
tree4cae851dde77c5192b4d5ef70bd4620b3a92d515 /kubernetes/namespaces/web/ghost/deployment.yaml
parentPoint blog DNS to netlify (diff)
Remove ghost blog
Diffstat (limited to 'kubernetes/namespaces/web/ghost/deployment.yaml')
-rw-r--r--kubernetes/namespaces/web/ghost/deployment.yaml43
1 files changed, 0 insertions, 43 deletions
diff --git a/kubernetes/namespaces/web/ghost/deployment.yaml b/kubernetes/namespaces/web/ghost/deployment.yaml
deleted file mode 100644
index 8471cfe..0000000
--- a/kubernetes/namespaces/web/ghost/deployment.yaml
+++ /dev/null
@@ -1,43 +0,0 @@
-apiVersion: apps/v1
-kind: Deployment
-metadata:
- name: ghost
- namespace: web
-spec:
- replicas: 1
- strategy:
- type: Recreate
- selector:
- matchLabels:
- app: ghost
- template:
- metadata:
- labels:
- app: ghost
- spec:
- securityContext:
- fsGroup: 2000
- runAsUser: 1000
- runAsNonRoot: true
- containers:
- - name: ghost
- image: ghost:5.88-alpine
- imagePullPolicy: Always
- ports:
- - containerPort: 2368
- env:
- - name: url
- value: https://blog.pythondiscord.com
- - name: database__client
- value: sqlite3
- - name: database__connection__filename
- value: /var/lib/ghost/content/data/ghost.db
- volumeMounts:
- - mountPath: /var/lib/ghost/content
- name: ghost-data
- securityContext:
- readOnlyRootFilesystem: true
- volumes:
- - name: ghost-data
- persistentVolumeClaim:
- claimName: ghost-storage