Commit new Chart releases for TrueCharts

Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
This commit is contained in:
TrueCharts-Bot 2024-03-01 09:26:30 +00:00
parent 36b6eac8cc
commit 6c419a0922
30 changed files with 33 additions and 34 deletions

View File

@ -21,6 +21,10 @@ title: Changelog
## [homepage-6.3.14](https://github.com/truecharts/charts/compare/homepage-6.3.13...homepage-6.3.14) (2024-02-03)
### Chore
@ -93,8 +97,3 @@ title: Changelog
- update container image common to v17.2.22[@e7c9056](https://github.com/e7c9056) by renovate ([#16986](https://github.com/truecharts/charts/issues/16986))
## [homepage-6.3.6](https://github.com/truecharts/charts/compare/homepage-6.3.5...homepage-6.3.6) (2024-01-02)
### Chore

View File

@ -4,13 +4,13 @@ annotations:
truecharts.org/SCALE-support: "true"
truecharts.org/category: dashboard
truecharts.org/max_helm_version: "3.14"
truecharts.org/min_helm_version: "3.12"
truecharts.org/min_helm_version: "3.11"
truecharts.org/train: stable
apiVersion: v2
appVersion: 0.8.8
dependencies:
- name: common
version: 18.0.2
version: 18.1.2
repository: oci://tccr.io/truecharts
condition: ""
alias: ""
@ -33,4 +33,4 @@ sources:
- https://github.com/truecharts/charts/tree/master/charts/stable/homepage
- https://ghcr.io/gethomepage/homepage
type: application
version: 7.1.1
version: 7.2.1

Binary file not shown.

View File

@ -33,7 +33,7 @@ workload:
echo "Config file copied, you can now edit it at /app/config/settings.yaml"
fi
if [ ! -f /app/config/widgets.yaml ]; then
echo "wdigets file not found, copying dummy..."
echo "widgets file not found, copying dummy..."
cp /dummy-config/widgets.yaml /app/config/widgets.yaml
echo "Config file copied, you can now edit it at /app/config/widgets.yaml"
fi
@ -70,8 +70,8 @@ persistence:
type: "configmap"
objectName: config
bookmarks-config:
# Only enable when not using homepageConfig
enabled: true
# Only enable when not using forceConfigFromValues
enabled: "{{ not .Values.forceConfigFromValues }}"
mountPath: /dummy-config/bookmarks.yaml
subPath: bookmarks.yaml
readOnly: true
@ -81,16 +81,16 @@ persistence:
main:
init-config: {}
force-bookmarks-config:
# Only enable when not using homepageConfig
enabled: false
# Only enable when using forceConfigFromValues
enabled: "{{ .Values.forceConfigFromValues }}"
mountPath: /app/config/bookmarks.yaml
subPath: bookmarks.yaml
readOnly: true
type: "configmap"
objectName: config
settings-config:
# Only enable when not using homepageConfig
enabled: true
# Only enable when not using forceConfigFromValues
enabled: "{{ not .Values.forceConfigFromValues }}"
mountPath: /dummy-config/settings.yaml
subPath: settings.yaml
readOnly: true
@ -100,16 +100,16 @@ persistence:
main:
init-config: {}
force-settings-config:
# Only enable when not using homepageConfig
enabled: false
# Only enable when using forceConfigFromValues
enabled: "{{ .Values.forceConfigFromValues }}"
mountPath: /app/config/settings.yaml
subPath: settings.yaml
readOnly: true
type: "configmap"
objectName: config
services-config:
# Only enable when not using homepageConfig
enabled: true
# Only enable when not using forceConfigFromValues
enabled: "{{ not .Values.forceConfigFromValues }}"
mountPath: /dummy-config/services.yaml
subPath: services.yaml
readOnly: true
@ -119,16 +119,16 @@ persistence:
main:
init-config: {}
force-services-config:
# Only enable when not using homepageConfig
enabled: false
mountPath: /app/services/services.yaml
# Only enable when using forceConfigFromValues
enabled: "{{ .Values.forceConfigFromValues }}"
mountPath: /app/config/services.yaml
subPath: services.yaml
readOnly: true
type: "configmap"
objectName: config
widgets-config:
# Only enable when not using homepageConfig
enabled: true
# Only enable when not using forceConfigFromValues
enabled: "{{ not .Values.forceConfigFromValues }}"
mountPath: /dummy-config/widgets.yaml
subPath: widgets.yaml
readOnly: true
@ -138,16 +138,16 @@ persistence:
main:
init-config: {}
force-widgets-config:
# Only enable when not using homepageConfig
enabled: false
# Only enable when using forceConfigFromValues
enabled: "{{ .Values.forceConfigFromValues }}"
mountPath: /app/config/widgets.yaml
subPath: widgets.yaml
readOnly: true
type: "configmap"
objectName: config
custom-css-config:
# Only enable when not using homepageConfig
enabled: true
# Only enable when not using forceConfigFromValues
enabled: "{{ not .Values.forceConfigFromValues }}"
mountPath: /dummy-config/custom.css
subPath: custom.css
readOnly: true
@ -157,16 +157,16 @@ persistence:
main:
init-config: {}
force-custom-css-config:
# Only enable when not using homepageConfig
enabled: false
# Only enable when using forceConfigFromValues
enabled: "{{ .Values.forceConfigFromValues }}"
mountPath: /app/config/custom.css
subPath: custom.css
readOnly: true
type: "configmap"
objectName: config
custom-js-config:
# Only enable when not using homepageConfig
enabled: true
# Only enable when not using forceConfigFromValues
enabled: "{{ not .Values.forceConfigFromValues }}"
mountPath: /dummy-config/custom.js
subPath: custom.js
readOnly: true
@ -176,8 +176,8 @@ persistence:
main:
init-config: {}
force-custom-js-config:
# Only enable when not using homepageConfig
enabled: false
# Only enable when using forceConfigFromValues
enabled: "{{ .Values.forceConfigFromValues }}"
mountPath: /app/config/custom.js
subPath: custom.js
readOnly: true