feat: Add nginx service

This commit is contained in:
2025-11-28 23:27:22 +05:30
parent ca3ed48737
commit a0753818db
5 changed files with 63 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
apiVersion: apps/v1
kind: Deployment
metadata:
name: nginx
labels:
app: nginx
spec:
replicas: 2
selector:
matchLabels:
app: nginx
template:
metadata:
labels:
app: nginx
spec:
containers:
- name: nginx
image: nginx:1.29-alpine-slim
ports:
- containerPort: 80