mirror of
https://github.com/ktds-dg0501/kt-event-marketing.git
synced 2025-12-06 17:26:23 +00:00
42 lines
865 B
YAML
42 lines
865 B
YAML
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
name: kt-event-prototype
|
|
namespace: kt-event-marketing
|
|
labels:
|
|
app: kt-event-prototype
|
|
tier: frontend
|
|
component: prototype
|
|
spec:
|
|
replicas: 1
|
|
selector:
|
|
matchLabels:
|
|
app: kt-event-prototype
|
|
template:
|
|
metadata:
|
|
labels:
|
|
app: kt-event-prototype
|
|
tier: frontend
|
|
component: prototype
|
|
spec:
|
|
containers:
|
|
- name: nginx
|
|
image: acrdigitalgarage01.azurecr.io/kt-event-prototype:latest
|
|
imagePullPolicy: Always
|
|
ports:
|
|
- name: http
|
|
containerPort: 80
|
|
protocol: TCP
|
|
|
|
# 리소스 제한
|
|
resources:
|
|
requests:
|
|
cpu: 100m
|
|
memory: 128Mi
|
|
limits:
|
|
cpu: 200m
|
|
memory: 256Mi
|
|
|
|
# 재시작 정책
|
|
restartPolicy: Always
|