[ombi] add mariadb to ombi deps (#189)

This commit is contained in:
ᗪєνιη ᗷυнʟ 2020-11-23 09:29:30 -05:00 committed by GitHub
parent eb7cfe789e
commit 1902db60b9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 26 additions and 3 deletions

View File

@ -2,7 +2,7 @@ apiVersion: v2
appVersion: 4.0.681 appVersion: 4.0.681
description: Want a Movie or TV Show on Plex or Emby? Use Ombi! description: Want a Movie or TV Show on Plex or Emby? Use Ombi!
name: ombi name: ombi
version: 5.4.0 version: 5.5.0
keywords: keywords:
- ombi - ombi
- plex - plex
@ -21,4 +21,8 @@ maintainers:
dependencies: dependencies:
- name: common - name: common
repository: https://k8s-at-home.com/charts/ 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

View File

@ -1,4 +1,8 @@
approvers: approvers:
- billimek - billimek
- onedr0p
- bjw-s
reviewers: reviewers:
- billimek - billimek
- onedr0p
- bjw-s

View File

@ -2,6 +2,8 @@
This is a helm chart for [Ombi](https://github.com/tidusjar/Ombi). 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; ## TL;DR;
```shell ```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, Specify each parameter using the `--set key=value[,key=value]` argument to `helm install`. For example,
```console ```console
helm install ombi \ helm install ombi \
--set env.TZ="America/New York" \ --set env.TZ="America/New_York" \
k8s-at-home/ombi k8s-at-home/ombi
``` ```
Alternatively, a YAML file that specifies the values for the above parameters can be provided while installing the Alternatively, a YAML file that specifies the values for the above parameters can be provided while installing the

View File

@ -21,3 +21,16 @@ persistence:
config: config:
enabled: false enabled: false
emptyDir: 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