Storage Tweaking and bugfixing (#506)

* first work for allowing ramdisk usage

* add bump tooling.
Fixes: #157

* bump minor versions due to adding ramdisk emptydir to persistence

* allow disabling persistent storage

* actually push major as it is breaking in theory

* cleanup hpm example code

* Allow custom storageClass and fix bug using the wrong storageClass

* try fixing gabs

* cleanup

* update tests

* revert some permission job changes

* reverse some of the 3.0 common incompatible bitwarden changes
This commit is contained in:
Kjeld Schouten-Lebbing
2021-05-24 21:17:29 +02:00
committed by GitHub
parent 7e49c3c179
commit a837947884
95 changed files with 1524 additions and 1143 deletions
+29 -30
View File
@@ -1,36 +1,35 @@
apiVersion: v2
kubeVersion: ">=1.16.0-0"
name: bazarr
version: 4.0.1
upstream_version: 5.2.1
appVersion: "auto"
description: Bazarr is a companion application to Bazarr and Radarr. It manages and downloads subtitles based on your requirements
type: application
appVersion: auto
dependencies:
- name: common
repository: https://truecharts.org/
version: 4.1.6
deprecated: false
description: Bazarr is a companion application to Bazarr and Radarr. It manages and
downloads subtitles based on your requirements
home: https://github.com/truecharts/apps/tree/master/incubator/bazarr
icon: https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/bazarr.png
keywords:
- bazarr
- radarr
- bazarr
- subtitles
- usenet
- torrent
sources:
- https://github.com/truecharts/apps/tree/master/incubator/bazarr
- https://github.com/k8s-at-home/charts/tree/master/charts/bazarr
- https://github.com/Bazarr/Bazarr
- https://hub.docker.com/r/linuxserver/bazarr
dependencies:
- name: common
repository: https://truecharts.org/
version: 4.1.6
# condition:
- bazarr
- radarr
- bazarr
- subtitles
- usenet
- torrent
kubeVersion: '>=1.16.0-0'
maintainers:
- name: TrueCharts
email: info@truecharts.org
url: truecharts.org
- name: Ornias1993
email: kjeld@schouten-lebbing.nl
url: truecharts.org
# annotations:
- email: info@truecharts.org
name: TrueCharts
url: truecharts.org
- email: kjeld@schouten-lebbing.nl
name: Ornias1993
url: truecharts.org
name: bazarr
sources:
- https://github.com/truecharts/apps/tree/master/incubator/bazarr
- https://github.com/k8s-at-home/charts/tree/master/charts/bazarr
- https://github.com/Bazarr/Bazarr
- https://hub.docker.com/r/linuxserver/bazarr
type: application
upstream_version: 5.2.1
version: 4.1.0
+16 -9
View File
@@ -221,16 +221,13 @@ questions:
schema:
type: boolean
default: true
hidden: true
hidden: false
- variable: storageClass
label: "Type of Storage"
description: " Warning: Anything other than Internal will break rollback!"
description: " Warning: Anything other than SCALE-ZFS will break rollback!"
schema:
type: string
default: ""
enum:
- value: ""
description: "Internal"
default: "SCALE-ZFS"
- variable: mountPath
label: "mountPath"
description: "Path inside the container the storage is mounted"
@@ -239,17 +236,27 @@ questions:
default: "/config"
hidden: true
- variable: emptyDir
label: "Mount a ramdisk instead of actual storage"
label: "Use Empty Dir Mountpoint"
schema:
type: dict
hidden: true
hidden: false
attrs:
- variable: enabled
label: "Enable emptyDir"
schema:
type: boolean
default: false
hidden: true
hidden: false
- variable: medium
label: "EmptyDir Medium"
schema:
type: string
default: ""
enum:
- value: ""
description: "Default"
- value: "Memory"
description: "Memory"
- variable: accessMode
label: "Access Mode (Advanced)"
description: "Allow or disallow multiple PVC's writhing to the same PVC"