nxtgauge-gitops/apps/nxtgauge-backend-rust/base/cron-deployment.yaml
Tracewebstudio Dev 5312f60bf8 fix: remove namespace from all deployment files
Namespace is now managed by Argo's spec.destination.namespace (nxtgauge)
This stops the permanent OutOfSync noise from duplicate namespace definitions.
2026-04-13 18:24:19 +02:00

32 lines
749 B
YAML

apiVersion: apps/v1
kind: Deployment
metadata:
name: nxtgauge-rust-cron
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: registry.nxtgauge.com:5000/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