Commit new Chart releases for TrueCharts

Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
This commit is contained in:
TrueCharts-Bot
2023-12-26 18:45:37 +00:00
parent 0357dcea92
commit 724d30f7ce
12 changed files with 23 additions and 36 deletions

View File

@@ -1,17 +0,0 @@
## [homepage-6.2.0](https://github.com/truecharts/charts/compare/homepage-6.1.1...homepage-6.2.0) (2023-12-26)
### Docs
- Redo Integration section ([#16550](https://github.com/truecharts/charts/issues/16550))
### Feat
- add tc defaults ([#16553](https://github.com/truecharts/charts/issues/16553))
### Fix
- docs hp-integration grammar ([#16549](https://github.com/truecharts/charts/issues/16549))

View File

@@ -4,6 +4,11 @@
## [homepage-6.2.1](https://github.com/truecharts/charts/compare/homepage-6.2.0...homepage-6.2.1) (2023-12-26)
## [homepage-6.2.0](https://github.com/truecharts/charts/compare/homepage-6.1.1...homepage-6.2.0) (2023-12-26)
### Docs
@@ -92,8 +97,3 @@
## [homepage-5.0.7](https://github.com/truecharts/charts/compare/homepage-5.0.6...homepage-5.0.7) (2023-12-23)
### Chore

View File

@@ -1,7 +1,7 @@
kubeVersion: ">=1.24.0-0"
apiVersion: v2
name: homepage
version: 6.2.0
version: 6.2.1
appVersion: 0.8.3
description: A highly customizable homepage
home: https://truecharts.org/charts/stable/homepage

View File

@@ -0,0 +1,4 @@
## [homepage-6.2.1](https://github.com/truecharts/charts/compare/homepage-6.2.0...homepage-6.2.1) (2023-12-26)

View File

@@ -9,7 +9,7 @@ workload:
automountServiceAccountToken: true
initContainers:
init-config:
enabled: "{{ not .Values.forceConfigFromValues }}"
enabled: "{{ if not .Values.forceConfigFromValues}}true{{ else }}false{{ end }}"
type: init
imageSelector: alpineImage
command:
@@ -19,32 +19,32 @@ workload:
mkdir -p /app/config
if [ ! -f /app/config/bookmarks.yaml ]; then
echo "Bookmarks file not found, copying dummy..."
cp /dummy-config/bookmarks.yaml.dummy /app/config/bookmarks.yaml
cp /dummy-config/bookmarks.yaml /app/config/bookmarks.yaml
echo "Config file copied, you can now edit it at /app/config/bookmarks.yaml"
fi
if [ ! -f /app/config/services.yaml ]; then
echo "services file not found, copying dummy..."
cp /dummy-config/services.yaml.dummy /app/config/services.yaml
cp /dummy-config/services.yaml /app/config/services.yaml
echo "Config file copied, you can now edit it at /app/config/services.yaml"
fi
if [ ! -f /app/config/settings.yaml ]; then
echo "settings file not found, copying dummy..."
cp /dummy-config/settings.yaml.dummy /app/config/settings.yaml
cp /dummy-config/settings.yaml /app/config/settings.yaml
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..."
cp /dummy-config/widgets.yaml.dummy /app/config/widgets.yaml
cp /dummy-config/widgets.yaml /app/config/widgets.yaml
echo "Config file copied, you can now edit it at /app/config/widgets.yaml"
fi
if [ ! -f /app/config/custom.css ]; then
echo "custom.css file not found, copying dummy..."
cp /dummy-config/custom.css.dummy /app/config/custom.css
cp /dummy-config/custom.css /app/config/custom.css
echo "Config file copied, you can now edit it at /app/config/custom.css"
fi
if [ ! -f /app/config/custom.js ]; then
echo "custom.js file not found, copying dummy..."
cp /dummy-config/custom.js.dummy /app/config/custom.js
cp /dummy-config/custom.js /app/config/custom.js
echo "Config file copied, you can now edit it at /app/config/custom.js"
fi
service:
@@ -71,7 +71,7 @@ persistence:
objectName: config
bookmarks-config:
# Only enable when not using homepageConfig
enabled: "{{ not .Values.forceConfigFromValues }}"
enabled: "{{ if not .Values.forceConfigFromValues}}true{{ else }}false{{ end }}"
mountPath: /dummy-config/bookmarks.yaml
subPath: bookmarks.yaml
readOnly: true
@@ -90,7 +90,7 @@ persistence:
objectName: config
settings-config:
# Only enable when not using homepageConfig
enabled: "{{ not .Values.forceConfigFromValues }}"
enabled: "{{ if not .Values.forceConfigFromValues}}true{{ else }}false{{ end }}"
mountPath: /dummy-config/settings.yaml
subPath: settings.yaml
readOnly: true
@@ -109,7 +109,7 @@ persistence:
objectName: config
services-config:
# Only enable when not using homepageConfig
enabled: "{{ not .Values.forceConfigFromValues }}"
enabled: "{{ if not .Values.forceConfigFromValues}}true{{ else }}false{{ end }}"
mountPath: /dummy-config/services.yaml
subPath: services.yaml
readOnly: true
@@ -128,7 +128,7 @@ persistence:
objectName: config
widgets-config:
# Only enable when not using homepageConfig
enabled: "{{ not .Values.forceConfigFromValues }}"
enabled: "{{ if not .Values.forceConfigFromValues}}true{{ else }}false{{ end }}"
mountPath: /dummy-config/widgets.yaml
subPath: widgets.yaml
readOnly: true
@@ -147,7 +147,7 @@ persistence:
objectName: config
custom-css-config:
# Only enable when not using homepageConfig
enabled: "{{ not .Values.forceConfigFromValues }}"
enabled: "{{ if not .Values.forceConfigFromValues}}true{{ else }}false{{ end }}"
mountPath: /dummy-config/custom.css
subPath: custom.css
readOnly: true
@@ -166,7 +166,7 @@ persistence:
objectName: config
custom-js-config:
# Only enable when not using homepageConfig
enabled: "{{ not .Values.forceConfigFromValues }}"
enabled: "{{ if not .Values.forceConfigFromValues}}true{{ else }}false{{ end }}"
mountPath: /dummy-config/custom.js
subPath: custom.js
readOnly: true