mirror of
https://github.com/nold360/hive-apps
synced 2024-12-22 21:51:20 +00:00
add(arrstack): prowlarr
This commit is contained in:
parent
da67e07fc8
commit
bacf37f571
2 changed files with 100 additions and 8 deletions
|
@ -4,14 +4,6 @@ config:
|
||||||
repo: k8s-at-home
|
repo: k8s-at-home
|
||||||
|
|
||||||
apps:
|
apps:
|
||||||
- name: conreq
|
|
||||||
namespace: conreq
|
|
||||||
chart: conreq
|
|
||||||
repoURL: https://charts.truecharts.org
|
|
||||||
targetRevision: 0.0.35
|
|
||||||
include:
|
|
||||||
- ingress-internal
|
|
||||||
|
|
||||||
- name: ombi
|
- name: ombi
|
||||||
namespace: ombi
|
namespace: ombi
|
||||||
chart: ombi
|
chart: ombi
|
||||||
|
@ -27,6 +19,14 @@ apps:
|
||||||
include:
|
include:
|
||||||
- ingress-internal
|
- ingress-internal
|
||||||
|
|
||||||
|
- name: prowlarr
|
||||||
|
chart: prowlarr
|
||||||
|
namespace: prowlarr
|
||||||
|
repoURL: https://charts.pree.dev
|
||||||
|
targetRevision: 1.4.0
|
||||||
|
include:
|
||||||
|
- ingress-internal
|
||||||
|
|
||||||
- name: sonarr
|
- name: sonarr
|
||||||
namespace: sonarr
|
namespace: sonarr
|
||||||
chart: sonarr
|
chart: sonarr
|
||||||
|
|
92
projects/arrstack/values/prowlarr.yaml
Normal file
92
projects/arrstack/values/prowlarr.yaml
Normal file
|
@ -0,0 +1,92 @@
|
||||||
|
#
|
||||||
|
# IMPORTANT NOTE
|
||||||
|
#
|
||||||
|
# This chart inherits from bjw-s's common library chart. You can check the default values/options here:
|
||||||
|
# https://github.com/bjw-s/helm-charts/tree/main/charts/library/common/values.yaml
|
||||||
|
#
|
||||||
|
|
||||||
|
image:
|
||||||
|
# -- image repository
|
||||||
|
repository: ghcr.io/onedr0p/prowlarr-develop
|
||||||
|
# @default -- chart.appVersion
|
||||||
|
tag:
|
||||||
|
# -- image pull policy
|
||||||
|
pullPolicy: IfNotPresent
|
||||||
|
|
||||||
|
# -- environment variables.
|
||||||
|
# @default -- See below
|
||||||
|
env:
|
||||||
|
# -- Set the container timezone
|
||||||
|
TZ: UTC
|
||||||
|
|
||||||
|
ingress:
|
||||||
|
# -- Enable and configure ingress settings for the chart under this key.
|
||||||
|
# @default -- See values.yaml
|
||||||
|
main:
|
||||||
|
enabled: true
|
||||||
|
ingressClassName: ingress-internal
|
||||||
|
annotations:
|
||||||
|
cert-manager.io/cluster-issuer: vault-issuer
|
||||||
|
hosts:
|
||||||
|
- host: prowlarr.dc
|
||||||
|
paths:
|
||||||
|
- path: /
|
||||||
|
pathType: Prefix
|
||||||
|
tls:
|
||||||
|
- secretName: prowlarr-tls
|
||||||
|
hosts:
|
||||||
|
- prowlarr.dc
|
||||||
|
|
||||||
|
|
||||||
|
# -- Configure persistence settings for the chart under this key.
|
||||||
|
## Config persistence is required for the Prometheus exporter sidecar.
|
||||||
|
# @default -- See values.yaml
|
||||||
|
persistence:
|
||||||
|
config:
|
||||||
|
enabled: true
|
||||||
|
size: 1Gi
|
||||||
|
|
||||||
|
media:
|
||||||
|
enabled: false
|
||||||
|
mountPath: /media
|
||||||
|
|
||||||
|
metrics:
|
||||||
|
# -- Enable and configure Exportarr sidecar and Prometheus serviceMonitor.
|
||||||
|
# @default -- See values.yaml
|
||||||
|
enabled: false
|
||||||
|
serviceMonitor:
|
||||||
|
interval: 3m
|
||||||
|
scrapeTimeout: 1m
|
||||||
|
labels: {}
|
||||||
|
# -- Enable and configure Prometheus Rules for the chart under this key.
|
||||||
|
# @default -- See values.yaml
|
||||||
|
prometheusRule:
|
||||||
|
enabled: false
|
||||||
|
labels: {}
|
||||||
|
# -- Configure additionial rules for the chart under this key.
|
||||||
|
# @default -- See prometheusrules.yaml
|
||||||
|
rules: []
|
||||||
|
# - alert: RadarrDown
|
||||||
|
# annotations:
|
||||||
|
# description: Radarr service is down.
|
||||||
|
# summary: Radarr is down.
|
||||||
|
# expr: |
|
||||||
|
# radarr_system_status == 0
|
||||||
|
# for: 5m
|
||||||
|
# labels:
|
||||||
|
# severity: critical
|
||||||
|
exporter:
|
||||||
|
image:
|
||||||
|
# -- image repository
|
||||||
|
repository: ghcr.io/onedr0p/exportarr
|
||||||
|
# -- image tag
|
||||||
|
tag: v1.1.0
|
||||||
|
# -- image pull policy
|
||||||
|
pullPolicy: IfNotPresent
|
||||||
|
env:
|
||||||
|
# -- metrics port
|
||||||
|
port: 9794
|
||||||
|
# -- Set to true to enable gathering of additional metrics (slow)
|
||||||
|
additionalMetrics: false
|
||||||
|
# -- Set to true to enable gathering unknown queue items
|
||||||
|
unknownQueueItems: false
|
Loading…
Reference in a new issue