fdirst commit

This commit is contained in:
2026-06-23 12:32:41 +02:00
commit b196b3d80d
7 changed files with 100 additions and 0 deletions

16
k8s/service.yaml Normal file
View File

@@ -0,0 +1,16 @@
# TODO: napiši Service
# Ime: k2-svc | Namespace: kolokvij2-IME-PREZIME
# Tip: ClusterIP | port: 80 -> targetPort: 8000
apiVersion: v1
kind: Service
metadata:
name: k2-svc
namespace: kolokvij2-mihael-janjic
spec:
selector:
app: k2-app
ports:
- port: 80
targetPort: 8000
protocol: TCP
type: ClusterIP