Add k8s manifest: service-nginx.yaml

This commit is contained in:
kaffa
2026-03-12 14:26:10 +09:00
parent d3a943790d
commit 5b707a4388

View File

@@ -0,0 +1,12 @@
apiVersion: v1
kind: Service
metadata:
name: nginx
spec:
type: NodePort
selector:
app: nginx
ports:
- port: 80
targetPort: 80
nodePort: 30297