47 lines
1.1 KiB
YAML
47 lines
1.1 KiB
YAML
---
|
|
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
name: cross-section-static
|
|
namespace: cross-section
|
|
labels:
|
|
app: cross-section-static
|
|
spec:
|
|
replicas: 2
|
|
selector:
|
|
matchLabels:
|
|
app: cross-section-static
|
|
template:
|
|
metadata:
|
|
labels:
|
|
app: cross-section-static
|
|
spec:
|
|
containers:
|
|
- name: frontend
|
|
image: cr.yandex/crp3ccidau046kdj8g9q/cross-section-app:production_e09e648b
|
|
imagePullPolicy: IfNotPresent
|
|
ports:
|
|
- name: http
|
|
containerPort: 80
|
|
protocol: TCP
|
|
livenessProbe:
|
|
httpGet:
|
|
path: /ping
|
|
port: 80
|
|
initialDelaySeconds: 10
|
|
periodSeconds: 10
|
|
failureThreshold: 10
|
|
readinessProbe:
|
|
httpGet:
|
|
path: /ping
|
|
port: 80
|
|
initialDelaySeconds: 10
|
|
periodSeconds: 10
|
|
failureThreshold: 20
|
|
resources:
|
|
requests:
|
|
cpu: 100m
|
|
memory: 100Mi
|
|
imagePullSecrets:
|
|
- name: regcred
|