chore(apps): persistence cleanup and small bugfixes (#1329)

* chore(apps): remove persistence size from values

* remove type from persistence from values.yaml

* remove accessMode from persistence from values

* devices dont user persistence

* remove empty lines

* restore accessMode in common, whoops

* quote all mountPaths

* convert `'` to `"`

* fix empty lines

* add missing mountPath on values

* add missing persistence on values

* fix var name on quetsions

* remove disabled persistence from values which are not even defined in questions

* remove more type, accessMode and size

* mountpath -> mountPath

* mounthPath -> mountPath

* booksonic-air persistence cleanup

* remove empty lines

* fix mountPath

* remove unused persistence

* teamspeak3 fix var name in persistence

* remove persistence that will probably be user defined storage

* remove persistence that will probably be user defined storage

* add missing persistence from values

* fix openldap volclaim

* remove persistence that will probably be user defined storage

* add missing persistence from values

* fix path ff3

* fix mountPath

* add missing persistence from values

* remove persistence that will probably be user defined storage

* revert changes in volClaimTemplate

* remove varrun from questions

* fix and cleanup questions postgres

* calm down CI

* ci only value
This commit is contained in:
Stavros Kois 2021-11-14 21:19:16 +02:00 committed by GitHub
parent 56de7f45de
commit 19df900522
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
189 changed files with 169 additions and 1246 deletions

View File

@ -215,62 +215,6 @@ questions:
description: "pvc"
- value: "hostPath"
description: "hostPath"
# Include{persistenceBasic}
- variable: hostPath
label: "hostPath"
description: "Path inside the container the storage is mounted"
schema:
show_if: [["type", "=", "hostPath"]]
type: hostpath
- variable: mountPath
label: "mountPath"
description: "Path inside the container the storage is mounted"
schema:
type: string
default: "/var/lib/postgresql/data"
hidden: true
valid_chars: '^\/([a-zA-Z0-9._-]+(\s?[a-zA-Z0-9._-]+|\/?))+$'
- variable: medium
label: "EmptyDir Medium"
schema:
show_if: [["type", "=", "emptyDir"]]
type: string
default: ""
enum:
- value: ""
description: "Default"
- value: "Memory"
description: "Memory"
# Include{persistenceAdvanced}
- variable: data
label: "App data Storage"
description: "Stores the Application Database."
schema:
type: dict
attrs:
- variable: enabled
label: "Enable the storage"
schema:
type: boolean
default: true
hidden: true
- variable: type
label: "Type of Storage"
description: "Sets the persistence type, Anything other than PVC could break rollback!"
schema:
type: string
default: "simplePVC"
enum:
- value: "simplePVC"
description: "PVC (simple)"
- value: "simpleHP"
description: "HostPath (simple)"
- value: "emptyDir"
description: "emptyDir"
- value: "pvc"
description: "pvc"
- value: "hostPath"
description: "hostPath"
# Include{persistenceBasic}
- variable: hostPath
label: "hostPath"
@ -299,63 +243,6 @@ questions:
description: "Memory"
# Include{persistenceAdvanced}
- variable: dbbackups
label: "App backup Storage"
description: "Stores the Application backups."
schema:
type: dict
attrs:
- variable: enabled
label: "Enable the storage"
schema:
type: boolean
default: true
hidden: true
- variable: type
label: "Type of Storage"
description: "Sets the persistence type, Anything other than PVC could break rollback!"
schema:
type: string
default: "simplePVC"
enum:
- value: "simplePVC"
description: "PVC (simple)"
- value: "simpleHP"
description: "HostPath (simple)"
- value: "emptyDir"
description: "emptyDir"
- value: "pvc"
description: "pvc"
- value: "hostPath"
description: "hostPath"
# Include{persistenceBasic}
- variable: hostPath
label: "hostPath"
description: "Path inside the container the storage is mounted"
schema:
show_if: [["type", "=", "hostPath"]]
type: hostpath
- variable: mountPath
label: "mountPath"
description: "Path inside the container the storage is mounted"
schema:
type: string
default: "/dbbackups"
hidden: true
valid_chars: '^\/([a-zA-Z0-9._-]+(\s?[a-zA-Z0-9._-]+|\/?))+$'
- variable: medium
label: "EmptyDir Medium"
schema:
show_if: [["type", "=", "emptyDir"]]
type: string
default: ""
enum:
- value: ""
description: "Default"
- value: "Memory"
description: "Memory"
# Include{persistenceAdvanced}
# Include{persistenceList}
# Include{ingressList}

View File

@ -24,9 +24,7 @@ persistence:
db:
enabled: true
mountPath: "/bitnami/postgresql"
type: pvc
accessMode: ReadWriteOnce
size: "999Gi"
postgresqlPassword: "testpass"
postgresqlUsername: "test"

View File

@ -59,8 +59,8 @@ volumeClaimTemplates:
data:
enabled: true
mountPath: "/bitnami/redis"
type: pvc
accessMode: ReadWriteOnce
type: pvc
size: "100Gi"
# -- Probe configuration
@ -125,7 +125,7 @@ persistence:
# -- Where to mount the volume in the main container.
# Defaults to `/<name_of_the_volume>`,
# setting to '-' creates the volume but disables the volumeMount.
mountPath: /health
mountPath: "/health"
# -- Specify if the volume should be mounted read-only.
readOnly: false
# -- Define the custom Volume spec here

View File

@ -50,5 +50,3 @@ persistence:
config:
enabled: true
mountPath: "/data"
type: pvc
accessMode: ReadWriteOnce

View File

@ -87,6 +87,4 @@ service:
persistence:
data:
enabled: true
type: pvc
accessMode: ReadWriteOnce
size: "100Gi"
mountPath: "/data"

View File

@ -234,18 +234,6 @@ questions:
- value: "Memory"
description: "Memory"
# Include{persistenceAdvanced}
- variable: varrun
label: "varrun override for S6 Readonly Root"
schema:
type: dict
hidden: true
attrs:
- variable: enabled
label: ""
schema:
type: boolean
default: true
hidden: true
# Include{persistenceList}
- variable: ingress

View File

@ -24,11 +24,6 @@ service:
persistence:
config:
enabled: true
mountPath: /config
gallery:
enabled: true
mountPath: /gallery
accessMode: ReadWriteOnce
size: 1Gi
mountPath: "/config"
varrun:
enabled: true

View File

@ -372,18 +372,6 @@ questions:
- value: "Memory"
description: "Memory"
# Include{persistenceAdvanced}
- variable: varrun
label: "varrun override for S6 Readonly Root"
schema:
type: dict
hidden: true
attrs:
- variable: enabled
label: ""
schema:
type: boolean
default: true
hidden: true
# Include{persistenceList}

View File

@ -33,14 +33,8 @@ persistence:
configs:
enabled: true
mountPath: "/app/configs"
type: pvc
accessMode: ReadWriteOnce
size: "100Gi"
logs:
enabled: true
mountPath: "/app/logs"
type: pvc
accessMode: ReadWriteOnce
size: "100Gi"
varrun:
enabled: true

View File

@ -536,18 +536,6 @@ questions:
- value: "Memory"
description: "Memory"
# Include{persistenceAdvanced}
- variable: varrun
label: "varrun override for S6 Readonly Root"
schema:
type: dict
hidden: true
attrs:
- variable: enabled
label: ""
schema:
type: boolean
default: true
hidden: true
# Include{persistenceList}
- variable: ingress

View File

@ -33,23 +33,14 @@ service:
targetPort: 8266
persistence:
server:
enabled: true
mountPath: "/app/server"
type: pvc
accessMode: ReadWriteOnce
size: "100Gi"
configs:
enabled: true
mountPath: "/app/configs"
type: pvc
accessMode: ReadWriteOnce
size: "100Gi"
server:
enabled: true
mountPath: "/app/server"
logs:
enabled: true
mountPath: "/app/logs"
type: pvc
accessMode: ReadWriteOnce
size: "100Gi"
varrun:
enabled: true

View File

@ -28,8 +28,6 @@ env:
TZ: UTC
# -- Specify the user ID the application will run as
PUID: 568
# -- Used to set the base path for reverse proxies eg. /booksonic, /books, etc.
CONTEXT_PATH: # "url-base"
# -- For passing additional java options. For some reverse proxies, you may need to pass `JAVA_OPTS=-Dserver.use-forward-headers=true` for airsonic to generate the proper URL schemes.
@ -55,18 +53,4 @@ ingress:
persistence:
config:
enabled: true
type: pvc
accessMode: ReadWriteOnce
size: "100Gi"
music:
enabled: false
mountPath: /music
playlists:
enabled: false
mountPath: /playlists
podcasts:
enabled: false
mountPath: /podcasts
media:
enabled: false
mountPath: /media
mountPath: "/config"

View File

@ -215,18 +215,6 @@ questions:
schema:
type: dict
attrs:
- variable: varrun
label: "varrun override for S6 Readonly Root"
schema:
type: dict
hidden: true
attrs:
- variable: enabled
label: ""
schema:
type: boolean
default: true
hidden: true
- variable: conf
label: "App Config Storage"
description: "Stores the Application Configuration."

View File

@ -37,8 +37,6 @@ persistence:
conf:
enabled: true
mountPath: "/conf"
type: pvc
accessMode: ReadWriteOnce
size: "100Gi"
varrun:
enabled: true

View File

@ -307,18 +307,6 @@ questions:
- value: "Memory"
description: "Memory"
# Include{persistenceAdvanced}
- variable: varrun
label: "varrun override for S6 Readonly Root"
schema:
type: dict
hidden: true
attrs:
- variable: enabled
label: ""
schema:
type: boolean
default: true
hidden: true
# Include{persistenceList}
- variable: ingress

View File

@ -45,11 +45,8 @@ podSecurityContext:
# -- Configure persistence settings for the chart under this key.
# @default -- See values.yaml
persistence:
data:
enabled: true
mountpath: /downloads
config:
enabled: true
mountpath: /config
mountPath: "/config"
varrun:
enabled: true

View File

@ -233,18 +233,6 @@ questions:
- value: "Memory"
description: "Memory"
# Include{persistenceAdvanced}
- variable: varrun
label: "varrun override for S6 Readonly Root"
schema:
type: dict
hidden: true
attrs:
- variable: enabled
label: ""
schema:
type: boolean
default: true
hidden: true
# Include{persistenceList}
- variable: ingress

View File

@ -2,8 +2,6 @@ image:
repository: ghcr.io/linuxserver/audacity
pullPolicy: IfNotPresent
tag: version-3.0.2@sha256:cdf203db1e50e18349f16c5958f7061b18625501f5e2f7a15cd69262185e3e84
env:
PUID: 568
@ -25,6 +23,6 @@ service:
persistence:
config:
enabled: true
mountPath: /config
mountPath: "/config"
varrun:
enabled: true

View File

@ -21,8 +21,6 @@ persistence:
config:
enabled: true
mountPath: "/config"
type: pvc
# Enabled postgres
postgresql:
enabled: true

View File

@ -43,7 +43,7 @@ service:
persistence:
config:
enabled: true
mountPath: /config
mountPath: "/config"
varrun:
enabled: true

View File

@ -15,12 +15,7 @@ service:
env: {}
# TZ: UTC
# PUID: 1001
persistence:
config:
enabled: true
mountPath: "/config"
type: pvc
accessMode: ReadWriteOnce
size: "100Gi"

View File

@ -24,16 +24,6 @@ service:
persistence:
config:
enabled: true
mountPath: /config
music:
enabled: true
mountPath: /music
accessMode: ReadWriteOnce
size: 1Gi
downloads:
enabled: true
mountPath: /downloads
accessMode: ReadWriteOnce
size: 1Gi
mountPath: "/config"
varrun:
enabled: true

View File

@ -28,8 +28,6 @@ env:
TZ: UTC
# -- Specify the user ID the application will run as
PUID: 568
# -- Used to set the base path for reverse proxies eg. /booksonic, /books, etc.
# CONTEXT_PATH=url-base
@ -47,12 +45,4 @@ service:
persistence:
config:
enabled: true
type: pvc
accessMode: ReadWriteOnce
size: "100Gi"
audiobooks:
enabled: false
podcasts:
enabled: false
othermedia:
enabled: false
mountPath: "/config"

View File

@ -31,6 +31,3 @@ persistence:
config:
enabled: true
mountPath: "/config"
type: pvc
accessMode: ReadWriteOnce
size: "100Gi"

View File

@ -256,18 +256,6 @@ questions:
schema:
type: dict
attrs:
- variable: varrun
label: "varrun override for S6 Readonly Root"
schema:
type: dict
hidden: true
attrs:
- variable: enabled
label: ""
schema:
type: boolean
default: true
hidden: true
- variable: config
label: "App Config Storage"
description: "Stores the Application Configuration."

View File

@ -63,8 +63,6 @@ service:
persistence:
config:
enabled: true
type: pvc
accessMode: ReadWriteOnce
size: "100Gi"
mountPath: "/config"
varrun:
enabled: true

View File

@ -232,18 +232,6 @@ questions:
- value: "Memory"
description: "Memory"
# Include{persistenceAdvanced}
- variable: varrun
label: "varrun override for S6 Readonly Root"
schema:
type: dict
hidden: true
attrs:
- variable: enabled
label: ""
schema:
type: boolean
default: true
hidden: true
# Include{persistenceList}
- variable: ingress

View File

@ -27,8 +27,6 @@ service:
persistence:
code:
enabled: true
mountPath: /code
accessMode: ReadWriteOnce
size: 1Gi
mountPath: "/code"
varrun:
enabled: true

View File

@ -239,18 +239,6 @@ questions:
- value: "Memory"
description: "Memory"
# Include{persistenceAdvanced}
- variable: varrun
label: "varrun override for S6 Readonly Root"
schema:
type: dict
hidden: true
attrs:
- variable: enabled
label: ""
schema:
type: boolean
default: true
hidden: true
# Include{persistenceList}
- variable: ingress

View File

@ -29,6 +29,6 @@ service:
persistence:
config:
enabled: true
mountPath: /config
mountPath: "/config"
varrun:
enabled: true

View File

@ -34,4 +34,4 @@ service:
persistence:
data:
enabled: true
mountPath: /data
mountPath: "/data"

View File

@ -233,18 +233,6 @@ questions:
- value: "Memory"
description: "Memory"
# Include{persistenceAdvanced}
- variable: varrun
label: "varrun override for S6 Readonly Root"
schema:
type: dict
hidden: true
attrs:
- variable: enabled
label: ""
schema:
type: boolean
default: true
hidden: true
# Include{persistenceList}
- variable: ingress

View File

@ -24,11 +24,6 @@ service:
persistence:
config:
enabled: true
mountPath: /config
download:
enabled: true
mountPath: /download
accessMode: ReadWriteOnce
size: 1Gi
mountPath: "/config"
varrun:
enabled: true

View File

@ -70,10 +70,7 @@ service:
persistence:
config:
enabled: true
type: pvc
accessMode: ReadWriteOnce
size: "100Gi"
mountPath: /root/.local/share/dresden-elektronik/deCONZ
mountPath: "/root/.local/share/dresden-elektronik/deCONZ"
# -- Affinity constraint rules to place the Pod on a specific node.
# [[ref]](https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#affinity-and-anti-affinity)

View File

@ -24,8 +24,6 @@ podSecurityContext:
envTpl:
# Permissions Settings
USER_ID: "{{ .Values.env.PUID }}"
env:
PUID: 568
@ -42,6 +40,3 @@ persistence:
data:
enabled: true
mountPath: "/datastore"
type: pvc
accessMode: ReadWriteOnce
size: "100Gi"

View File

@ -24,8 +24,6 @@ podSecurityContext:
envTpl:
# Permissions Settings
USER_ID: "{{ .Values.env.PUID }}"
env:
PUID: 568
@ -42,6 +40,3 @@ persistence:
data:
enabled: true
mountPath: "/datastore"
type: pvc
accessMode: ReadWriteOnce
size: "100Gi"

View File

@ -294,18 +294,6 @@ questions:
schema:
type: dict
attrs:
- variable: varrun
label: "varrun override for S6 Readonly Root"
schema:
type: dict
hidden: true
attrs:
- variable: enabled
label: ""
schema:
type: boolean
default: true
hidden: true
- variable: config
label: "App Config Storage"
description: "Stores the Application Configuration."

View File

@ -39,8 +39,5 @@ persistence:
config:
enabled: true
mountPath: "/config"
type: pvc
accessMode: ReadWriteOnce
size: "100Gi"
varrun:
enabled: true

View File

@ -233,18 +233,6 @@ questions:
- value: "Memory"
description: "Memory"
# Include{persistenceAdvanced}
- variable: varrun
label: "varrun override for S6 Readonly Root"
schema:
type: dict
hidden: true
attrs:
- variable: enabled
label: ""
schema:
type: boolean
default: true
hidden: true
# Include{persistenceList}
- variable: ingress

View File

@ -24,6 +24,6 @@ service:
persistence:
config:
enabled: true
mountPath: /config
mountPath: "/config"
varrun:
enabled: true

View File

@ -35,7 +35,4 @@ service:
persistence:
config:
enabled: true
type: pvc
accessMode: ReadWriteOnce
size: "100Gi"
mountPath: /home/node/app/.dizquetv
mountPath: "/home/node/app/.dizquetv"

View File

@ -232,18 +232,6 @@ questions:
- value: "Memory"
description: "Memory"
# Include{persistenceAdvanced}
- variable: varrun
label: "varrun override for S6 Readonly Root"
schema:
type: dict
hidden: true
attrs:
- variable: enabled
label: ""
schema:
type: boolean
default: true
hidden: true
# Include{persistenceList}
- variable: ingress

View File

@ -24,11 +24,6 @@ service:
persistence:
config:
enabled: true
mountPath: /config
data:
enabled: true
mountPath: /data
accessMode: ReadWriteOnce
size: 1Gi
mountPath: "/config"
varrun:
enabled: true

View File

@ -45,7 +45,10 @@ service:
main:
port: 80
targetPort: 80
persistence:
config:
enabled: true
mountPath: "/config"
# -- Enable and configure postgresql database subchart under this key.
# @default -- See values.yaml
postgresql:

View File

@ -26,7 +26,4 @@ service:
persistence:
config:
enabled: true
type: pvc
accessMode: ReadWriteOnce
size: "100Gi"
mountPath: "/data"

View File

@ -19,6 +19,3 @@ persistence:
config:
enabled: true
mountPath: "/config"
type: pvc
accessMode: ReadWriteOnce
size: "100Gi"

View File

@ -25,6 +25,3 @@ persistence:
config:
enabled: true
mountPath: "/config"
type: pvc
accessMode: ReadWriteOnce
size: "100Gi"

View File

@ -44,14 +44,10 @@ service:
persistence:
data:
enabled: true
mountPath: /opt/etherpad-lite/var
accessMode: ReadWriteOnce
size: 1Gi
mountPath: "/opt/etherpad-lite/var"
app:
enabled: true
mountPath: /opt/etherpad-lite/app
accessMode: ReadWriteOnce
size: 1Gi
mountPath: "/opt/etherpad-lite/app"
# Enabled postgres
postgresql:

View File

@ -232,18 +232,6 @@ questions:
- value: "Memory"
description: "Memory"
# Include{persistenceAdvanced}
- variable: varrun
label: "varrun override for S6 Readonly Root"
schema:
type: dict
hidden: true
attrs:
- variable: enabled
label: ""
schema:
type: boolean
default: true
hidden: true
# Include{persistenceList}
- variable: ingress

View File

@ -24,6 +24,6 @@ service:
persistence:
config:
enabled: true
mountPath: /config
mountPath: "/config"
varrun:
enabled: true

View File

@ -222,7 +222,7 @@ questions:
description: "Path inside the container the storage is mounted"
schema:
type: string
default: "/data"
default: "/var/www/html/storage/upload"
hidden: true
valid_chars: '^\/([a-zA-Z0-9._-]+(\s?[a-zA-Z0-9._-]+|\/?))+$'
- variable: medium

View File

@ -51,9 +51,7 @@ persistence:
data:
enabled: true
mountPath: "/var/www/html/storage/upload"
type: pvc
accessMode: ReadWriteOnce
size: "100Gi"
# Enabled postgres
postgresql:

View File

@ -39,7 +39,10 @@ service:
main:
port: 5000
targetPort: 5000
persistence:
config:
enabled: true
mountPath: "/config"
# Enabled postgres
postgresql:
enabled: true

View File

@ -39,6 +39,3 @@ persistence:
config:
enabled: true
mountPath: "/config"
type: pvc
accessMode: ReadWriteOnce
size: "100Gi"

View File

@ -34,6 +34,4 @@ service:
persistence:
data:
enabled: true
type: pvc
accessMode: ReadWriteOnce
size: "100Gi"
mountPath: "/data"

View File

@ -37,6 +37,4 @@ service:
persistence:
data:
enabled: true
type: pvc
accessMode: ReadWriteOnce
size: "100Gi"
mountPath: "/data"

View File

@ -164,25 +164,6 @@ questions:
# Include{serviceList}
- variable: persistence
label: "Integrated Persistent Storage"
description: "Integrated Persistent Storage"
group: "Storage and Persistence"
schema:
type: dict
attrs:
- variable: varrun
label: "varrun override for S6 Readonly Root"
schema:
type: dict
hidden: true
attrs:
- variable: enabled
label: ""
schema:
type: boolean
default: true
hidden: true
# Include{persistenceList}
- variable: ingress

View File

@ -2,8 +2,6 @@ image:
repository: ghcr.io/nicholaswilde/fossil
pullPolicy: IfNotPresent
tag: 2.15.1-ls4@sha256:a0a819ed2707e8e829dec371de0e166fbcf0499d3d12005880f603b2b95bf64d
securityContext:
readOnlyRootFilesystem: false
runAsNonRoot: false

View File

@ -54,6 +54,3 @@ persistence:
config:
enabled: true
mountPath: "/etc/raddb"
type: pvc
accessMode: ReadWriteOnce
size: "100Gi"

View File

@ -23,12 +23,7 @@ service:
env: {}
# TZ: UTC
# PUID: 1001
persistence:
config:
enabled: true
mountPath: "/config"
type: pvc
accessMode: ReadWriteOnce
size: "100Gi"

View File

@ -22,6 +22,3 @@ persistence:
data:
enabled: true
mountPath: "/usr/data"
type: pvc
accessMode: ReadWriteOnce
size: "100Gi"

View File

@ -33,13 +33,13 @@ initContainers:
name: gitea-env
volumeMounts:
- name: init
mountPath: /usr/sbin
mountPath: "/usr/sbin"
- name: temp
mountPath: /tmp
mountPath: "/tmp"
- name: config
mountPath: /etc/gitea/conf
mountPath: "/etc/gitea/conf"
- name: data
mountPath: /data
mountPath: "/data"
2-configure-gitea:
image: "{{ .Values.image.repository }}:{{ .Values.image.tag }}"
command: ["/usr/sbin/configure_gitea.sh"]
@ -48,19 +48,16 @@ initContainers:
name: gitea-env
volumeMounts:
- name: init
mountPath: /usr/sbin
mountPath: "/usr/sbin"
- name: temp
mountPath: /tmp
mountPath: "/tmp"
- name: data
mountPath: /data
mountPath: "/data"
persistence:
data:
enabled: true
mountPath: "/data"
type: pvc
accessMode: ReadWriteOnce
size: "100Gi"
temp:
enabled: true
mountPath: "/tmp"

View File

@ -245,18 +245,6 @@ questions:
- value: "Memory"
description: "Memory"
# Include{persistenceAdvanced}
- variable: varrun
label: "varrun override for S6 Readonly Root"
schema:
type: dict
hidden: true
attrs:
- variable: enabled
label: ""
schema:
type: boolean
default: true
hidden: true
# Include{persistenceList}
- variable: ingress

View File

@ -2,8 +2,6 @@ image:
repository: ghcr.io/nicholaswilde/golinks
pullPolicy: IfNotPresent
tag: version-154c581@sha256:8e67b26324c5dc433210df8f2fb64317db3cbbe7db0b9e10c6e5bc3f3f7860e4
env: {}
# SUGGEST=https://suggestqueries.google.com/complete/search?client=firefox&q=%s `# optional` \
# TITLE=Search `# optional` \
@ -27,8 +25,6 @@ service:
persistence:
data:
enabled: true
mountPath: /data
accessMode: ReadWriteOnce
size: 1Gi
mountPath: "/data"
varrun:
enabled: true

View File

@ -43,6 +43,4 @@ service:
persistence:
data:
enabled: true
type: pvc
accessMode: ReadWriteOnce
size: "100Gi"
mountPath: "/data"

View File

@ -42,9 +42,7 @@ service:
persistence:
data:
enabled: true
mountPath: /app/data
accessMode: ReadWriteOnce
size: 1Gi
mountPath: "/app/data"
# Enabled postgres
postgresql:

View File

@ -233,18 +233,6 @@ questions:
- value: "Memory"
description: "Memory"
# Include{persistenceAdvanced}
- variable: varrun
label: "varrun override for S6 Readonly Root"
schema:
type: dict
hidden: true
attrs:
- variable: enabled
label: ""
schema:
type: boolean
default: true
hidden: true
# Include{persistenceList}
- variable: ingress

View File

@ -24,6 +24,6 @@ service:
persistence:
config:
enabled: true
mountPath: /config
mountPath: "/config"
varrun:
enabled: true

View File

@ -23,12 +23,7 @@ service:
env: {}
# TZ:
# PUID:
persistence:
config:
enabled: true
mountPath: "/config"
type: pvc
accessMode: ReadWriteOnce
size: "100Gi"

View File

@ -31,8 +31,6 @@ service:
envTpl:
# Permissions Settings
USER_ID: "{{ .Values.env.PUID }}"
env:
# Permissions Settings
PUID: 568
@ -55,6 +53,3 @@ persistence:
config:
enabled: true
mountPath: "/config"
type: pvc
accessMode: ReadWriteOnce
size: "100Gi"

View File

@ -41,6 +41,4 @@ ingress:
persistence:
config:
enabled: true
type: pvc
accessMode: ReadWriteOnce
size: "100Gi"
mountPath: "/config"

View File

@ -232,18 +232,6 @@ questions:
- value: "Memory"
description: "Memory"
# Include{persistenceAdvanced}
- variable: varrun
label: "varrun override for S6 Readonly Root"
schema:
type: dict
hidden: true
attrs:
- variable: enabled
label: ""
schema:
type: boolean
default: true
hidden: true
# Include{persistenceList}
- variable: ingress

View File

@ -24,16 +24,6 @@ service:
persistence:
config:
enabled: true
mountPath: /config
downloads:
enabled: true
mountPath: /downloads
accessMode: ReadWriteOnce
size: 1Gi
music:
enabled: true
mountPath: /music
accessMode: ReadWriteOnce
size: 1Gi
mountPath: "/config"
varrun:
enabled: true

View File

@ -47,7 +47,4 @@ persistence:
# -- Volume used for configuration
config:
enabled: true
type: pvc
accessMode: ReadWriteOnce
size: "100Gi"
mountpath: /config
mountPath: "/config"

View File

@ -23,8 +23,6 @@ service:
env: {}
# TZ:
# PUID:
probes:
startup:
enabled: true
@ -33,6 +31,3 @@ persistence:
config:
enabled: true
mountPath: "/config"
type: pvc
accessMode: ReadWriteOnce
size: "100Gi"

View File

@ -29,9 +29,9 @@ initContainers:
command: ["/config/init/init.sh"]
volumeMounts:
- name: init
mountPath: /config/init
mountPath: "/config/init"
- name: config
mountPath: /config
mountPath: "/config"
# # Enable devices to be discoverable
# hostNetwork: true
@ -57,9 +57,7 @@ persistence:
config:
enabled: true
mountPath: "/config"
type: pvc
accessMode: ReadWriteOnce
size: "100Gi"
# -- Enable and configure postgresql database subchart under this key.
# For more options see [postgresql chart documentation](https://github.com/bitnami/charts/tree/master/bitnami/postgresql)
@ -80,4 +78,4 @@ influxdb:
persistence:
enabled: false
# storageClass: ""
# size: 8Gi
#

View File

@ -386,7 +386,7 @@ questions:
description: "Path inside the container the storage is mounted"
schema:
type: string
default: "/.hyperion"
default: "/root/.hyperion"
hidden: true
valid_chars: '^\/([a-zA-Z0-9._-]+(\s?[a-zA-Z0-9._-]+|\/?))+$'
- variable: medium

View File

@ -64,7 +64,4 @@ service:
persistence:
config:
enabled: true
type: pvc
accessMode: ReadWriteOnce
size: "100Gi"
mountPath: /root/.hyperion
mountPath: "/root/.hyperion"

View File

@ -16,7 +16,10 @@ service:
main:
port: 3000
targetPort: 3000
persistence:
config:
enabled: true
mountPath: "/config"
# -- Configures app settings. See [image docs](https://github.com/Hypfer/ICantBelieveItsNotValetudo) for more information.
# @default -- See values.yaml
config:

View File

@ -30,12 +30,7 @@ probes:
env: {}
# TZ: UTC
# PUID: 1001
persistence:
config:
enabled: true
mountPath: "/config"
type: pvc
accessMode: ReadWriteOnce
size: "100Gi"

View File

@ -39,8 +39,6 @@ service:
envTpl:
# Permissions Settings
USER_ID: "{{ .Values.env.PUID }}"
env:
# Permissions Settings
PUID: 568
@ -57,6 +55,3 @@ persistence:
config:
enabled: true
mountPath: "/config"
type: pvc
accessMode: ReadWriteOnce
size: "100Gi"

View File

@ -19,6 +19,3 @@ persistence:
config:
enabled: true
mountPath: "/config"
type: pvc
accessMode: ReadWriteOnce
size: "100Gi"

View File

@ -49,6 +49,10 @@ service:
port: 22300
targetPort: 22300
persistence:
config:
enabled: true
mountPath: "/config"
# -- Enable and configure postgresql database subchart under this key.
# @default -- See values.yaml
postgresql:

View File

@ -55,10 +55,10 @@ service:
persistence:
data:
enabled: true
mountPath: /var/www/app/data
mountPath: "/var/www/app/data"
ssl:
enabled: true
mountPath: /etc/nginx/ssl
mountPath: "/etc/nginx/ssl"
# -- Enable and configure postgresql database subchart under this key.
# @default -- See values.yaml

View File

@ -31,10 +31,7 @@ service:
persistence:
config:
enabled: true
type: pvc
accessMode: ReadWriteOnce
size: "100Gi"
mountPath: /config
mountPath: "/config"
data:
enabled: false
mountPath: /data
enabled: true
mountPath: "/data"

View File

@ -177,18 +177,6 @@ questions:
schema:
type: dict
attrs:
- variable: varrun
label: "varrun override for S6 Readonly Root"
schema:
type: dict
hidden: true
attrs:
- variable: enabled
label: ""
schema:
type: boolean
default: true
hidden: true
- variable: config
label: "App Config Storage"
description: "Stores the Application Configuration."

View File

@ -22,14 +22,9 @@ service:
env: {}
# TZ: UTC
# PUID: 1001
persistence:
config:
enabled: true
mountPath: "/config"
type: pvc
accessMode: ReadWriteOnce
size: "100Gi"
varrun:
enabled: true

View File

@ -28,8 +28,6 @@ env:
TZ: UTC
# -- Specify the user ID the application will run as
PUID: 568
# PASSWORD:
# CUSTOM_RESULTS:
# DB_TYPE:
@ -53,6 +51,4 @@ service:
persistence:
config:
enabled: true
type: pvc
accessMode: ReadWriteOnce
size: "100Gi"
mountPath: "/config"

View File

@ -18,8 +18,6 @@ service:
env: {}
# TZ: UTC
# PUID: 1001
probes:
liveness:
enabled: true
@ -45,6 +43,3 @@ persistence:
config:
enabled: true
mountPath: "/config"
type: pvc
accessMode: ReadWriteOnce
size: "100Gi"

View File

@ -4,8 +4,6 @@ image:
repository: lmscommunity/logitechmediaserver
pullPolicy: IfNotPresent
tag: 8.3.0@sha256:2b3ff7a240749af53ef266f91c1003d862e7b6d1a1ab810d44d57be0369515aa
env:
# Permissions Settings
PUID: 568
@ -53,7 +51,4 @@ service:
persistence:
config:
enabled: true
mounthPath: "/config"
type: pvc
accessMode: ReadWriteOnce
size: "100Gi"
mountPath: "/config"

View File

@ -23,12 +23,7 @@ service:
env: {}
# PHP_TZ: UTC
# PUID: 1001
persistence:
config:
enabled: true
mountPath: "/config"
type: pvc
accessMode: ReadWriteOnce
size: "100Gi"

View File

@ -49,7 +49,4 @@ ingress:
persistence:
config:
enabled: true
type: pvc
accessMode: ReadWriteOnce
size: "100Gi"
mountPath: /app/data/
mountPath: "/app/data/"

View File

@ -233,18 +233,6 @@ questions:
- value: "Memory"
description: "Memory"
# Include{persistenceAdvanced}
- variable: varrun
label: "varrun override for S6 Readonly Root"
schema:
type: dict
hidden: true
attrs:
- variable: enabled
label: ""
schema:
type: boolean
default: true
hidden: true
# Include{persistenceList}
- variable: ingress

View File

@ -2,8 +2,6 @@ image:
repository: ghcr.io/linuxserver/medusa
pullPolicy: IfNotPresent
tag: 0.5.20@sha256:4b8296a04eff2320a466406d37a6115a0a26623d4163b6449c3d47fec6b95309
env:
PUID: 568
@ -24,16 +22,6 @@ service:
persistence:
config:
enabled: true
mountPath: /config
downloads:
enabled: true
mountPath: /downloads
accessMode: ReadWriteOnce
size: 1Gi
tv:
enabled: true
mountPath: /tv
accessMode: ReadWriteOnce
size: 1Gi
mountPath: "/config"
varrun:
enabled: true

View File

@ -34,6 +34,10 @@ service:
port: 8080
targetPort: 8080
persistence:
config:
enabled: true
mountPath: "/config"
# -- Configures the probes for the main Pod.
# @default -- See values.yaml
probes:

View File

@ -38,5 +38,8 @@ service:
securityContext:
readOnlyRootFilesystem: false
persistence:
config:
enabled: true
mountPath: "/config"
varrun:
enabled: true

View File

@ -29,16 +29,10 @@ persistence:
# @default -- See values.yaml
data:
enabled: true
type: pvc
accessMode: ReadWriteOnce
size: "100Gi"
mountPath: /mosquitto/data
mountPath: "/mosquitto/data"
# -- Configure a persistent volume to place *.conf mosquitto-config-files in.
# When enabled, this gets set as `include_dir` in the mosquitto config.
# @default -- See values.yaml
configinc:
enabled: true
type: pvc
accessMode: ReadWriteOnce
size: "100Gi"
mountPath: /mosquitto/configinc
mountPath: "/mosquitto/configinc"

View File

@ -233,18 +233,6 @@ questions:
- value: "Memory"
description: "Memory"
# Include{persistenceAdvanced}
- variable: varrun
label: "varrun override for S6 Readonly Root"
schema:
type: dict
hidden: true
attrs:
- variable: enabled
label: ""
schema:
type: boolean
default: true
hidden: true
# Include{persistenceList}
- variable: ingress

View File

@ -26,11 +26,6 @@ service:
persistence:
config:
enabled: true
mountPath: /config
music:
enabled: true
mountPath: /music
accessMode: ReadWriteOnce
size: 1Gi
mountPath: "/config"
varrun:
enabled: true

View File

@ -233,18 +233,6 @@ questions:
- value: "Memory"
description: "Memory"
# Include{persistenceAdvanced}
- variable: varrun
label: "varrun override for S6 Readonly Root"
schema:
type: dict
hidden: true
attrs:
- variable: enabled
label: ""
schema:
type: boolean
default: true
hidden: true
# Include{persistenceList}
- variable: ingress

Some files were not shown because too many files have changed in this diff Show More