Files
hello-cicd/k8s/service.yaml
danielvasic 31d774b751
Some checks failed
CI/CD Pipeline / build (push) Has been cancelled
CI/CD Pipeline / deploy (push) Has been cancelled
init: hello-cicd project setup
2026-04-14 12:44:00 +02:00

14 lines
207 B
YAML

# k8s/service.yaml
apiVersion: v1
kind: Service
metadata:
name: hello-cicd-svc
namespace: student-dvasic
spec:
selector:
app: hello-cicd
ports:
- port: 80
targetPort: 8000
type: NodePort