Simplify to test

This commit is contained in:
j 2025-06-30 15:11:27 +10:00
parent 22f9e85e07
commit d98fb47899

View file

@ -2,10 +2,8 @@ apiVersion: apps/v1
kind: Deployment kind: Deployment
metadata: metadata:
name: nginx name: nginx
labels:
app: nginx
spec: spec:
replicas: 2 replicas: 1
selector: selector:
matchLabels: matchLabels:
app: nginx app: nginx
@ -19,16 +17,3 @@ spec:
image: nginx:1.25 image: nginx:1.25
ports: ports:
- containerPort: 80 - containerPort: 80
---
apiVersion: v1
kind: Service
metadata:
name: nginx
spec:
type: ClusterIP
selector:
app: nginx
ports:
- port: 80
targetPort: 80