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>
52 lines
1.3 KiB
YAML
52 lines
1.3 KiB
YAML
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
name: nxtgauge-rust-video-editors
|
|
namespace: nxtgauge
|
|
labels:
|
|
app: nxtgauge-rust-video-editors
|
|
spec:
|
|
replicas: 1
|
|
selector:
|
|
matchLabels:
|
|
app: nxtgauge-rust-video-editors
|
|
template:
|
|
metadata:
|
|
labels:
|
|
app: nxtgauge-rust-video-editors
|
|
spec:
|
|
containers:
|
|
- name: video_editors
|
|
image: ghcr.io/traceworks2023/nxtgauge-rust-video-editors
|
|
imagePullPolicy: Always
|
|
ports:
|
|
- containerPort: 8089
|
|
name: http
|
|
envFrom:
|
|
- configMapRef:
|
|
name: nxtgauge-backend-rust-config
|
|
- secretRef:
|
|
name: nxtgauge-backend-rust-secrets
|
|
readinessProbe:
|
|
httpGet:
|
|
path: /health
|
|
port: 8089
|
|
initialDelaySeconds: 10
|
|
periodSeconds: 10
|
|
timeoutSeconds: 3
|
|
failureThreshold: 3
|
|
livenessProbe:
|
|
httpGet:
|
|
path: /health
|
|
port: 8089
|
|
initialDelaySeconds: 20
|
|
periodSeconds: 20
|
|
timeoutSeconds: 3
|
|
failureThreshold: 5
|
|
resources:
|
|
requests:
|
|
cpu: 50m
|
|
memory: 64Mi
|
|
limits:
|
|
cpu: 500m
|
|
memory: 256Mi
|