From d277ddfa33dac47234b92489b2987d19ad823451 Mon Sep 17 00:00:00 2001 From: sync-test Date: Tue, 21 Jul 2026 05:34:01 +0530 Subject: [PATCH] chore(gitops): delete orphaned leads manifests MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit leads-deployment.yaml and leads-service.yaml were already removed from kustomization.yaml's resources list in the prior commit (e51f199) — these were just the leftover, unreferenced files themselves. --- .../base/leads-deployment.yaml | 56 ------------------- .../base/leads-service.yaml | 16 ------ 2 files changed, 72 deletions(-) delete mode 100644 apps/nxtgauge-backend-rust/base/leads-deployment.yaml delete mode 100644 apps/nxtgauge-backend-rust/base/leads-service.yaml diff --git a/apps/nxtgauge-backend-rust/base/leads-deployment.yaml b/apps/nxtgauge-backend-rust/base/leads-deployment.yaml deleted file mode 100644 index 5de1bfe..0000000 --- a/apps/nxtgauge-backend-rust/base/leads-deployment.yaml +++ /dev/null @@ -1,56 +0,0 @@ -apiVersion: apps/v1 -kind: Deployment -metadata: - name: nxtgauge-rust-leads - labels: - app: nxtgauge-rust-leads -spec: - replicas: 1 - selector: - matchLabels: - app: nxtgauge-rust-leads - template: - metadata: - labels: - app: nxtgauge-rust-leads - spec: - imagePullSecrets: - - name: forgejo-regcred - containers: - - name: leads - image: ci.nxtgauge.com/ashwin/nxtgauge-rust-leads:latest - imagePullPolicy: Always - ports: - - containerPort: 9118 - name: http - envFrom: - - configMapRef: - name: nxtgauge-backend-rust-config - - secretRef: - name: nxtgauge-backend-rust-secrets - env: - - name: PORT - value: "9118" - readinessProbe: - httpGet: - path: /health - port: 9118 - initialDelaySeconds: 10 - periodSeconds: 10 - timeoutSeconds: 3 - failureThreshold: 3 - livenessProbe: - httpGet: - path: /health - port: 9118 - initialDelaySeconds: 20 - periodSeconds: 20 - timeoutSeconds: 3 - failureThreshold: 5 - resources: - requests: - cpu: 50m - memory: 64Mi - limits: - cpu: 500m - memory: 256Mi diff --git a/apps/nxtgauge-backend-rust/base/leads-service.yaml b/apps/nxtgauge-backend-rust/base/leads-service.yaml deleted file mode 100644 index d17b202..0000000 --- a/apps/nxtgauge-backend-rust/base/leads-service.yaml +++ /dev/null @@ -1,16 +0,0 @@ -apiVersion: v1 -kind: Service -metadata: - name: nxtgauge-rust-leads - namespace: nxtgauge - labels: - app: nxtgauge-rust-leads -spec: - type: ClusterIP - selector: - app: nxtgauge-rust-leads - ports: - - name: http - port: 9118 - targetPort: 9118 - protocol: TCP