This commit is contained in:
Tomás Limpinho
2026-01-21 16:51:47 +00:00
parent f7c345e505
commit 9e703cf9fd
12 changed files with 204 additions and 4 deletions

View File

@ -0,0 +1,46 @@
apiVersion: apps/v1
kind: Deployment
metadata:
name: anchorr
namespace: stack-arr
spec:
replicas: 1
selector:
matchLabels:
app: anchorr
template:
metadata:
labels:
app: anchorr
spec:
imagePullSecrets:
- name: regcred
containers:
- name: anchorr
image: nairdah/anchorr:latest
securityContext:
capabilities:
add:
- NET_ADMIN
ports:
- containerPort: 8282
name: webhook
env:
- name: PUID
value: "1013"
- name: PGID
value: "1013"
- name: TZ
value: 'Etc/UTC'
- name: NODE_ENV
value: 'production'
- name: WEBHOOK_PORT
value: '8282'
volumeMounts:
- name: config
mountPath: /usr/src/app/config
volumes:
- name: config
persistentVolumeClaim:
claimName: anchorr-config-pvc