forked from wormhole-foundation/wormhole
-
Notifications
You must be signed in to change notification settings - Fork 0
/
wormchain.yaml
129 lines (129 loc) · 2.73 KB
/
wormchain.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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
# Service for pods in the StatefulSet, for RPC clients.
# these ports are exposed to the host OS via Tiltfile config.
apiVersion: v1
kind: Service
metadata:
labels:
app: wormchain
name: wormchain
spec:
ports:
- name: rpc
port: 26657
protocol: TCP
- name: p2p
port: 26656
protocol: TCP
- name: rest
port: 1317
protocol: TCP
- name: cosmos-rpc
port: 9090
protocol: TCP
selector:
app: wormchain
---
# Service for an individual pod, so other pods can resolve it by name for p2p.
apiVersion: v1
kind: Service
metadata:
labels:
app: wormchain
name: wormchain-0
spec:
ports:
- name: rpc
port: 26657
protocol: TCP
- name: p2p
port: 26656
protocol: TCP
- name: rest
port: 1317
protocol: TCP
- name: cosmos-rpc
port: 9090
protocol: TCP
selector:
statefulset.kubernetes.io/pod-name: wormchain-0
---
apiVersion: apps/v1
kind: StatefulSet
metadata:
labels:
app: wormchain
name: wormchain
spec:
selector:
matchLabels:
app: wormchain
serviceName: wormchain
replicas: 1
updateStrategy:
type: RollingUpdate
template:
metadata:
labels:
app: wormchain
spec:
containers:
- name: wormchaind
image: wormchaind-image
command:
- /bin/bash
- -c
- "/app/devnet/create-config.sh; /app/build/wormchaind start"
ports:
- containerPort: 26657
name: tendermint
protocol: TCP
- containerPort: 26656
name: p2p
protocol: TCP
- containerPort: 1317
name: rest
protocol: TCP
- containerPort: 9090
name: cosmos-rpc
protocol: TCP
readinessProbe:
httpGet:
port: 26657
path: /
periodSeconds: 5
restartPolicy: Always
---
apiVersion: apps/v1
kind: StatefulSet
metadata:
labels:
app: wormchain-deploy
name: wormchain-deploy
spec:
selector:
matchLabels:
app: wormchain-deploy
replicas: 1
updateStrategy:
type: RollingUpdate
template:
metadata:
labels:
app: wormchain-deploy
spec:
containers:
- name: wormchain-deploy
image: wormchain-deploy
command:
- /bin/sh
- -c
- "npm run deploy-wormchain --prefix=/app/tools && touch /app/tools/success && sleep infinity"
readinessProbe:
exec:
command:
- test
- -e
- "/app/tools/success"
initialDelaySeconds: 5
periodSeconds: 5
restartPolicy: Always