mirror of
https://github.com/hwanny1128/HGZero.git
synced 2025-12-06 17:16:25 +00:00
43 lines
910 B
YAML
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
|