Files
invyone_homepage/k8s/deployment.yaml
T
chpark 79c1d4ac82
Build & Deploy Homepage / build-and-deploy (push) Successful in 9s
feat: initial homepage with k8s auto-deploy
- 반응형 랜딩 페이지 (hero, features, how-it-works, solutions, AI agent, use cases, architecture, testimonials, FAQ, CTA)
- 모든 체험/로그인 CTA는 https://solution.invyone.com/login 으로 연결
- Dockerfile + nginx 설정으로 정적 파일 서빙
- k8s manifests (namespace/deployment/service NodePort 30082)
- Gitea Actions 자동 배포 워크플로우
2026-04-20 15:16:03 +09:00

49 lines
1.0 KiB
YAML

apiVersion: apps/v1
kind: Deployment
metadata:
name: homepage
namespace: invyone-homepage
labels:
app: homepage
spec:
replicas: 1
strategy:
type: RollingUpdate
rollingUpdate:
maxSurge: 1
maxUnavailable: 0
selector:
matchLabels:
app: homepage
template:
metadata:
labels:
app: homepage
spec:
containers:
- name: homepage
image: localhost:5000/invyone/homepage:latest
imagePullPolicy: Always
ports:
- containerPort: 80
name: http
resources:
requests:
cpu: 20m
memory: 32Mi
limits:
cpu: 200m
memory: 128Mi
readinessProbe:
httpGet:
path: /healthz
port: 80
initialDelaySeconds: 2
periodSeconds: 5
livenessProbe:
httpGet:
path: /healthz
port: 80
initialDelaySeconds: 10
periodSeconds: 15