| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- ---
- apiVersion: v1
- kind: Service
- metadata:
- name: explorer
- labels:
- app: explorer
- spec:
- ports:
- - port: 8001
- name: http
- protocol: TCP
- clusterIP: None
- selector:
- app: explorer
- ---
- apiVersion: apps/v1
- kind: StatefulSet
- metadata:
- name: explorer
- spec:
- selector:
- matchLabels:
- app: explorer
- serviceName: explorer
- replicas: 1
- template:
- metadata:
- labels:
- app: explorer
- spec:
- terminationGracePeriodSeconds: 1
- containers:
- - name: explorer
- image: explorer
- command:
- - /usr/local/bin/npm
- - run
- - serve
- tty: true
- ports:
- - containerPort: 8001
- name: gatsbyserver
- protocol: TCP
- readinessProbe:
- httpGet:
- port: gatsbyserver
- path: /
|