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:
parent
56de7f45de
commit
19df900522
|
@ -215,62 +215,6 @@ questions:
|
||||||
description: "pvc"
|
description: "pvc"
|
||||||
- value: "hostPath"
|
- value: "hostPath"
|
||||||
description: "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}
|
# Include{persistenceBasic}
|
||||||
- variable: hostPath
|
- variable: hostPath
|
||||||
label: "hostPath"
|
label: "hostPath"
|
||||||
|
@ -299,63 +243,6 @@ questions:
|
||||||
description: "Memory"
|
description: "Memory"
|
||||||
# Include{persistenceAdvanced}
|
# 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{persistenceList}
|
||||||
|
|
||||||
# Include{ingressList}
|
# Include{ingressList}
|
||||||
|
|
|
@ -24,9 +24,7 @@ persistence:
|
||||||
db:
|
db:
|
||||||
enabled: true
|
enabled: true
|
||||||
mountPath: "/bitnami/postgresql"
|
mountPath: "/bitnami/postgresql"
|
||||||
type: pvc
|
|
||||||
accessMode: ReadWriteOnce
|
|
||||||
size: "999Gi"
|
|
||||||
|
|
||||||
postgresqlPassword: "testpass"
|
postgresqlPassword: "testpass"
|
||||||
postgresqlUsername: "test"
|
postgresqlUsername: "test"
|
||||||
|
|
|
@ -59,8 +59,8 @@ volumeClaimTemplates:
|
||||||
data:
|
data:
|
||||||
enabled: true
|
enabled: true
|
||||||
mountPath: "/bitnami/redis"
|
mountPath: "/bitnami/redis"
|
||||||
type: pvc
|
|
||||||
accessMode: ReadWriteOnce
|
accessMode: ReadWriteOnce
|
||||||
|
type: pvc
|
||||||
size: "100Gi"
|
size: "100Gi"
|
||||||
|
|
||||||
# -- Probe configuration
|
# -- Probe configuration
|
||||||
|
@ -125,7 +125,7 @@ persistence:
|
||||||
# -- Where to mount the volume in the main container.
|
# -- Where to mount the volume in the main container.
|
||||||
# Defaults to `/<name_of_the_volume>`,
|
# Defaults to `/<name_of_the_volume>`,
|
||||||
# setting to '-' creates the volume but disables the volumeMount.
|
# setting to '-' creates the volume but disables the volumeMount.
|
||||||
mountPath: /health
|
mountPath: "/health"
|
||||||
# -- Specify if the volume should be mounted read-only.
|
# -- Specify if the volume should be mounted read-only.
|
||||||
readOnly: false
|
readOnly: false
|
||||||
# -- Define the custom Volume spec here
|
# -- Define the custom Volume spec here
|
||||||
|
|
|
@ -50,5 +50,3 @@ persistence:
|
||||||
config:
|
config:
|
||||||
enabled: true
|
enabled: true
|
||||||
mountPath: "/data"
|
mountPath: "/data"
|
||||||
type: pvc
|
|
||||||
accessMode: ReadWriteOnce
|
|
||||||
|
|
|
@ -87,6 +87,4 @@ service:
|
||||||
persistence:
|
persistence:
|
||||||
data:
|
data:
|
||||||
enabled: true
|
enabled: true
|
||||||
type: pvc
|
mountPath: "/data"
|
||||||
accessMode: ReadWriteOnce
|
|
||||||
size: "100Gi"
|
|
||||||
|
|
|
@ -234,18 +234,6 @@ questions:
|
||||||
- value: "Memory"
|
- value: "Memory"
|
||||||
description: "Memory"
|
description: "Memory"
|
||||||
# Include{persistenceAdvanced}
|
# 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}
|
# Include{persistenceList}
|
||||||
|
|
||||||
- variable: ingress
|
- variable: ingress
|
||||||
|
|
|
@ -24,11 +24,6 @@ service:
|
||||||
persistence:
|
persistence:
|
||||||
config:
|
config:
|
||||||
enabled: true
|
enabled: true
|
||||||
mountPath: /config
|
mountPath: "/config"
|
||||||
gallery:
|
|
||||||
enabled: true
|
|
||||||
mountPath: /gallery
|
|
||||||
accessMode: ReadWriteOnce
|
|
||||||
size: 1Gi
|
|
||||||
varrun:
|
varrun:
|
||||||
enabled: true
|
enabled: true
|
||||||
|
|
|
@ -372,18 +372,6 @@ questions:
|
||||||
- value: "Memory"
|
- value: "Memory"
|
||||||
description: "Memory"
|
description: "Memory"
|
||||||
# Include{persistenceAdvanced}
|
# 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}
|
# Include{persistenceList}
|
||||||
|
|
||||||
|
|
|
@ -33,14 +33,8 @@ persistence:
|
||||||
configs:
|
configs:
|
||||||
enabled: true
|
enabled: true
|
||||||
mountPath: "/app/configs"
|
mountPath: "/app/configs"
|
||||||
type: pvc
|
|
||||||
accessMode: ReadWriteOnce
|
|
||||||
size: "100Gi"
|
|
||||||
logs:
|
logs:
|
||||||
enabled: true
|
enabled: true
|
||||||
mountPath: "/app/logs"
|
mountPath: "/app/logs"
|
||||||
type: pvc
|
|
||||||
accessMode: ReadWriteOnce
|
|
||||||
size: "100Gi"
|
|
||||||
varrun:
|
varrun:
|
||||||
enabled: true
|
enabled: true
|
||||||
|
|
|
@ -536,18 +536,6 @@ questions:
|
||||||
- value: "Memory"
|
- value: "Memory"
|
||||||
description: "Memory"
|
description: "Memory"
|
||||||
# Include{persistenceAdvanced}
|
# 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}
|
# Include{persistenceList}
|
||||||
|
|
||||||
- variable: ingress
|
- variable: ingress
|
||||||
|
|
|
@ -33,23 +33,14 @@ service:
|
||||||
targetPort: 8266
|
targetPort: 8266
|
||||||
|
|
||||||
persistence:
|
persistence:
|
||||||
server:
|
|
||||||
enabled: true
|
|
||||||
mountPath: "/app/server"
|
|
||||||
type: pvc
|
|
||||||
accessMode: ReadWriteOnce
|
|
||||||
size: "100Gi"
|
|
||||||
configs:
|
configs:
|
||||||
enabled: true
|
enabled: true
|
||||||
mountPath: "/app/configs"
|
mountPath: "/app/configs"
|
||||||
type: pvc
|
server:
|
||||||
accessMode: ReadWriteOnce
|
enabled: true
|
||||||
size: "100Gi"
|
mountPath: "/app/server"
|
||||||
logs:
|
logs:
|
||||||
enabled: true
|
enabled: true
|
||||||
mountPath: "/app/logs"
|
mountPath: "/app/logs"
|
||||||
type: pvc
|
|
||||||
accessMode: ReadWriteOnce
|
|
||||||
size: "100Gi"
|
|
||||||
varrun:
|
varrun:
|
||||||
enabled: true
|
enabled: true
|
||||||
|
|
|
@ -28,8 +28,6 @@ env:
|
||||||
TZ: UTC
|
TZ: UTC
|
||||||
# -- Specify the user ID the application will run as
|
# -- Specify the user ID the application will run as
|
||||||
PUID: 568
|
PUID: 568
|
||||||
|
|
||||||
|
|
||||||
# -- Used to set the base path for reverse proxies eg. /booksonic, /books, etc.
|
# -- Used to set the base path for reverse proxies eg. /booksonic, /books, etc.
|
||||||
CONTEXT_PATH: # "url-base"
|
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.
|
# -- 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:
|
persistence:
|
||||||
config:
|
config:
|
||||||
enabled: true
|
enabled: true
|
||||||
type: pvc
|
mountPath: "/config"
|
||||||
accessMode: ReadWriteOnce
|
|
||||||
size: "100Gi"
|
|
||||||
music:
|
|
||||||
enabled: false
|
|
||||||
mountPath: /music
|
|
||||||
playlists:
|
|
||||||
enabled: false
|
|
||||||
mountPath: /playlists
|
|
||||||
podcasts:
|
|
||||||
enabled: false
|
|
||||||
mountPath: /podcasts
|
|
||||||
media:
|
|
||||||
enabled: false
|
|
||||||
mountPath: /media
|
|
||||||
|
|
|
@ -215,18 +215,6 @@ questions:
|
||||||
schema:
|
schema:
|
||||||
type: dict
|
type: dict
|
||||||
attrs:
|
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
|
- variable: conf
|
||||||
label: "App Config Storage"
|
label: "App Config Storage"
|
||||||
description: "Stores the Application Configuration."
|
description: "Stores the Application Configuration."
|
||||||
|
|
|
@ -37,8 +37,6 @@ persistence:
|
||||||
conf:
|
conf:
|
||||||
enabled: true
|
enabled: true
|
||||||
mountPath: "/conf"
|
mountPath: "/conf"
|
||||||
type: pvc
|
|
||||||
accessMode: ReadWriteOnce
|
|
||||||
size: "100Gi"
|
|
||||||
varrun:
|
varrun:
|
||||||
enabled: true
|
enabled: true
|
||||||
|
|
|
@ -307,18 +307,6 @@ questions:
|
||||||
- value: "Memory"
|
- value: "Memory"
|
||||||
description: "Memory"
|
description: "Memory"
|
||||||
# Include{persistenceAdvanced}
|
# 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}
|
# Include{persistenceList}
|
||||||
|
|
||||||
- variable: ingress
|
- variable: ingress
|
||||||
|
|
|
@ -45,11 +45,8 @@ podSecurityContext:
|
||||||
# -- Configure persistence settings for the chart under this key.
|
# -- Configure persistence settings for the chart under this key.
|
||||||
# @default -- See values.yaml
|
# @default -- See values.yaml
|
||||||
persistence:
|
persistence:
|
||||||
data:
|
|
||||||
enabled: true
|
|
||||||
mountpath: /downloads
|
|
||||||
config:
|
config:
|
||||||
enabled: true
|
enabled: true
|
||||||
mountpath: /config
|
mountPath: "/config"
|
||||||
varrun:
|
varrun:
|
||||||
enabled: true
|
enabled: true
|
||||||
|
|
|
@ -233,18 +233,6 @@ questions:
|
||||||
- value: "Memory"
|
- value: "Memory"
|
||||||
description: "Memory"
|
description: "Memory"
|
||||||
# Include{persistenceAdvanced}
|
# 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}
|
# Include{persistenceList}
|
||||||
|
|
||||||
- variable: ingress
|
- variable: ingress
|
||||||
|
|
|
@ -2,8 +2,6 @@ image:
|
||||||
repository: ghcr.io/linuxserver/audacity
|
repository: ghcr.io/linuxserver/audacity
|
||||||
pullPolicy: IfNotPresent
|
pullPolicy: IfNotPresent
|
||||||
tag: version-3.0.2@sha256:cdf203db1e50e18349f16c5958f7061b18625501f5e2f7a15cd69262185e3e84
|
tag: version-3.0.2@sha256:cdf203db1e50e18349f16c5958f7061b18625501f5e2f7a15cd69262185e3e84
|
||||||
|
|
||||||
|
|
||||||
env:
|
env:
|
||||||
PUID: 568
|
PUID: 568
|
||||||
|
|
||||||
|
@ -25,6 +23,6 @@ service:
|
||||||
persistence:
|
persistence:
|
||||||
config:
|
config:
|
||||||
enabled: true
|
enabled: true
|
||||||
mountPath: /config
|
mountPath: "/config"
|
||||||
varrun:
|
varrun:
|
||||||
enabled: true
|
enabled: true
|
||||||
|
|
|
@ -21,8 +21,6 @@ persistence:
|
||||||
config:
|
config:
|
||||||
enabled: true
|
enabled: true
|
||||||
mountPath: "/config"
|
mountPath: "/config"
|
||||||
type: pvc
|
|
||||||
|
|
||||||
# Enabled postgres
|
# Enabled postgres
|
||||||
postgresql:
|
postgresql:
|
||||||
enabled: true
|
enabled: true
|
||||||
|
|
|
@ -43,7 +43,7 @@ service:
|
||||||
persistence:
|
persistence:
|
||||||
config:
|
config:
|
||||||
enabled: true
|
enabled: true
|
||||||
mountPath: /config
|
mountPath: "/config"
|
||||||
varrun:
|
varrun:
|
||||||
enabled: true
|
enabled: true
|
||||||
|
|
||||||
|
|
|
@ -15,12 +15,7 @@ service:
|
||||||
env: {}
|
env: {}
|
||||||
# TZ: UTC
|
# TZ: UTC
|
||||||
# PUID: 1001
|
# PUID: 1001
|
||||||
|
|
||||||
|
|
||||||
persistence:
|
persistence:
|
||||||
config:
|
config:
|
||||||
enabled: true
|
enabled: true
|
||||||
mountPath: "/config"
|
mountPath: "/config"
|
||||||
type: pvc
|
|
||||||
accessMode: ReadWriteOnce
|
|
||||||
size: "100Gi"
|
|
||||||
|
|
|
@ -24,16 +24,6 @@ service:
|
||||||
persistence:
|
persistence:
|
||||||
config:
|
config:
|
||||||
enabled: true
|
enabled: true
|
||||||
mountPath: /config
|
mountPath: "/config"
|
||||||
music:
|
|
||||||
enabled: true
|
|
||||||
mountPath: /music
|
|
||||||
accessMode: ReadWriteOnce
|
|
||||||
size: 1Gi
|
|
||||||
downloads:
|
|
||||||
enabled: true
|
|
||||||
mountPath: /downloads
|
|
||||||
accessMode: ReadWriteOnce
|
|
||||||
size: 1Gi
|
|
||||||
varrun:
|
varrun:
|
||||||
enabled: true
|
enabled: true
|
||||||
|
|
|
@ -28,8 +28,6 @@ env:
|
||||||
TZ: UTC
|
TZ: UTC
|
||||||
# -- Specify the user ID the application will run as
|
# -- Specify the user ID the application will run as
|
||||||
PUID: 568
|
PUID: 568
|
||||||
|
|
||||||
|
|
||||||
# -- Used to set the base path for reverse proxies eg. /booksonic, /books, etc.
|
# -- Used to set the base path for reverse proxies eg. /booksonic, /books, etc.
|
||||||
# CONTEXT_PATH=url-base
|
# CONTEXT_PATH=url-base
|
||||||
|
|
||||||
|
@ -47,12 +45,4 @@ service:
|
||||||
persistence:
|
persistence:
|
||||||
config:
|
config:
|
||||||
enabled: true
|
enabled: true
|
||||||
type: pvc
|
mountPath: "/config"
|
||||||
accessMode: ReadWriteOnce
|
|
||||||
size: "100Gi"
|
|
||||||
audiobooks:
|
|
||||||
enabled: false
|
|
||||||
podcasts:
|
|
||||||
enabled: false
|
|
||||||
othermedia:
|
|
||||||
enabled: false
|
|
||||||
|
|
|
@ -31,6 +31,3 @@ persistence:
|
||||||
config:
|
config:
|
||||||
enabled: true
|
enabled: true
|
||||||
mountPath: "/config"
|
mountPath: "/config"
|
||||||
type: pvc
|
|
||||||
accessMode: ReadWriteOnce
|
|
||||||
size: "100Gi"
|
|
||||||
|
|
|
@ -256,18 +256,6 @@ questions:
|
||||||
schema:
|
schema:
|
||||||
type: dict
|
type: dict
|
||||||
attrs:
|
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
|
- variable: config
|
||||||
label: "App Config Storage"
|
label: "App Config Storage"
|
||||||
description: "Stores the Application Configuration."
|
description: "Stores the Application Configuration."
|
||||||
|
|
|
@ -63,8 +63,6 @@ service:
|
||||||
persistence:
|
persistence:
|
||||||
config:
|
config:
|
||||||
enabled: true
|
enabled: true
|
||||||
type: pvc
|
mountPath: "/config"
|
||||||
accessMode: ReadWriteOnce
|
|
||||||
size: "100Gi"
|
|
||||||
varrun:
|
varrun:
|
||||||
enabled: true
|
enabled: true
|
||||||
|
|
|
@ -232,18 +232,6 @@ questions:
|
||||||
- value: "Memory"
|
- value: "Memory"
|
||||||
description: "Memory"
|
description: "Memory"
|
||||||
# Include{persistenceAdvanced}
|
# 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}
|
# Include{persistenceList}
|
||||||
|
|
||||||
- variable: ingress
|
- variable: ingress
|
||||||
|
|
|
@ -27,8 +27,6 @@ service:
|
||||||
persistence:
|
persistence:
|
||||||
code:
|
code:
|
||||||
enabled: true
|
enabled: true
|
||||||
mountPath: /code
|
mountPath: "/code"
|
||||||
accessMode: ReadWriteOnce
|
|
||||||
size: 1Gi
|
|
||||||
varrun:
|
varrun:
|
||||||
enabled: true
|
enabled: true
|
||||||
|
|
|
@ -239,18 +239,6 @@ questions:
|
||||||
- value: "Memory"
|
- value: "Memory"
|
||||||
description: "Memory"
|
description: "Memory"
|
||||||
# Include{persistenceAdvanced}
|
# 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}
|
# Include{persistenceList}
|
||||||
|
|
||||||
- variable: ingress
|
- variable: ingress
|
||||||
|
|
|
@ -29,6 +29,6 @@ service:
|
||||||
persistence:
|
persistence:
|
||||||
config:
|
config:
|
||||||
enabled: true
|
enabled: true
|
||||||
mountPath: /config
|
mountPath: "/config"
|
||||||
varrun:
|
varrun:
|
||||||
enabled: true
|
enabled: true
|
||||||
|
|
|
@ -34,4 +34,4 @@ service:
|
||||||
persistence:
|
persistence:
|
||||||
data:
|
data:
|
||||||
enabled: true
|
enabled: true
|
||||||
mountPath: /data
|
mountPath: "/data"
|
||||||
|
|
|
@ -233,18 +233,6 @@ questions:
|
||||||
- value: "Memory"
|
- value: "Memory"
|
||||||
description: "Memory"
|
description: "Memory"
|
||||||
# Include{persistenceAdvanced}
|
# 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}
|
# Include{persistenceList}
|
||||||
|
|
||||||
- variable: ingress
|
- variable: ingress
|
||||||
|
|
|
@ -24,11 +24,6 @@ service:
|
||||||
persistence:
|
persistence:
|
||||||
config:
|
config:
|
||||||
enabled: true
|
enabled: true
|
||||||
mountPath: /config
|
mountPath: "/config"
|
||||||
download:
|
|
||||||
enabled: true
|
|
||||||
mountPath: /download
|
|
||||||
accessMode: ReadWriteOnce
|
|
||||||
size: 1Gi
|
|
||||||
varrun:
|
varrun:
|
||||||
enabled: true
|
enabled: true
|
||||||
|
|
|
@ -70,10 +70,7 @@ service:
|
||||||
persistence:
|
persistence:
|
||||||
config:
|
config:
|
||||||
enabled: true
|
enabled: true
|
||||||
type: pvc
|
mountPath: "/root/.local/share/dresden-elektronik/deCONZ"
|
||||||
accessMode: ReadWriteOnce
|
|
||||||
size: "100Gi"
|
|
||||||
mountPath: /root/.local/share/dresden-elektronik/deCONZ
|
|
||||||
|
|
||||||
# -- Affinity constraint rules to place the Pod on a specific node.
|
# -- 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)
|
# [[ref]](https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#affinity-and-anti-affinity)
|
||||||
|
|
|
@ -24,8 +24,6 @@ podSecurityContext:
|
||||||
envTpl:
|
envTpl:
|
||||||
# Permissions Settings
|
# Permissions Settings
|
||||||
USER_ID: "{{ .Values.env.PUID }}"
|
USER_ID: "{{ .Values.env.PUID }}"
|
||||||
|
|
||||||
|
|
||||||
env:
|
env:
|
||||||
PUID: 568
|
PUID: 568
|
||||||
|
|
||||||
|
@ -42,6 +40,3 @@ persistence:
|
||||||
data:
|
data:
|
||||||
enabled: true
|
enabled: true
|
||||||
mountPath: "/datastore"
|
mountPath: "/datastore"
|
||||||
type: pvc
|
|
||||||
accessMode: ReadWriteOnce
|
|
||||||
size: "100Gi"
|
|
||||||
|
|
|
@ -24,8 +24,6 @@ podSecurityContext:
|
||||||
envTpl:
|
envTpl:
|
||||||
# Permissions Settings
|
# Permissions Settings
|
||||||
USER_ID: "{{ .Values.env.PUID }}"
|
USER_ID: "{{ .Values.env.PUID }}"
|
||||||
|
|
||||||
|
|
||||||
env:
|
env:
|
||||||
PUID: 568
|
PUID: 568
|
||||||
|
|
||||||
|
@ -42,6 +40,3 @@ persistence:
|
||||||
data:
|
data:
|
||||||
enabled: true
|
enabled: true
|
||||||
mountPath: "/datastore"
|
mountPath: "/datastore"
|
||||||
type: pvc
|
|
||||||
accessMode: ReadWriteOnce
|
|
||||||
size: "100Gi"
|
|
||||||
|
|
|
@ -294,18 +294,6 @@ questions:
|
||||||
schema:
|
schema:
|
||||||
type: dict
|
type: dict
|
||||||
attrs:
|
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
|
- variable: config
|
||||||
label: "App Config Storage"
|
label: "App Config Storage"
|
||||||
description: "Stores the Application Configuration."
|
description: "Stores the Application Configuration."
|
||||||
|
|
|
@ -39,8 +39,5 @@ persistence:
|
||||||
config:
|
config:
|
||||||
enabled: true
|
enabled: true
|
||||||
mountPath: "/config"
|
mountPath: "/config"
|
||||||
type: pvc
|
|
||||||
accessMode: ReadWriteOnce
|
|
||||||
size: "100Gi"
|
|
||||||
varrun:
|
varrun:
|
||||||
enabled: true
|
enabled: true
|
||||||
|
|
|
@ -233,18 +233,6 @@ questions:
|
||||||
- value: "Memory"
|
- value: "Memory"
|
||||||
description: "Memory"
|
description: "Memory"
|
||||||
# Include{persistenceAdvanced}
|
# 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}
|
# Include{persistenceList}
|
||||||
|
|
||||||
- variable: ingress
|
- variable: ingress
|
||||||
|
|
|
@ -24,6 +24,6 @@ service:
|
||||||
persistence:
|
persistence:
|
||||||
config:
|
config:
|
||||||
enabled: true
|
enabled: true
|
||||||
mountPath: /config
|
mountPath: "/config"
|
||||||
varrun:
|
varrun:
|
||||||
enabled: true
|
enabled: true
|
||||||
|
|
|
@ -35,7 +35,4 @@ service:
|
||||||
persistence:
|
persistence:
|
||||||
config:
|
config:
|
||||||
enabled: true
|
enabled: true
|
||||||
type: pvc
|
mountPath: "/home/node/app/.dizquetv"
|
||||||
accessMode: ReadWriteOnce
|
|
||||||
size: "100Gi"
|
|
||||||
mountPath: /home/node/app/.dizquetv
|
|
||||||
|
|
|
@ -232,18 +232,6 @@ questions:
|
||||||
- value: "Memory"
|
- value: "Memory"
|
||||||
description: "Memory"
|
description: "Memory"
|
||||||
# Include{persistenceAdvanced}
|
# 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}
|
# Include{persistenceList}
|
||||||
|
|
||||||
- variable: ingress
|
- variable: ingress
|
||||||
|
|
|
@ -24,11 +24,6 @@ service:
|
||||||
persistence:
|
persistence:
|
||||||
config:
|
config:
|
||||||
enabled: true
|
enabled: true
|
||||||
mountPath: /config
|
mountPath: "/config"
|
||||||
data:
|
|
||||||
enabled: true
|
|
||||||
mountPath: /data
|
|
||||||
accessMode: ReadWriteOnce
|
|
||||||
size: 1Gi
|
|
||||||
varrun:
|
varrun:
|
||||||
enabled: true
|
enabled: true
|
||||||
|
|
|
@ -45,7 +45,10 @@ service:
|
||||||
main:
|
main:
|
||||||
port: 80
|
port: 80
|
||||||
targetPort: 80
|
targetPort: 80
|
||||||
|
persistence:
|
||||||
|
config:
|
||||||
|
enabled: true
|
||||||
|
mountPath: "/config"
|
||||||
# -- Enable and configure postgresql database subchart under this key.
|
# -- Enable and configure postgresql database subchart under this key.
|
||||||
# @default -- See values.yaml
|
# @default -- See values.yaml
|
||||||
postgresql:
|
postgresql:
|
||||||
|
|
|
@ -26,7 +26,4 @@ service:
|
||||||
persistence:
|
persistence:
|
||||||
config:
|
config:
|
||||||
enabled: true
|
enabled: true
|
||||||
type: pvc
|
|
||||||
accessMode: ReadWriteOnce
|
|
||||||
size: "100Gi"
|
|
||||||
mountPath: "/data"
|
mountPath: "/data"
|
||||||
|
|
|
@ -19,6 +19,3 @@ persistence:
|
||||||
config:
|
config:
|
||||||
enabled: true
|
enabled: true
|
||||||
mountPath: "/config"
|
mountPath: "/config"
|
||||||
type: pvc
|
|
||||||
accessMode: ReadWriteOnce
|
|
||||||
size: "100Gi"
|
|
||||||
|
|
|
@ -25,6 +25,3 @@ persistence:
|
||||||
config:
|
config:
|
||||||
enabled: true
|
enabled: true
|
||||||
mountPath: "/config"
|
mountPath: "/config"
|
||||||
type: pvc
|
|
||||||
accessMode: ReadWriteOnce
|
|
||||||
size: "100Gi"
|
|
||||||
|
|
|
@ -44,14 +44,10 @@ service:
|
||||||
persistence:
|
persistence:
|
||||||
data:
|
data:
|
||||||
enabled: true
|
enabled: true
|
||||||
mountPath: /opt/etherpad-lite/var
|
mountPath: "/opt/etherpad-lite/var"
|
||||||
accessMode: ReadWriteOnce
|
|
||||||
size: 1Gi
|
|
||||||
app:
|
app:
|
||||||
enabled: true
|
enabled: true
|
||||||
mountPath: /opt/etherpad-lite/app
|
mountPath: "/opt/etherpad-lite/app"
|
||||||
accessMode: ReadWriteOnce
|
|
||||||
size: 1Gi
|
|
||||||
|
|
||||||
# Enabled postgres
|
# Enabled postgres
|
||||||
postgresql:
|
postgresql:
|
||||||
|
|
|
@ -232,18 +232,6 @@ questions:
|
||||||
- value: "Memory"
|
- value: "Memory"
|
||||||
description: "Memory"
|
description: "Memory"
|
||||||
# Include{persistenceAdvanced}
|
# 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}
|
# Include{persistenceList}
|
||||||
|
|
||||||
- variable: ingress
|
- variable: ingress
|
||||||
|
|
|
@ -24,6 +24,6 @@ service:
|
||||||
persistence:
|
persistence:
|
||||||
config:
|
config:
|
||||||
enabled: true
|
enabled: true
|
||||||
mountPath: /config
|
mountPath: "/config"
|
||||||
varrun:
|
varrun:
|
||||||
enabled: true
|
enabled: true
|
||||||
|
|
|
@ -222,7 +222,7 @@ questions:
|
||||||
description: "Path inside the container the storage is mounted"
|
description: "Path inside the container the storage is mounted"
|
||||||
schema:
|
schema:
|
||||||
type: string
|
type: string
|
||||||
default: "/data"
|
default: "/var/www/html/storage/upload"
|
||||||
hidden: true
|
hidden: true
|
||||||
valid_chars: '^\/([a-zA-Z0-9._-]+(\s?[a-zA-Z0-9._-]+|\/?))+$'
|
valid_chars: '^\/([a-zA-Z0-9._-]+(\s?[a-zA-Z0-9._-]+|\/?))+$'
|
||||||
- variable: medium
|
- variable: medium
|
||||||
|
|
|
@ -51,9 +51,7 @@ persistence:
|
||||||
data:
|
data:
|
||||||
enabled: true
|
enabled: true
|
||||||
mountPath: "/var/www/html/storage/upload"
|
mountPath: "/var/www/html/storage/upload"
|
||||||
type: pvc
|
|
||||||
accessMode: ReadWriteOnce
|
|
||||||
size: "100Gi"
|
|
||||||
|
|
||||||
# Enabled postgres
|
# Enabled postgres
|
||||||
postgresql:
|
postgresql:
|
||||||
|
|
|
@ -39,7 +39,10 @@ service:
|
||||||
main:
|
main:
|
||||||
port: 5000
|
port: 5000
|
||||||
targetPort: 5000
|
targetPort: 5000
|
||||||
|
persistence:
|
||||||
|
config:
|
||||||
|
enabled: true
|
||||||
|
mountPath: "/config"
|
||||||
# Enabled postgres
|
# Enabled postgres
|
||||||
postgresql:
|
postgresql:
|
||||||
enabled: true
|
enabled: true
|
||||||
|
|
|
@ -39,6 +39,3 @@ persistence:
|
||||||
config:
|
config:
|
||||||
enabled: true
|
enabled: true
|
||||||
mountPath: "/config"
|
mountPath: "/config"
|
||||||
type: pvc
|
|
||||||
accessMode: ReadWriteOnce
|
|
||||||
size: "100Gi"
|
|
||||||
|
|
|
@ -34,6 +34,4 @@ service:
|
||||||
persistence:
|
persistence:
|
||||||
data:
|
data:
|
||||||
enabled: true
|
enabled: true
|
||||||
type: pvc
|
mountPath: "/data"
|
||||||
accessMode: ReadWriteOnce
|
|
||||||
size: "100Gi"
|
|
||||||
|
|
|
@ -37,6 +37,4 @@ service:
|
||||||
persistence:
|
persistence:
|
||||||
data:
|
data:
|
||||||
enabled: true
|
enabled: true
|
||||||
type: pvc
|
mountPath: "/data"
|
||||||
accessMode: ReadWriteOnce
|
|
||||||
size: "100Gi"
|
|
||||||
|
|
|
@ -164,25 +164,6 @@ questions:
|
||||||
|
|
||||||
# Include{serviceList}
|
# 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}
|
# Include{persistenceList}
|
||||||
|
|
||||||
- variable: ingress
|
- variable: ingress
|
||||||
|
|
|
@ -2,8 +2,6 @@ image:
|
||||||
repository: ghcr.io/nicholaswilde/fossil
|
repository: ghcr.io/nicholaswilde/fossil
|
||||||
pullPolicy: IfNotPresent
|
pullPolicy: IfNotPresent
|
||||||
tag: 2.15.1-ls4@sha256:a0a819ed2707e8e829dec371de0e166fbcf0499d3d12005880f603b2b95bf64d
|
tag: 2.15.1-ls4@sha256:a0a819ed2707e8e829dec371de0e166fbcf0499d3d12005880f603b2b95bf64d
|
||||||
|
|
||||||
|
|
||||||
securityContext:
|
securityContext:
|
||||||
readOnlyRootFilesystem: false
|
readOnlyRootFilesystem: false
|
||||||
runAsNonRoot: false
|
runAsNonRoot: false
|
||||||
|
|
|
@ -54,6 +54,3 @@ persistence:
|
||||||
config:
|
config:
|
||||||
enabled: true
|
enabled: true
|
||||||
mountPath: "/etc/raddb"
|
mountPath: "/etc/raddb"
|
||||||
type: pvc
|
|
||||||
accessMode: ReadWriteOnce
|
|
||||||
size: "100Gi"
|
|
||||||
|
|
|
@ -23,12 +23,7 @@ service:
|
||||||
env: {}
|
env: {}
|
||||||
# TZ: UTC
|
# TZ: UTC
|
||||||
# PUID: 1001
|
# PUID: 1001
|
||||||
|
|
||||||
|
|
||||||
persistence:
|
persistence:
|
||||||
config:
|
config:
|
||||||
enabled: true
|
enabled: true
|
||||||
mountPath: "/config"
|
mountPath: "/config"
|
||||||
type: pvc
|
|
||||||
accessMode: ReadWriteOnce
|
|
||||||
size: "100Gi"
|
|
||||||
|
|
|
@ -22,6 +22,3 @@ persistence:
|
||||||
data:
|
data:
|
||||||
enabled: true
|
enabled: true
|
||||||
mountPath: "/usr/data"
|
mountPath: "/usr/data"
|
||||||
type: pvc
|
|
||||||
accessMode: ReadWriteOnce
|
|
||||||
size: "100Gi"
|
|
||||||
|
|
|
@ -33,13 +33,13 @@ initContainers:
|
||||||
name: gitea-env
|
name: gitea-env
|
||||||
volumeMounts:
|
volumeMounts:
|
||||||
- name: init
|
- name: init
|
||||||
mountPath: /usr/sbin
|
mountPath: "/usr/sbin"
|
||||||
- name: temp
|
- name: temp
|
||||||
mountPath: /tmp
|
mountPath: "/tmp"
|
||||||
- name: config
|
- name: config
|
||||||
mountPath: /etc/gitea/conf
|
mountPath: "/etc/gitea/conf"
|
||||||
- name: data
|
- name: data
|
||||||
mountPath: /data
|
mountPath: "/data"
|
||||||
2-configure-gitea:
|
2-configure-gitea:
|
||||||
image: "{{ .Values.image.repository }}:{{ .Values.image.tag }}"
|
image: "{{ .Values.image.repository }}:{{ .Values.image.tag }}"
|
||||||
command: ["/usr/sbin/configure_gitea.sh"]
|
command: ["/usr/sbin/configure_gitea.sh"]
|
||||||
|
@ -48,19 +48,16 @@ initContainers:
|
||||||
name: gitea-env
|
name: gitea-env
|
||||||
volumeMounts:
|
volumeMounts:
|
||||||
- name: init
|
- name: init
|
||||||
mountPath: /usr/sbin
|
mountPath: "/usr/sbin"
|
||||||
- name: temp
|
- name: temp
|
||||||
mountPath: /tmp
|
mountPath: "/tmp"
|
||||||
- name: data
|
- name: data
|
||||||
mountPath: /data
|
mountPath: "/data"
|
||||||
|
|
||||||
persistence:
|
persistence:
|
||||||
data:
|
data:
|
||||||
enabled: true
|
enabled: true
|
||||||
mountPath: "/data"
|
mountPath: "/data"
|
||||||
type: pvc
|
|
||||||
accessMode: ReadWriteOnce
|
|
||||||
size: "100Gi"
|
|
||||||
temp:
|
temp:
|
||||||
enabled: true
|
enabled: true
|
||||||
mountPath: "/tmp"
|
mountPath: "/tmp"
|
||||||
|
|
|
@ -245,18 +245,6 @@ questions:
|
||||||
- value: "Memory"
|
- value: "Memory"
|
||||||
description: "Memory"
|
description: "Memory"
|
||||||
# Include{persistenceAdvanced}
|
# 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}
|
# Include{persistenceList}
|
||||||
|
|
||||||
- variable: ingress
|
- variable: ingress
|
||||||
|
|
|
@ -2,8 +2,6 @@ image:
|
||||||
repository: ghcr.io/nicholaswilde/golinks
|
repository: ghcr.io/nicholaswilde/golinks
|
||||||
pullPolicy: IfNotPresent
|
pullPolicy: IfNotPresent
|
||||||
tag: version-154c581@sha256:8e67b26324c5dc433210df8f2fb64317db3cbbe7db0b9e10c6e5bc3f3f7860e4
|
tag: version-154c581@sha256:8e67b26324c5dc433210df8f2fb64317db3cbbe7db0b9e10c6e5bc3f3f7860e4
|
||||||
|
|
||||||
|
|
||||||
env: {}
|
env: {}
|
||||||
# SUGGEST=https://suggestqueries.google.com/complete/search?client=firefox&q=%s `# optional` \
|
# SUGGEST=https://suggestqueries.google.com/complete/search?client=firefox&q=%s `# optional` \
|
||||||
# TITLE=Search `# optional` \
|
# TITLE=Search `# optional` \
|
||||||
|
@ -27,8 +25,6 @@ service:
|
||||||
persistence:
|
persistence:
|
||||||
data:
|
data:
|
||||||
enabled: true
|
enabled: true
|
||||||
mountPath: /data
|
mountPath: "/data"
|
||||||
accessMode: ReadWriteOnce
|
|
||||||
size: 1Gi
|
|
||||||
varrun:
|
varrun:
|
||||||
enabled: true
|
enabled: true
|
||||||
|
|
|
@ -43,6 +43,4 @@ service:
|
||||||
persistence:
|
persistence:
|
||||||
data:
|
data:
|
||||||
enabled: true
|
enabled: true
|
||||||
type: pvc
|
mountPath: "/data"
|
||||||
accessMode: ReadWriteOnce
|
|
||||||
size: "100Gi"
|
|
||||||
|
|
|
@ -42,9 +42,7 @@ service:
|
||||||
persistence:
|
persistence:
|
||||||
data:
|
data:
|
||||||
enabled: true
|
enabled: true
|
||||||
mountPath: /app/data
|
mountPath: "/app/data"
|
||||||
accessMode: ReadWriteOnce
|
|
||||||
size: 1Gi
|
|
||||||
|
|
||||||
# Enabled postgres
|
# Enabled postgres
|
||||||
postgresql:
|
postgresql:
|
||||||
|
|
|
@ -233,18 +233,6 @@ questions:
|
||||||
- value: "Memory"
|
- value: "Memory"
|
||||||
description: "Memory"
|
description: "Memory"
|
||||||
# Include{persistenceAdvanced}
|
# 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}
|
# Include{persistenceList}
|
||||||
|
|
||||||
- variable: ingress
|
- variable: ingress
|
||||||
|
|
|
@ -24,6 +24,6 @@ service:
|
||||||
persistence:
|
persistence:
|
||||||
config:
|
config:
|
||||||
enabled: true
|
enabled: true
|
||||||
mountPath: /config
|
mountPath: "/config"
|
||||||
varrun:
|
varrun:
|
||||||
enabled: true
|
enabled: true
|
||||||
|
|
|
@ -23,12 +23,7 @@ service:
|
||||||
env: {}
|
env: {}
|
||||||
# TZ:
|
# TZ:
|
||||||
# PUID:
|
# PUID:
|
||||||
|
|
||||||
|
|
||||||
persistence:
|
persistence:
|
||||||
config:
|
config:
|
||||||
enabled: true
|
enabled: true
|
||||||
mountPath: "/config"
|
mountPath: "/config"
|
||||||
type: pvc
|
|
||||||
accessMode: ReadWriteOnce
|
|
||||||
size: "100Gi"
|
|
||||||
|
|
|
@ -31,8 +31,6 @@ service:
|
||||||
envTpl:
|
envTpl:
|
||||||
# Permissions Settings
|
# Permissions Settings
|
||||||
USER_ID: "{{ .Values.env.PUID }}"
|
USER_ID: "{{ .Values.env.PUID }}"
|
||||||
|
|
||||||
|
|
||||||
env:
|
env:
|
||||||
# Permissions Settings
|
# Permissions Settings
|
||||||
PUID: 568
|
PUID: 568
|
||||||
|
@ -55,6 +53,3 @@ persistence:
|
||||||
config:
|
config:
|
||||||
enabled: true
|
enabled: true
|
||||||
mountPath: "/config"
|
mountPath: "/config"
|
||||||
type: pvc
|
|
||||||
accessMode: ReadWriteOnce
|
|
||||||
size: "100Gi"
|
|
||||||
|
|
|
@ -41,6 +41,4 @@ ingress:
|
||||||
persistence:
|
persistence:
|
||||||
config:
|
config:
|
||||||
enabled: true
|
enabled: true
|
||||||
type: pvc
|
mountPath: "/config"
|
||||||
accessMode: ReadWriteOnce
|
|
||||||
size: "100Gi"
|
|
||||||
|
|
|
@ -232,18 +232,6 @@ questions:
|
||||||
- value: "Memory"
|
- value: "Memory"
|
||||||
description: "Memory"
|
description: "Memory"
|
||||||
# Include{persistenceAdvanced}
|
# 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}
|
# Include{persistenceList}
|
||||||
|
|
||||||
- variable: ingress
|
- variable: ingress
|
||||||
|
|
|
@ -24,16 +24,6 @@ service:
|
||||||
persistence:
|
persistence:
|
||||||
config:
|
config:
|
||||||
enabled: true
|
enabled: true
|
||||||
mountPath: /config
|
mountPath: "/config"
|
||||||
downloads:
|
|
||||||
enabled: true
|
|
||||||
mountPath: /downloads
|
|
||||||
accessMode: ReadWriteOnce
|
|
||||||
size: 1Gi
|
|
||||||
music:
|
|
||||||
enabled: true
|
|
||||||
mountPath: /music
|
|
||||||
accessMode: ReadWriteOnce
|
|
||||||
size: 1Gi
|
|
||||||
varrun:
|
varrun:
|
||||||
enabled: true
|
enabled: true
|
||||||
|
|
|
@ -47,7 +47,4 @@ persistence:
|
||||||
# -- Volume used for configuration
|
# -- Volume used for configuration
|
||||||
config:
|
config:
|
||||||
enabled: true
|
enabled: true
|
||||||
type: pvc
|
mountPath: "/config"
|
||||||
accessMode: ReadWriteOnce
|
|
||||||
size: "100Gi"
|
|
||||||
mountpath: /config
|
|
||||||
|
|
|
@ -23,8 +23,6 @@ service:
|
||||||
env: {}
|
env: {}
|
||||||
# TZ:
|
# TZ:
|
||||||
# PUID:
|
# PUID:
|
||||||
|
|
||||||
|
|
||||||
probes:
|
probes:
|
||||||
startup:
|
startup:
|
||||||
enabled: true
|
enabled: true
|
||||||
|
@ -33,6 +31,3 @@ persistence:
|
||||||
config:
|
config:
|
||||||
enabled: true
|
enabled: true
|
||||||
mountPath: "/config"
|
mountPath: "/config"
|
||||||
type: pvc
|
|
||||||
accessMode: ReadWriteOnce
|
|
||||||
size: "100Gi"
|
|
||||||
|
|
|
@ -29,9 +29,9 @@ initContainers:
|
||||||
command: ["/config/init/init.sh"]
|
command: ["/config/init/init.sh"]
|
||||||
volumeMounts:
|
volumeMounts:
|
||||||
- name: init
|
- name: init
|
||||||
mountPath: /config/init
|
mountPath: "/config/init"
|
||||||
- name: config
|
- name: config
|
||||||
mountPath: /config
|
mountPath: "/config"
|
||||||
|
|
||||||
# # Enable devices to be discoverable
|
# # Enable devices to be discoverable
|
||||||
# hostNetwork: true
|
# hostNetwork: true
|
||||||
|
@ -57,9 +57,7 @@ persistence:
|
||||||
config:
|
config:
|
||||||
enabled: true
|
enabled: true
|
||||||
mountPath: "/config"
|
mountPath: "/config"
|
||||||
type: pvc
|
|
||||||
accessMode: ReadWriteOnce
|
|
||||||
size: "100Gi"
|
|
||||||
|
|
||||||
# -- Enable and configure postgresql database subchart under this key.
|
# -- 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)
|
# For more options see [postgresql chart documentation](https://github.com/bitnami/charts/tree/master/bitnami/postgresql)
|
||||||
|
@ -80,4 +78,4 @@ influxdb:
|
||||||
persistence:
|
persistence:
|
||||||
enabled: false
|
enabled: false
|
||||||
# storageClass: ""
|
# storageClass: ""
|
||||||
# size: 8Gi
|
#
|
||||||
|
|
|
@ -386,7 +386,7 @@ questions:
|
||||||
description: "Path inside the container the storage is mounted"
|
description: "Path inside the container the storage is mounted"
|
||||||
schema:
|
schema:
|
||||||
type: string
|
type: string
|
||||||
default: "/.hyperion"
|
default: "/root/.hyperion"
|
||||||
hidden: true
|
hidden: true
|
||||||
valid_chars: '^\/([a-zA-Z0-9._-]+(\s?[a-zA-Z0-9._-]+|\/?))+$'
|
valid_chars: '^\/([a-zA-Z0-9._-]+(\s?[a-zA-Z0-9._-]+|\/?))+$'
|
||||||
- variable: medium
|
- variable: medium
|
||||||
|
|
|
@ -64,7 +64,4 @@ service:
|
||||||
persistence:
|
persistence:
|
||||||
config:
|
config:
|
||||||
enabled: true
|
enabled: true
|
||||||
type: pvc
|
mountPath: "/root/.hyperion"
|
||||||
accessMode: ReadWriteOnce
|
|
||||||
size: "100Gi"
|
|
||||||
mountPath: /root/.hyperion
|
|
||||||
|
|
|
@ -16,7 +16,10 @@ service:
|
||||||
main:
|
main:
|
||||||
port: 3000
|
port: 3000
|
||||||
targetPort: 3000
|
targetPort: 3000
|
||||||
|
persistence:
|
||||||
|
config:
|
||||||
|
enabled: true
|
||||||
|
mountPath: "/config"
|
||||||
# -- Configures app settings. See [image docs](https://github.com/Hypfer/ICantBelieveItsNotValetudo) for more information.
|
# -- Configures app settings. See [image docs](https://github.com/Hypfer/ICantBelieveItsNotValetudo) for more information.
|
||||||
# @default -- See values.yaml
|
# @default -- See values.yaml
|
||||||
config:
|
config:
|
||||||
|
|
|
@ -30,12 +30,7 @@ probes:
|
||||||
env: {}
|
env: {}
|
||||||
# TZ: UTC
|
# TZ: UTC
|
||||||
# PUID: 1001
|
# PUID: 1001
|
||||||
|
|
||||||
|
|
||||||
persistence:
|
persistence:
|
||||||
config:
|
config:
|
||||||
enabled: true
|
enabled: true
|
||||||
mountPath: "/config"
|
mountPath: "/config"
|
||||||
type: pvc
|
|
||||||
accessMode: ReadWriteOnce
|
|
||||||
size: "100Gi"
|
|
||||||
|
|
|
@ -39,8 +39,6 @@ service:
|
||||||
envTpl:
|
envTpl:
|
||||||
# Permissions Settings
|
# Permissions Settings
|
||||||
USER_ID: "{{ .Values.env.PUID }}"
|
USER_ID: "{{ .Values.env.PUID }}"
|
||||||
|
|
||||||
|
|
||||||
env:
|
env:
|
||||||
# Permissions Settings
|
# Permissions Settings
|
||||||
PUID: 568
|
PUID: 568
|
||||||
|
@ -57,6 +55,3 @@ persistence:
|
||||||
config:
|
config:
|
||||||
enabled: true
|
enabled: true
|
||||||
mountPath: "/config"
|
mountPath: "/config"
|
||||||
type: pvc
|
|
||||||
accessMode: ReadWriteOnce
|
|
||||||
size: "100Gi"
|
|
||||||
|
|
|
@ -19,6 +19,3 @@ persistence:
|
||||||
config:
|
config:
|
||||||
enabled: true
|
enabled: true
|
||||||
mountPath: "/config"
|
mountPath: "/config"
|
||||||
type: pvc
|
|
||||||
accessMode: ReadWriteOnce
|
|
||||||
size: "100Gi"
|
|
||||||
|
|
|
@ -49,6 +49,10 @@ service:
|
||||||
port: 22300
|
port: 22300
|
||||||
targetPort: 22300
|
targetPort: 22300
|
||||||
|
|
||||||
|
persistence:
|
||||||
|
config:
|
||||||
|
enabled: true
|
||||||
|
mountPath: "/config"
|
||||||
# -- Enable and configure postgresql database subchart under this key.
|
# -- Enable and configure postgresql database subchart under this key.
|
||||||
# @default -- See values.yaml
|
# @default -- See values.yaml
|
||||||
postgresql:
|
postgresql:
|
||||||
|
|
|
@ -55,10 +55,10 @@ service:
|
||||||
persistence:
|
persistence:
|
||||||
data:
|
data:
|
||||||
enabled: true
|
enabled: true
|
||||||
mountPath: /var/www/app/data
|
mountPath: "/var/www/app/data"
|
||||||
ssl:
|
ssl:
|
||||||
enabled: true
|
enabled: true
|
||||||
mountPath: /etc/nginx/ssl
|
mountPath: "/etc/nginx/ssl"
|
||||||
|
|
||||||
# -- Enable and configure postgresql database subchart under this key.
|
# -- Enable and configure postgresql database subchart under this key.
|
||||||
# @default -- See values.yaml
|
# @default -- See values.yaml
|
||||||
|
|
|
@ -31,10 +31,7 @@ service:
|
||||||
persistence:
|
persistence:
|
||||||
config:
|
config:
|
||||||
enabled: true
|
enabled: true
|
||||||
type: pvc
|
mountPath: "/config"
|
||||||
accessMode: ReadWriteOnce
|
|
||||||
size: "100Gi"
|
|
||||||
mountPath: /config
|
|
||||||
data:
|
data:
|
||||||
enabled: false
|
enabled: true
|
||||||
mountPath: /data
|
mountPath: "/data"
|
||||||
|
|
|
@ -177,18 +177,6 @@ questions:
|
||||||
schema:
|
schema:
|
||||||
type: dict
|
type: dict
|
||||||
attrs:
|
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
|
- variable: config
|
||||||
label: "App Config Storage"
|
label: "App Config Storage"
|
||||||
description: "Stores the Application Configuration."
|
description: "Stores the Application Configuration."
|
||||||
|
|
|
@ -22,14 +22,9 @@ service:
|
||||||
env: {}
|
env: {}
|
||||||
# TZ: UTC
|
# TZ: UTC
|
||||||
# PUID: 1001
|
# PUID: 1001
|
||||||
|
|
||||||
|
|
||||||
persistence:
|
persistence:
|
||||||
config:
|
config:
|
||||||
enabled: true
|
enabled: true
|
||||||
mountPath: "/config"
|
mountPath: "/config"
|
||||||
type: pvc
|
|
||||||
accessMode: ReadWriteOnce
|
|
||||||
size: "100Gi"
|
|
||||||
varrun:
|
varrun:
|
||||||
enabled: true
|
enabled: true
|
||||||
|
|
|
@ -28,8 +28,6 @@ env:
|
||||||
TZ: UTC
|
TZ: UTC
|
||||||
# -- Specify the user ID the application will run as
|
# -- Specify the user ID the application will run as
|
||||||
PUID: 568
|
PUID: 568
|
||||||
|
|
||||||
|
|
||||||
# PASSWORD:
|
# PASSWORD:
|
||||||
# CUSTOM_RESULTS:
|
# CUSTOM_RESULTS:
|
||||||
# DB_TYPE:
|
# DB_TYPE:
|
||||||
|
@ -53,6 +51,4 @@ service:
|
||||||
persistence:
|
persistence:
|
||||||
config:
|
config:
|
||||||
enabled: true
|
enabled: true
|
||||||
type: pvc
|
mountPath: "/config"
|
||||||
accessMode: ReadWriteOnce
|
|
||||||
size: "100Gi"
|
|
||||||
|
|
|
@ -18,8 +18,6 @@ service:
|
||||||
env: {}
|
env: {}
|
||||||
# TZ: UTC
|
# TZ: UTC
|
||||||
# PUID: 1001
|
# PUID: 1001
|
||||||
|
|
||||||
|
|
||||||
probes:
|
probes:
|
||||||
liveness:
|
liveness:
|
||||||
enabled: true
|
enabled: true
|
||||||
|
@ -45,6 +43,3 @@ persistence:
|
||||||
config:
|
config:
|
||||||
enabled: true
|
enabled: true
|
||||||
mountPath: "/config"
|
mountPath: "/config"
|
||||||
type: pvc
|
|
||||||
accessMode: ReadWriteOnce
|
|
||||||
size: "100Gi"
|
|
||||||
|
|
|
@ -4,8 +4,6 @@ image:
|
||||||
repository: lmscommunity/logitechmediaserver
|
repository: lmscommunity/logitechmediaserver
|
||||||
pullPolicy: IfNotPresent
|
pullPolicy: IfNotPresent
|
||||||
tag: 8.3.0@sha256:2b3ff7a240749af53ef266f91c1003d862e7b6d1a1ab810d44d57be0369515aa
|
tag: 8.3.0@sha256:2b3ff7a240749af53ef266f91c1003d862e7b6d1a1ab810d44d57be0369515aa
|
||||||
|
|
||||||
|
|
||||||
env:
|
env:
|
||||||
# Permissions Settings
|
# Permissions Settings
|
||||||
PUID: 568
|
PUID: 568
|
||||||
|
@ -53,7 +51,4 @@ service:
|
||||||
persistence:
|
persistence:
|
||||||
config:
|
config:
|
||||||
enabled: true
|
enabled: true
|
||||||
mounthPath: "/config"
|
mountPath: "/config"
|
||||||
type: pvc
|
|
||||||
accessMode: ReadWriteOnce
|
|
||||||
size: "100Gi"
|
|
||||||
|
|
|
@ -23,12 +23,7 @@ service:
|
||||||
env: {}
|
env: {}
|
||||||
# PHP_TZ: UTC
|
# PHP_TZ: UTC
|
||||||
# PUID: 1001
|
# PUID: 1001
|
||||||
|
|
||||||
|
|
||||||
persistence:
|
persistence:
|
||||||
config:
|
config:
|
||||||
enabled: true
|
enabled: true
|
||||||
mountPath: "/config"
|
mountPath: "/config"
|
||||||
type: pvc
|
|
||||||
accessMode: ReadWriteOnce
|
|
||||||
size: "100Gi"
|
|
||||||
|
|
|
@ -49,7 +49,4 @@ ingress:
|
||||||
persistence:
|
persistence:
|
||||||
config:
|
config:
|
||||||
enabled: true
|
enabled: true
|
||||||
type: pvc
|
mountPath: "/app/data/"
|
||||||
accessMode: ReadWriteOnce
|
|
||||||
size: "100Gi"
|
|
||||||
mountPath: /app/data/
|
|
||||||
|
|
|
@ -233,18 +233,6 @@ questions:
|
||||||
- value: "Memory"
|
- value: "Memory"
|
||||||
description: "Memory"
|
description: "Memory"
|
||||||
# Include{persistenceAdvanced}
|
# 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}
|
# Include{persistenceList}
|
||||||
|
|
||||||
- variable: ingress
|
- variable: ingress
|
||||||
|
|
|
@ -2,8 +2,6 @@ image:
|
||||||
repository: ghcr.io/linuxserver/medusa
|
repository: ghcr.io/linuxserver/medusa
|
||||||
pullPolicy: IfNotPresent
|
pullPolicy: IfNotPresent
|
||||||
tag: 0.5.20@sha256:4b8296a04eff2320a466406d37a6115a0a26623d4163b6449c3d47fec6b95309
|
tag: 0.5.20@sha256:4b8296a04eff2320a466406d37a6115a0a26623d4163b6449c3d47fec6b95309
|
||||||
|
|
||||||
|
|
||||||
env:
|
env:
|
||||||
PUID: 568
|
PUID: 568
|
||||||
|
|
||||||
|
@ -24,16 +22,6 @@ service:
|
||||||
persistence:
|
persistence:
|
||||||
config:
|
config:
|
||||||
enabled: true
|
enabled: true
|
||||||
mountPath: /config
|
mountPath: "/config"
|
||||||
downloads:
|
|
||||||
enabled: true
|
|
||||||
mountPath: /downloads
|
|
||||||
accessMode: ReadWriteOnce
|
|
||||||
size: 1Gi
|
|
||||||
tv:
|
|
||||||
enabled: true
|
|
||||||
mountPath: /tv
|
|
||||||
accessMode: ReadWriteOnce
|
|
||||||
size: 1Gi
|
|
||||||
varrun:
|
varrun:
|
||||||
enabled: true
|
enabled: true
|
||||||
|
|
|
@ -34,6 +34,10 @@ service:
|
||||||
port: 8080
|
port: 8080
|
||||||
targetPort: 8080
|
targetPort: 8080
|
||||||
|
|
||||||
|
persistence:
|
||||||
|
config:
|
||||||
|
enabled: true
|
||||||
|
mountPath: "/config"
|
||||||
# -- Configures the probes for the main Pod.
|
# -- Configures the probes for the main Pod.
|
||||||
# @default -- See values.yaml
|
# @default -- See values.yaml
|
||||||
probes:
|
probes:
|
||||||
|
|
|
@ -38,5 +38,8 @@ service:
|
||||||
securityContext:
|
securityContext:
|
||||||
readOnlyRootFilesystem: false
|
readOnlyRootFilesystem: false
|
||||||
persistence:
|
persistence:
|
||||||
|
config:
|
||||||
|
enabled: true
|
||||||
|
mountPath: "/config"
|
||||||
varrun:
|
varrun:
|
||||||
enabled: true
|
enabled: true
|
||||||
|
|
|
@ -29,16 +29,10 @@ persistence:
|
||||||
# @default -- See values.yaml
|
# @default -- See values.yaml
|
||||||
data:
|
data:
|
||||||
enabled: true
|
enabled: true
|
||||||
type: pvc
|
mountPath: "/mosquitto/data"
|
||||||
accessMode: ReadWriteOnce
|
|
||||||
size: "100Gi"
|
|
||||||
mountPath: /mosquitto/data
|
|
||||||
# -- Configure a persistent volume to place *.conf mosquitto-config-files in.
|
# -- Configure a persistent volume to place *.conf mosquitto-config-files in.
|
||||||
# When enabled, this gets set as `include_dir` in the mosquitto config.
|
# When enabled, this gets set as `include_dir` in the mosquitto config.
|
||||||
# @default -- See values.yaml
|
# @default -- See values.yaml
|
||||||
configinc:
|
configinc:
|
||||||
enabled: true
|
enabled: true
|
||||||
type: pvc
|
mountPath: "/mosquitto/configinc"
|
||||||
accessMode: ReadWriteOnce
|
|
||||||
size: "100Gi"
|
|
||||||
mountPath: /mosquitto/configinc
|
|
||||||
|
|
|
@ -233,18 +233,6 @@ questions:
|
||||||
- value: "Memory"
|
- value: "Memory"
|
||||||
description: "Memory"
|
description: "Memory"
|
||||||
# Include{persistenceAdvanced}
|
# 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}
|
# Include{persistenceList}
|
||||||
|
|
||||||
- variable: ingress
|
- variable: ingress
|
||||||
|
|
|
@ -26,11 +26,6 @@ service:
|
||||||
persistence:
|
persistence:
|
||||||
config:
|
config:
|
||||||
enabled: true
|
enabled: true
|
||||||
mountPath: /config
|
mountPath: "/config"
|
||||||
music:
|
|
||||||
enabled: true
|
|
||||||
mountPath: /music
|
|
||||||
accessMode: ReadWriteOnce
|
|
||||||
size: 1Gi
|
|
||||||
varrun:
|
varrun:
|
||||||
enabled: true
|
enabled: true
|
||||||
|
|
|
@ -233,18 +233,6 @@ questions:
|
||||||
- value: "Memory"
|
- value: "Memory"
|
||||||
description: "Memory"
|
description: "Memory"
|
||||||
# Include{persistenceAdvanced}
|
# 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}
|
# Include{persistenceList}
|
||||||
|
|
||||||
- variable: ingress
|
- variable: ingress
|
||||||
|
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue