From 40a0c0729fe0d38234b83cce8b6a459c94b51237 Mon Sep 17 00:00:00 2001 From: ange Date: Thu, 16 May 2024 00:25:29 +0200 Subject: [PATCH] fix: add services.yaml to prevent default --- config/services.yaml | 2 ++ config/widgets.yaml | 1 - manifests/bin/deploy.sh | 1 + manifests/common/app.yaml | 3 +++ 4 files changed, 6 insertions(+), 1 deletion(-) create mode 100644 config/services.yaml diff --git a/config/services.yaml b/config/services.yaml new file mode 100644 index 0000000..60a1c4c --- /dev/null +++ b/config/services.yaml @@ -0,0 +1,2 @@ +--- +# https://gethomepage.dev/latest/configs/services/ diff --git a/config/widgets.yaml b/config/widgets.yaml index eed764e..8ef8da5 100644 --- a/config/widgets.yaml +++ b/config/widgets.yaml @@ -1,5 +1,4 @@ --- -# For configuration options and examples, please see: # https://gethomepage.dev/latest/configs/service-widgets - search: diff --git a/manifests/bin/deploy.sh b/manifests/bin/deploy.sh index 838a6a9..6e2f5cd 100755 --- a/manifests/bin/deploy.sh +++ b/manifests/bin/deploy.sh @@ -35,6 +35,7 @@ kcreatecm homepage \ --from-file=custom.css=<(envsubst "$(env | xargs printf '$%s ')" < config/custom.css) \ --from-file=custom.js=<(envsubst "$(env | xargs printf '$%s ')" < config/custom.js) \ --from-file=kubernetes.yaml=<(envsubst "$(env | xargs printf '$%s ')" < config/kubernetes.yaml) \ + --from-file=services.yaml=<(envsubst "$(env | xargs printf '$%s ')" < config/services.yaml) \ --from-file=settings.yaml=<(envsubst "$(env | xargs printf '$%s ')" < config/settings.yaml) \ --from-file=widgets.yaml=<(envsubst "$(env | xargs printf '$%s ')" < config/widgets.yaml) diff --git a/manifests/common/app.yaml b/manifests/common/app.yaml index 76ff628..ae858c7 100644 --- a/manifests/common/app.yaml +++ b/manifests/common/app.yaml @@ -78,6 +78,9 @@ spec: - name: config mountPath: /app/config/kubernetes.yaml subPath: kubernetes.yaml + - name: config + mountPath: /app/config/services.yaml + subPath: services.yaml - name: config mountPath: /app/config/settings.yaml subPath: settings.yaml