-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathghost.yaml
42 lines (42 loc) · 929 Bytes
/
ghost.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
---
kind: "Deployment"
apiVersion: "apps/v1"
metadata:
annotations: {}
name: "ghost"
labels:
nirmata.io/deployment.name: "ghost"
nirmata.io/component: "ghost"
spec:
minReadySeconds: 60
progressDeadlineSeconds: 90
replicas: 3
revisionHistoryLimit: 5
selector:
matchLabels:
nirmata.io/deployment.name: "ghost"
nirmata.io/component: "ghost"
matchExpressions: []
strategy:
type: "Recreate"
template:
metadata:
annotations: {}
labels:
nirmata.io/deployment.name: "ghost"
nirmata.io/component: "ghost:latest"
spec:
terminationGracePeriodSeconds: 30
nodeSelector: {}
volumes:
- name: "volume"
emptyDir: {}
containers:
- name: "ghost"
image: "ghcr.io/nirmata/ghost"
command: []
args: []
ports:
- name: "http"
containerPort: 2369
protocol: "TCP"