diff --git a/argocd/example-app/deployment.yaml b/argocd/example-app/deployment.yaml index 86ed034..952772e 100644 --- a/argocd/example-app/deployment.yaml +++ b/argocd/example-app/deployment.yaml @@ -16,4 +16,4 @@ spec: - name: argocd-example-app image: liquidreply/argocd-example-app:1 ports: - - containerPort: 3000 # Assuming your app runs on port 3000 + - containerPort: 80 # Assuming your app runs on port 3000 diff --git a/argocd/example-app/service.yaml b/argocd/example-app/service.yaml index a8958ab..1536287 100644 --- a/argocd/example-app/service.yaml +++ b/argocd/example-app/service.yaml @@ -7,6 +7,6 @@ spec: selector: app: argocd-example-app ports: - - port: 3000 - targetPort: 3000 + - port: 80 + targetPort: 80 nodePort: 31000 # Optional: Kubernetes will choose a port if this is omitted