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

27
k8s/deployment.yaml Normal file
View File

@@ -0,0 +1,27 @@
# TODO: napiši Deployment
# Ime: k2-app | Namespace: kolokvij2-IME-PREZIME
# Replicas: 2 | Image: git.fpmoz.sum.ba/IME-PREZIME/k2-app:1.0
# containerPort: 8000 | env AUTOR=IME-PREZIME
apiVersion: apps/v1
kind: Deployment
metadata:
name: k2-app
namespace: kolokvij2-mihael-janjic
spec:
replicas: 2
selector:
matchLabels:
app: k2-app
template:
metadata:
lables:
app: k2-app
spec:
containters:
- name: k2-app
image: git.fpmoz.sum.ba/mihaeljanjic/k2-app:1.0
ports:
- containerPort: 8000
env:
- name: AUTOR
value: "Mihael Janjic"