Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

refactor: use upstream stateful chart for overseerr #20

Merged
merged 1 commit into from
Apr 14, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 15 additions & 6 deletions applications/app-of-apps/templates/media-apps/overseerr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ metadata:
spec:
project: media
source:
repoURL: {{ .Values.repository.url }}
targetRevision: HEAD
path: charts/x-arr
repoURL: {{ .Values.charts.repository }}
targetRevision: 1.1.0
chart: stateful

helm:
valuesObject:
Expand All @@ -20,9 +20,6 @@ spec:
repository: lscr.io/linuxserver/overseerr
tag: latest
pullPolicy: Always
persistence:
config:
storageClass: longhorn-nvme
resources:
requests:
cpu: 50m
Expand Down Expand Up @@ -50,6 +47,18 @@ spec:
value: "1000"
- name: PGID
value: "1000"
extraVolumeMounts:
- name: config
mountPath: /config
extraVolumeClaimTemplates:
- metadata:
name: config
spec:
accessModes: [ "ReadWriteOnce" ]
storageClassName: longhorn-nvme
resources:
requests:
storage: 512Mi

destination:
server: https://kubernetes.default.svc
Expand Down
3 changes: 3 additions & 0 deletions applications/app-of-apps/values.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
repository:
url: https://github.com/d3adb5/app-of-apps

charts:
repository: https://charts.d3adb5.net/

olm:
namespace: operator-lifecycle-manager

Expand Down