diff --git a/k8s/moj-servis/deployment.yaml b/k8s/moj-servis/deployment.yaml index db71ce8..125ee38 100644 --- a/k8s/moj-servis/deployment.yaml +++ b/k8s/moj-servis/deployment.yaml @@ -1,20 +1,20 @@ apiVersion: apps/v1 kind: Deployment metadata: - name: moj-servis + name: filip-susak-moj-servis namespace: studenti spec: replicas: 2 selector: matchLabels: - app: moj-servis + app: filip-susak-moj-servis template: metadata: labels: - app: moj-servis + app: filip-susak-moj-servis spec: containers: - - name: moj-servis + - name: filip-susak-moj-servis image: git.fpmoz.sum.ba/fsusak03/moj-servis:1.0 ports: - containerPort: 8000 \ No newline at end of file diff --git a/k8s/moj-servis/service.yaml b/k8s/moj-servis/service.yaml index 611d576..eeffd77 100644 --- a/k8s/moj-servis/service.yaml +++ b/k8s/moj-servis/service.yaml @@ -1,11 +1,11 @@ apiVersion: v1 kind: Service metadata: - name: moj-servis-svc + name: filip-susak-moj-servis-svc namespace: studenti spec: selector: - app: moj-servis + app: filip-susak-moj-servis ports: - port: 80 targetPort: 8000