rename deployment templates

This commit is contained in:
red 2025-04-08 13:04:48 -04:00
parent 7aedfef075
commit 9e4dc20c75
2 changed files with 0 additions and 0 deletions

View file

@ -0,0 +1,33 @@
---
apiVersion: apps/v1
kind: Deployment
metadata:
name: privoxy
namespace: darkdork-dev
spec:
replicas: 1
selector:
matchLabels:
app: privoxy
template:
metadata:
labels:
app: privoxy
spec:
imagePullSecrets:
- name: registry-credentials
containers:
- name: privoxy
image: cr.forge.lan/darkdork-dev/privoxy:${CI_COMMIT_SHA}
imagePullPolicy: Always
ports:
- containerPort: 8118
volumeMounts:
- name: privoxy-config
mountPath: /etc/privoxy/config
subPath: config
volumes:
- name: privoxy-config
configMap:
name: privoxy-config
---