mirror of
https://github.com/k8s-at-home/charts.git
synced 2025-01-24 16:09:08 +00:00
[ombi] add mariadb to ombi deps (#189)
This commit is contained in:
parent
eb7cfe789e
commit
1902db60b9
@ -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
|
||||||
|
@ -1,4 +1,8 @@
|
|||||||
approvers:
|
approvers:
|
||||||
- billimek
|
- billimek
|
||||||
|
- onedr0p
|
||||||
|
- bjw-s
|
||||||
reviewers:
|
reviewers:
|
||||||
- billimek
|
- billimek
|
||||||
|
- onedr0p
|
||||||
|
- bjw-s
|
||||||
|
@ -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
|
||||||
|
@ -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
|
||||||
|
Loading…
Reference in New Issue
Block a user