hgzero/deployment/uiux/k8s/deployment.yaml
2025-10-31 13:28:31 +09:00

43 lines
910 B
YAML

apiVersion: apps/v1
kind: Deployment
metadata:
name: hgzero-uiux-prototype
namespace: hgzero
labels:
app: hgzero-uiux-prototype
tier: frontend
version: v1.0.0
spec:
replicas: 1
selector:
matchLabels:
app: hgzero-uiux-prototype
template:
metadata:
labels:
app: hgzero-uiux-prototype
tier: frontend
version: v1.0.0
spec:
containers:
- name: nginx
image: acrdigitalgarage02.azurecr.io/hgzero-uiux-prototype:latest
imagePullPolicy: IfNotPresent
ports:
- containerPort: 80
name: http
protocol: TCP
resources:
requests:
cpu: 50m
memory: 64Mi
limits:
cpu: 200m
memory: 128Mi
env:
- name: TZ
value: "Asia/Seoul"
restartPolicy: Always
terminationGracePeriodSeconds: 5