Files
argocd-apps/apps/base/netbox/valkey-deployment.yaml
T
unkin-agent da1d812eec netbox: use canonical upstream image name for redis_exporter (#434)
rke2's `registries.yaml` already rewrites upstream image names to the artifactapi mirror, so manifests must carry canonical upstream names. Only in-house `artifactapi.k8s.syd1.au.unkin.net/docker-internal/...` images stay explicit.

Changes:
- Point the netbox valkey metrics sidecar at `docker.io/oliver006/redis_exporter:v1.89.0`.

Tag unchanged. `kustomize build --enable-helm apps/overlays/au-syd1/netbox` differs from main only in that image string. No extra proxied refs in the file (the `valkey/valkey:8-alpine` container is already a bare upstream name).

Reviewed-on: #434
Co-authored-by: unkin-agent <unkin-agent@unkin.net>
Co-committed-by: unkin-agent <unkin-agent@unkin.net>
2026-08-29 21:19:27 +10:00

110 lines
3.0 KiB
YAML

---
# Standalone Valkey (Redis-compatible) for NetBox. The netbox-community chart
# bundles a Bitnami Valkey subchart, but we run our own here: it keeps image
# control in-estate (valkey/valkey, already allowlisted through the artifactapi
# dockerhub mirror), avoids the Bitnami "legacy image" churn, and matches the
# standalone-cache pattern used by litellm. One instance serves both NetBox
# databases: DB 0 = RQ task queue, DB 1 = cache. AOF persistence is enabled so
# queued background jobs survive a restart.
apiVersion: apps/v1
kind: Deployment
metadata:
name: netbox-valkey
namespace: netbox
labels:
app.kubernetes.io/name: netbox
app.kubernetes.io/component: valkey
spec:
replicas: 1
selector:
matchLabels:
app: netbox-valkey
strategy:
type: Recreate
template:
metadata:
labels:
app: netbox-valkey
app.kubernetes.io/name: netbox
app.kubernetes.io/component: valkey
spec:
securityContext:
fsGroup: 999
containers:
- name: valkey
image: valkey/valkey:8-alpine
imagePullPolicy: IfNotPresent
command:
- valkey-server
- --appendonly
- "yes"
- --save
- "60"
- "1"
ports:
- containerPort: 6379
name: valkey
protocol: TCP
securityContext:
allowPrivilegeEscalation: false
runAsNonRoot: true
runAsUser: 999
capabilities:
drop:
- ALL
livenessProbe:
exec:
command:
- valkey-cli
- ping
failureThreshold: 3
initialDelaySeconds: 30
periodSeconds: 30
successThreshold: 1
timeoutSeconds: 5
readinessProbe:
exec:
command:
- valkey-cli
- ping
failureThreshold: 3
initialDelaySeconds: 5
periodSeconds: 10
successThreshold: 1
timeoutSeconds: 5
resources:
limits:
cpu: 500m
memory: 512Mi
requests:
cpu: 50m
memory: 128Mi
volumeMounts:
- mountPath: /data
name: data
- name: metrics-exporter
image: docker.io/oliver006/redis_exporter:v1.89.0
imagePullPolicy: IfNotPresent
ports:
- containerPort: 9121
name: metrics
protocol: TCP
securityContext:
allowPrivilegeEscalation: false
runAsNonRoot: true
capabilities:
drop:
- ALL
resources:
limits:
cpu: 100m
memory: 64Mi
requests:
cpu: 25m
memory: 32Mi
restartPolicy: Always
volumes:
- name: data
persistentVolumeClaim:
claimName: netbox-valkey-data