This PR contains newly rendered Kubernetes manifests automatically generated by the CI workflow. ### Details - **Trigger**: `pull_request` by `@alexlebens` - **Commit**: `f570ecc` (on `f570ecc60642699cac232ad71af426b887062cdf`) - **Charts Updated**: `houndarr` ### Update Details (2026-03-21 19:18 UTC) - **Trigger**: `pull_request` by `@alexlebens` - **Commit**: `50b7e8e` (on `50b7e8e6470399b6cf08380aaf4e2e9574075608`) - **Charts Updated**: `music-grabber` Reviewed-on: #4965 Co-authored-by: gitea-bot <gitea-bot@alexlebens.net> Co-committed-by: gitea-bot <gitea-bot@alexlebens.net>
58 lines
1.5 KiB
YAML
58 lines
1.5 KiB
YAML
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
name: houndarr
|
|
labels:
|
|
app.kubernetes.io/controller: main
|
|
app.kubernetes.io/instance: houndarr
|
|
app.kubernetes.io/managed-by: Helm
|
|
app.kubernetes.io/name: houndarr
|
|
helm.sh/chart: houndarr-4.6.2
|
|
namespace: houndarr
|
|
spec:
|
|
revisionHistoryLimit: 3
|
|
replicas: 1
|
|
strategy:
|
|
type: Recreate
|
|
selector:
|
|
matchLabels:
|
|
app.kubernetes.io/controller: main
|
|
app.kubernetes.io/name: houndarr
|
|
app.kubernetes.io/instance: houndarr
|
|
template:
|
|
metadata:
|
|
labels:
|
|
app.kubernetes.io/controller: main
|
|
app.kubernetes.io/instance: houndarr
|
|
app.kubernetes.io/name: houndarr
|
|
spec:
|
|
enableServiceLinks: false
|
|
serviceAccountName: default
|
|
automountServiceAccountToken: true
|
|
hostIPC: false
|
|
hostNetwork: false
|
|
hostPID: false
|
|
dnsPolicy: ClusterFirst
|
|
containers:
|
|
- env:
|
|
- name: TZ
|
|
value: America/Chicago
|
|
- name: HOUNDARR_SECURE_COOKIES
|
|
value: "true"
|
|
- name: HOUNDARR_TRUSTED_PROXIES
|
|
value: 10.96.0.0/12
|
|
image: ghcr.io/av1155/houndarr:v1.6.0
|
|
imagePullPolicy: IfNotPresent
|
|
name: main
|
|
resources:
|
|
requests:
|
|
cpu: 10m
|
|
memory: 128Mi
|
|
volumeMounts:
|
|
- mountPath: /data
|
|
name: data
|
|
volumes:
|
|
- name: data
|
|
persistentVolumeClaim:
|
|
claimName: houndarr-data
|