| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129 |
- # 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
|