Remove Docker-related files - using pure Node.js deployment

This commit is contained in:
Unchained
2026-03-07 06:20:00 +02:00
parent e1120f617e
commit 72fe1d4079
4 changed files with 0 additions and 242 deletions

View File

@@ -1,43 +0,0 @@
apiVersion: apps/v1
kind: Deployment
metadata:
name: storefront
namespace: manoonoils
labels:
app: storefront
spec:
replicas: 1
selector:
matchLabels:
app: storefront
template:
metadata:
labels:
app: storefront
spec:
containers:
- name: storefront
image: manoonoils-store:latest
imagePullPolicy: Never
ports:
- containerPort: 3000
env:
- name: NODE_ENV
value: "production"
- name: PORT
value: "3000"
- name: HOSTNAME
value: "0.0.0.0"
startupProbe:
httpGet:
path: /
port: 3000
periodSeconds: 10
failureThreshold: 30
resources:
requests:
memory: "128Mi"
cpu: "100m"
limits:
memory: "512Mi"
cpu: "500m"