34 lines
686 B
YAML
34 lines
686 B
YAML
---
|
|
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
name: frontend
|
|
namespace: remarks
|
|
labels:
|
|
app: frontend
|
|
spec:
|
|
replicas: 1
|
|
selector:
|
|
matchLabels:
|
|
app: frontend
|
|
template:
|
|
metadata:
|
|
labels:
|
|
app: frontend
|
|
version: stable
|
|
spec:
|
|
containers:
|
|
- name: frontend
|
|
image: cr.yandex/crp3ccidau046kdj8g9q/remarks-frontend:wb_002f8896
|
|
imagePullPolicy: IfNotPresent
|
|
ports:
|
|
- name: http
|
|
containerPort: 80
|
|
protocol: TCP
|
|
resources:
|
|
requests:
|
|
cpu: 25m
|
|
memory: 100Mi
|
|
imagePullSecrets:
|
|
- name: regcred
|