--- 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 ---