diff --git a/charts/stable/radarr/Chart.yaml b/charts/stable/radarr/Chart.yaml index 75bb8a28f56..18773819012 100644 --- a/charts/stable/radarr/Chart.yaml +++ b/charts/stable/radarr/Chart.yaml @@ -22,7 +22,7 @@ sources: - https://github.com/truecharts/charts/tree/master/charts/stable/radarr - https://github.com/Radarr/Radarr type: application -version: 16.0.22 +version: 16.1.0 annotations: truecharts.org/catagories: | - media diff --git a/charts/stable/radarr/questions.yaml b/charts/stable/radarr/questions.yaml index 5acce6a981e..c8635987b2e 100644 --- a/charts/stable/radarr/questions.yaml +++ b/charts/stable/radarr/questions.yaml @@ -106,6 +106,8 @@ questions: default: 568 # Include{resources} +# Include{metrics} +# Include{prometheusRule} # Include{advanced} # Include{addons} # Include{codeserver} diff --git a/charts/stable/radarr/values.yaml b/charts/stable/radarr/values.yaml index 65da35475f2..a739dc7c302 100644 --- a/charts/stable/radarr/values.yaml +++ b/charts/stable/radarr/values.yaml @@ -2,21 +2,30 @@ image: repository: tccr.io/truecharts/radarr pullPolicy: IfNotPresent tag: v4.6.4.7568@sha256:9a8bfd8c2beb92116af78bc7d71ae7e87c734115f8252180137d89291731a577 +exportarrImage: + repository: tccr.io/truecharts/exportarr + pullPolicy: IfNotPresent + tag: v1.5.3@sha256:f369a43b28410f12ce1b96f52187dd5c6fb9769a137ecc6f7ab8fdcfbe7db58e + +securityContext: + container: + readOnlyRootFilesystem: false + service: main: ports: main: port: 7878 -persistence: - config: + metrics: enabled: true - mountPath: /config -portal: - open: - enabled: true -securityContext: - container: - readOnlyRootFilesystem: false + type: ClusterIP + targetSelector: exportarr + ports: + metrics: + enabled: true + port: 7879 + targetSelector: exportarr + workload: main: podSpec: @@ -35,6 +44,69 @@ workload: enabled: true type: http path: /ping - env: RADARR__PORT: "{{ .Values.service.main.ports.main.port }}" + exportarr: + enabled: true + type: Deployment + strategy: RollingUpdate + replicas: 1 + podSpec: + containers: + exportarr: + primary: true + enabled: true + imageSelector: exportarrImage + args: + - radarr + probes: + liveness: + enabled: true + type: http + path: /healthz + port: "{{ .Values.service.metrics.ports.metrics.port }}" + readiness: + enabled: true + type: http + path: /healthz + port: "{{ .Values.service.metrics.ports.metrics.port }}" + startup: + enabled: true + type: http + path: /healthz + port: "{{ .Values.service.metrics.ports.metrics.port }}" + env: + INTERFACE: 0.0.0.0 + PORT: "{{ .Values.service.metrics.ports.metrics.port }}" + URL: "http://localhost:{{ .Values.service.main.ports.main.port }}" + # additional metrics (slow) + # ENABLE_ADDITIONAL_METRICS: false + # enable gathering unknown queue items + # ENABLE_UNKNOWN_QUEUE_ITEMS: false + CONFIG: "/config/config.xml" + +persistence: + config: + enabled: true + targetSelector: + main: + main: + mountPath: /config + exportarr: + exportarr: + mountPath: /config + readOnly: true + +metrics: + main: + enabled: true + type: "servicemonitor" + endpoints: + - port: metrics + path: /metrics + prometheusRule: + enabled: false + +portal: + open: + enabled: true