pelican: migrate to envFrom with per-container InfisicalSecrets

Folds the pelican-config ConfigMap into Infisical so the container has a single envFrom. Pins imagePullPolicy to IfNotPresent because ghcr.io/pelican-dev/panel no longer allows anonymous pulls.
This commit is contained in:
2026-08-23 23:16:37 +02:00
parent 647d82fe0f
commit f382c87f58
11 changed files with 36 additions and 60 deletions
@@ -0,0 +1,28 @@
apiVersion: apps/v1
kind: Deployment
metadata:
name: pelican-redis
namespace: pelican
spec:
replicas: 1
selector:
matchLabels:
app: pelican-redis
template:
metadata:
labels:
app: pelican-redis
spec:
restartPolicy: Always
containers:
- name: valkey
image: valkey/valkey:8-alpine
resources:
requests:
cpu: 50m
memory: 64Mi
limits:
cpu: 200m
memory: 256Mi
ports:
- containerPort: 6379