Files
invyone/k8s/frontend.yaml
chpark 39fdc2683e
Build & Deploy to K8s / build-and-deploy (push) Failing after 7s
fix: selectCompanyName LIMIT 1 추가 및 K8s 배포 설정 추가
2026-04-11 17:09:40 +00:00

74 lines
1.7 KiB
YAML

apiVersion: apps/v1
kind: Deployment
metadata:
name: frontend
namespace: invyone
labels:
app: frontend
spec:
replicas: 1
selector:
matchLabels:
app: frontend
template:
metadata:
labels:
app: frontend
spec:
containers:
- name: frontend
image: localhost:5000/invyone/frontend:latest
ports:
- containerPort: 3000
env:
- name: NODE_ENV
value: "production"
- name: NEXT_PUBLIC_API_URL
valueFrom:
configMapKeyRef:
name: invyone-config
key: NEXT_PUBLIC_API_URL
- name: SERVER_API_URL
value: "http://backend-spring.invyone.svc.cluster.local:8081"
- name: NEXT_TELEMETRY_DISABLED
value: "1"
- name: PORT
value: "3000"
- name: HOSTNAME
value: "0.0.0.0"
resources:
requests:
cpu: 100m
memory: 256Mi
limits:
cpu: 500m
memory: 512Mi
livenessProbe:
tcpSocket:
port: 3000
initialDelaySeconds: 20
periodSeconds: 30
timeoutSeconds: 5
failureThreshold: 3
readinessProbe:
tcpSocket:
port: 3000
initialDelaySeconds: 10
periodSeconds: 10
timeoutSeconds: 5
failureThreshold: 3
---
apiVersion: v1
kind: Service
metadata:
name: frontend
namespace: invyone
spec:
type: NodePort
selector:
app: frontend
ports:
- port: 3000
targetPort: 3000
nodePort: 30000