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