diff --git a/resources/deployment.yaml b/resources/deployment.yaml index 5c013c5..296c4cb 100644 --- a/resources/deployment.yaml +++ b/resources/deployment.yaml @@ -1,20 +1,20 @@ apiVersion: apps/v1 kind: Deployment metadata: - name: testapi + name: testapi-nazar spec: - replicas: 2 + replicas: 3 revisionHistoryLimit: 4 selector: matchLabels: - app: testapi + app: testapi-nazar template: metadata: labels: - app: testapi + app: testapi-nazar spec: containers: - - image: olehzahnitko/argocd:1.1.17 - name: testapi + - image: nazarcodefresh/argo:master + name: testapi-nazar ports: - containerPort: 1700 diff --git a/resources/svc.yaml b/resources/svc.yaml index 95395d8..ab9e18c 100644 --- a/resources/svc.yaml +++ b/resources/svc.yaml @@ -1,10 +1,10 @@ apiVersion: v1 kind: Service metadata: - name: testapi + name: testapi-nazar spec: ports: - port: 80 targetPort: 1700 selector: - app: testapi + app: testapi-nazar