This commit is contained in:
2026-03-31 12:03:07 +02:00
parent 3da273a379
commit 9d52f7d4db
2 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,28 @@
# k8s/moj-servis/deployment.yaml
apiVersion: apps/v1
kind: Deployment
metadata:
name: moj-servis
namespace: student-iva
spec:
replicas: 1
selector:
matchLabels:
app: moj-servis
template:
metadata:
labels:
app: moj-servis
spec:
containers:
- name: moj-servis
image: git.fpmoz.sum.ba/iva/moj-servis:1.0
ports:
- containerPort: 8000
resources:
requests:
memory: "64Mi"
cpu: "50m"
limits:
memory: "128Mi"
cpu: "200m"

View File

@@ -0,0 +1,14 @@
# k8s/moj-servis/service.yaml
apiVersion: v1
kind: Service
metadata:
name: moj-servis-svc
namespace: student-iva
spec:
selector:
app: moj-servis
ports:
- port: 80
targetPort: 8000
protocol: TCP
type: NodePort