From 1902db60b95ad2f73de44da6432bcdee5bc03404 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E1=97=AA=D1=94=CE=BD=CE=B9=CE=B7=20=E1=97=B7=CF=85=D0=BD?= =?UTF-8?q?=CA=9F?= Date: Mon, 23 Nov 2020 09:29:30 -0500 Subject: [PATCH] [ombi] add mariadb to ombi deps (#189) --- charts/ombi/Chart.yaml | 8 ++++++-- charts/ombi/OWNERS | 4 ++++ charts/ombi/README.md | 4 +++- charts/ombi/values.yaml | 13 +++++++++++++ 4 files changed, 26 insertions(+), 3 deletions(-) diff --git a/charts/ombi/Chart.yaml b/charts/ombi/Chart.yaml index 5cab2a03..a60f8f20 100644 --- a/charts/ombi/Chart.yaml +++ b/charts/ombi/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v2 appVersion: 4.0.681 description: Want a Movie or TV Show on Plex or Emby? Use Ombi! name: ombi -version: 5.4.0 +version: 5.5.0 keywords: - ombi - plex @@ -21,4 +21,8 @@ maintainers: dependencies: - name: common repository: https://k8s-at-home.com/charts/ - version: ^1.5.0 + version: ^1.6.1 + - name: mariadb + version: 9.0.1 + repository: https://charts.bitnami.com/bitnami + condition: mariadb.enabled diff --git a/charts/ombi/OWNERS b/charts/ombi/OWNERS index b90909f4..1ce35762 100644 --- a/charts/ombi/OWNERS +++ b/charts/ombi/OWNERS @@ -1,4 +1,8 @@ approvers: - billimek +- onedr0p +- bjw-s reviewers: - billimek +- onedr0p +- bjw-s diff --git a/charts/ombi/README.md b/charts/ombi/README.md index e07dc1fb..340e463d 100644 --- a/charts/ombi/README.md +++ b/charts/ombi/README.md @@ -2,6 +2,8 @@ This is a helm chart for [Ombi](https://github.com/tidusjar/Ombi). +**This chart is not maintained by the upstream project and any issues with the chart should be raised [here](https://github.com/k8s-at-home/charts/issues/new/choose)** + ## TL;DR; ```shell @@ -35,7 +37,7 @@ Additionally you can take a look at the common library [values.yaml](https://git Specify each parameter using the `--set key=value[,key=value]` argument to `helm install`. For example, ```console helm install ombi \ - --set env.TZ="America/New York" \ + --set env.TZ="America/New_York" \ k8s-at-home/ombi ``` Alternatively, a YAML file that specifies the values for the above parameters can be provided while installing the diff --git a/charts/ombi/values.yaml b/charts/ombi/values.yaml index 4a061d8f..4a1ed576 100644 --- a/charts/ombi/values.yaml +++ b/charts/ombi/values.yaml @@ -21,3 +21,16 @@ persistence: config: enabled: false emptyDir: false + +# Enabled mariadb +# ... for more options see https://github.com/bitnami/charts/tree/master/bitnami/mariadb +mariadb: + enabled: false + architecture: standalone + auth: + database: ombi + username: ombi + password: ombi + primary: + persistence: + enabled: false