nxtgauge-gitops/apps/nxtgauge-backend-rust/base/cron-deployment.yaml
Ashwin Kumar abfa43f85f feat: add K8s manifests and ArgoCD Applications for new Rust/SolidStart stack
Adds Kustomize base+prod overlays for nxtgauge-frontend-solid,
nxtgauge-admin-solid, and nxtgauge-backend-rust (18 services).
ArgoCD Image Updater configured for auto-deploy on high-performance-latest tag.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-04-09 00:48:46 +02:00

33 lines
767 B
YAML

apiVersion: apps/v1
kind: Deployment
metadata:
name: nxtgauge-rust-cron
namespace: nxtgauge
labels:
app: nxtgauge-rust-cron
spec:
replicas: 1
selector:
matchLabels:
app: nxtgauge-rust-cron
template:
metadata:
labels:
app: nxtgauge-rust-cron
spec:
containers:
- name: cron
image: ghcr.io/traceworks2023/nxtgauge-rust-cron
imagePullPolicy: Always
envFrom:
- configMapRef:
name: nxtgauge-backend-rust-config
- secretRef:
name: nxtgauge-backend-rust-secrets
resources:
requests:
cpu: 50m
memory: 64Mi
limits:
cpu: 200m
memory: 128Mi