33 lines
688 B
YAML
33 lines
688 B
YAML
---
|
|
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
name: rfi-frontend
|
|
namespace: rfi
|
|
labels:
|
|
app: rfi-frontend
|
|
spec:
|
|
replicas: 1
|
|
selector:
|
|
matchLabels:
|
|
app: rfi-frontend
|
|
template:
|
|
metadata:
|
|
labels:
|
|
app: rfi-frontend
|
|
spec:
|
|
containers:
|
|
- name: rfi-frontend
|
|
image: cr.yandex/crp3ccidau046kdj8g9q/rfi-frontend:production_b827756f_wb
|
|
imagePullPolicy: IfNotPresent
|
|
ports:
|
|
- name: http
|
|
containerPort: 80
|
|
protocol: TCP
|
|
resources:
|
|
requests:
|
|
cpu: 100m
|
|
memory: 100Mi
|
|
imagePullSecrets:
|
|
- name: dockerhub
|