deployment yaml file

This commit is contained in:
2026-02-16 16:33:27 +00:00
commit 824a3ec8de

44
k8s/deployment.yaml Normal file
View File

@@ -0,0 +1,44 @@
apiVersion: apps/v1
kind: Deployment
metadata:
name: nodejs-app
namespace: apps
spec:
replicas: 2
selector:
matchLabels:
app: nodejs-app
template:
metadata:
labels:
app: nodejs-app
spec:
imagePullSecrets:
- name: harbor-secret
containers:
- name: nodejs-app
image: <your-harbor-domain>/library/nodejs-app:1
ports:
- containerPort: 3000
env:
- name: APP_VERSION
value: "1.0.0"
livenessProbe:
httpGet:
path: /health
port: 3000
initialDelaySeconds: 10
periodSeconds: 10
readinessProbe:
httpGet:
path: /health
port: 3000
initialDelaySeconds: 5
periodSeconds: 5
resources:
requests:
cpu: "50m"
memory: "64Mi"
limits:
cpu: "200m"
memory: "128Mi"