diff --git a/config/dashy/conf.yml b/config/dashy/conf.yml index 05967f0..327850b 100644 --- a/config/dashy/conf.yml +++ b/config/dashy/conf.yml @@ -163,25 +163,33 @@ sections: - name: Services icon: mdi-apps items: - - title: Jellyfin - icon: si-jellyfin - url: http://nik4nao.home.arpa/anime/ - id: 0_836_jellyfin - title: qBittorrent icon: si-qbittorrent - url: http://nik4nao.home.arpa/qbt/ + url: https://qbittorrent.home.arpa id: 1_836_qbittorrent - title: JDownloader icon: mdi-cloud-download-outline - url: http://nik4nao.home.arpa/jd2/ + url: https://jdownloader.home.arpa id: 2_836_jdownloader + - title: Jellyfin + icon: si-jellyfin + url: https://jellyfin.home.arpa + id: 0_836_jellyfin - title: Pi-hole icon: si-pihole - url: http://nik4nao.home.arpa/admin/ + url: https://pihole.home.arpa/admin id: 3_836_pihole - title: Watch Party icon: mdi-play-circle-outline - url: http://nik4nao.home.arpa/watch-party/ + url: https://watch-party.nik4nao.com id: 4_836_watchparty + - title: Gitea + icon: si-gitea + url: https://gitea.home.arpa + id: 5_836_gitea + - title: old.qBittorrent + icon: si-qbittorrent + url: http://nik4nao.home.arpa/qbt/ + id: 1_836_qbittorrent displayData: cutToHeight: true diff --git a/manifests/apply-dashy-config.sh b/manifests/apply-dashy-config.sh new file mode 100644 index 0000000..c049966 --- /dev/null +++ b/manifests/apply-dashy-config.sh @@ -0,0 +1,12 @@ +#!/bin/bash +# Usage: bash manifests/apply-dashy-config.sh +# Updates Dashy config from config/dashy/conf.yml +set -e + +kubectl create configmap dashy-config \ + --from-file=conf.yml=config/dashy/conf.yml \ + --namespace dashy \ + --dry-run=client -o yaml | kubectl apply -f - + +kubectl rollout restart deployment/dashy -n dashy +echo "Dashy config updated" \ No newline at end of file