mirror of
https://github.com/overleaf/overleaf.git
synced 2024-10-31 21:21:03 -04:00
41 lines
699 B
YAML
41 lines
699 B
YAML
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
name: clsi
|
|
namespace: default
|
|
spec:
|
|
type: LoadBalancer
|
|
ports:
|
|
- port: 80
|
|
protocol: TCP
|
|
targetPort: 80
|
|
selector:
|
|
run: clsi
|
|
---
|
|
apiVersion: extensions/v1beta1
|
|
kind: Deployment
|
|
metadata:
|
|
name: clsi
|
|
namespace: default
|
|
spec:
|
|
replicas: 2
|
|
template:
|
|
metadata:
|
|
labels:
|
|
run: clsi
|
|
spec:
|
|
containers:
|
|
- name: clsi
|
|
image: gcr.io/henry-terraform-admin/clsi
|
|
imagePullPolicy: Always
|
|
readinessProbe:
|
|
httpGet:
|
|
path: status
|
|
port: 80
|
|
periodSeconds: 5
|
|
initialDelaySeconds: 0
|
|
failureThreshold: 3
|
|
successThreshold: 1
|
|
|
|
|
|
|