├── .envrc ├── .gitattributes ├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE │ ├── bug_report.yaml │ ├── feature_request.yaml │ └── help_request.yaml ├── renovate.json └── workflows │ ├── release.yaml │ └── renovate.yaml ├── .gitignore ├── .pre-commit-config.yaml ├── LICENSE ├── README.md ├── charts ├── adguard-home │ ├── .helmignore │ ├── Chart.lock │ ├── Chart.yaml │ ├── README.md │ ├── README_CONFIG.md.gotmpl │ ├── icon.svg │ ├── templates │ │ ├── NOTES.txt │ │ └── common.yaml │ └── values.yaml ├── ascii-movie │ ├── .helmignore │ ├── Chart.lock │ ├── Chart.yaml │ ├── README.md │ ├── README_CONFIG.md.gotmpl │ ├── templates │ │ ├── NOTES.txt │ │ └── common.yaml │ └── values.yaml ├── bookstack │ ├── .helmignore │ ├── Chart.lock │ ├── Chart.yaml │ ├── README.md │ ├── README_CONFIG.md.gotmpl │ ├── icon.svg │ ├── templates │ │ ├── NOTES.txt │ │ ├── common.yaml │ │ └── cronjob.yaml │ └── values.yaml ├── borgmatic │ ├── .helmignore │ ├── Chart.lock │ ├── Chart.yaml │ ├── README.md │ ├── README_CONFIG.md.gotmpl │ ├── templates │ │ ├── NOTES.txt │ │ └── common.yaml │ └── values.yaml ├── castsponsorskip │ ├── .helmignore │ ├── Chart.lock │ ├── Chart.yaml │ ├── README.md │ ├── README_CONFIG.md.gotmpl │ ├── templates │ │ └── common.yaml │ └── values.yaml ├── changedetection-io │ ├── .helmignore │ ├── Chart.lock │ ├── Chart.yaml │ ├── README.md │ ├── README_CONFIG.md.gotmpl │ ├── icon.png │ ├── templates │ │ ├── NOTES.txt │ │ └── common.yaml │ └── values.yaml ├── domain-watch │ ├── .helmignore │ ├── Chart.lock │ ├── Chart.yaml │ ├── README.md │ ├── README_CONFIG.md.gotmpl │ ├── templates │ │ └── common.yaml │ └── values.yaml ├── esphome │ ├── .helmignore │ ├── Chart.lock │ ├── Chart.yaml │ ├── README.md │ ├── README_CONFIG.md.gotmpl │ ├── templates │ │ ├── NOTES.txt │ │ └── common.yaml │ └── values.yaml ├── flame │ ├── .helmignore │ ├── Chart.lock │ ├── Chart.yaml │ ├── README.md │ ├── README_CONFIG.md.gotmpl │ ├── icon.svg │ ├── templates │ │ ├── NOTES.txt │ │ ├── clusterrole.yaml │ │ ├── clusterrolebinding.yaml │ │ └── common.yaml │ └── values.yaml ├── generic-device-plugin │ ├── .helmignore │ ├── Chart.lock │ ├── Chart.yaml │ ├── README.md │ ├── README_CONFIG.md.gotmpl │ ├── templates │ │ ├── NOTES.txt │ │ └── common.yaml │ └── values.yaml ├── gotify │ ├── .helmignore │ ├── Chart.lock │ ├── Chart.yaml │ ├── README.md │ ├── README_CONFIG.md.gotmpl │ ├── icon.svg │ ├── templates │ │ ├── NOTES.txt │ │ └── common.yaml │ └── values.yaml ├── hammond │ ├── .helmignore │ ├── Chart.lock │ ├── Chart.yaml │ ├── README.md │ ├── README_CONFIG.md.gotmpl │ ├── templates │ │ ├── NOTES.txt │ │ └── common.yaml │ └── values.yaml ├── headscale │ ├── .helmignore │ ├── Chart.lock │ ├── Chart.yaml │ ├── README.md │ ├── README_CONFIG.md.gotmpl │ ├── templates │ │ ├── NOTES.txt │ │ └── common.yaml │ └── values.yaml ├── healthchecks │ ├── .helmignore │ ├── Chart.lock │ ├── Chart.yaml │ ├── README.md │ ├── README_CONFIG.md.gotmpl │ ├── icon.svg │ ├── templates │ │ ├── NOTES.txt │ │ └── common.yaml │ └── values.yaml ├── home-assistant │ ├── .helmignore │ ├── Chart.lock │ ├── Chart.yaml │ ├── README.md │ ├── README_CONFIG.md.gotmpl │ ├── icon.svg │ ├── templates │ │ ├── NOTES.txt │ │ └── common.yaml │ └── values.yaml ├── homer │ ├── .helmignore │ ├── Chart.lock │ ├── Chart.yaml │ ├── README.md │ ├── README_CONFIG.md.gotmpl │ ├── templates │ │ └── common.yaml │ └── values.yaml ├── keydb │ ├── .helmignore │ ├── Chart.lock │ ├── Chart.yaml │ ├── README.md │ ├── README_CONFIG.md.gotmpl │ ├── icon.svg │ ├── templates │ │ └── common.yaml │ └── values.yaml ├── limo │ ├── .helmignore │ ├── Chart.lock │ ├── Chart.yaml │ ├── README.md │ ├── README_CONFIG.md.gotmpl │ ├── templates │ │ ├── NOTES.txt │ │ └── common.yaml │ └── values.yaml ├── matrimony │ ├── .helmignore │ ├── Chart.lock │ ├── Chart.yaml │ ├── README.md │ ├── README_CONFIG.md.gotmpl │ ├── templates │ │ ├── NOTES.txt │ │ └── common.yaml │ └── values.yaml ├── memos │ ├── .helmignore │ ├── Chart.lock │ ├── Chart.yaml │ ├── README.md │ ├── README_CONFIG.md.gotmpl │ ├── icon.png │ ├── templates │ │ ├── NOTES.txt │ │ └── common.yaml │ └── values.yaml ├── miniflux │ ├── .helmignore │ ├── Chart.lock │ ├── Chart.yaml │ ├── README.md │ ├── README_CONFIG.md.gotmpl │ ├── templates │ │ ├── NOTES.txt │ │ ├── _metrics.yaml │ │ └── common.yaml │ └── values.yaml ├── mnemonic-ninja │ ├── .helmignore │ ├── Chart.lock │ ├── Chart.yaml │ ├── README.md │ ├── README_CONFIG.md.gotmpl │ ├── templates │ │ ├── NOTES.txt │ │ └── common.yaml │ └── values.yaml ├── monica │ ├── .helmignore │ ├── Chart.lock │ ├── Chart.yaml │ ├── README.md │ ├── README_CONFIG.md.gotmpl │ ├── templates │ │ ├── NOTES.txt │ │ └── common.yaml │ └── values.yaml ├── nightscout │ ├── .helmignore │ ├── Chart.lock │ ├── Chart.yaml │ ├── README.md │ ├── README_CONFIG.md.gotmpl │ ├── icon.svg │ ├── templates │ │ ├── NOTES.txt │ │ └── common.yaml │ └── values.yaml ├── obico │ ├── .helmignore │ ├── Chart.lock │ ├── Chart.yaml │ ├── README.md │ ├── README_CONFIG.md.gotmpl │ ├── icon.svg │ ├── templates │ │ ├── NOTES.txt │ │ ├── ml-api.yaml │ │ └── server.yaml │ └── values.yaml ├── paperless-ngx │ ├── .helmignore │ ├── Chart.lock │ ├── Chart.yaml │ ├── README.md │ ├── README_CONFIG.md.gotmpl │ ├── templates │ │ ├── NOTES.txt │ │ └── common.yaml │ └── values.yaml ├── pictshare │ ├── .helmignore │ ├── Chart.lock │ ├── Chart.yaml │ ├── README.md │ ├── README_CONFIG.md.gotmpl │ ├── icon.svg │ ├── templates │ │ ├── NOTES.txt │ │ └── common.yaml │ └── values.yaml ├── plex │ ├── .helmignore │ ├── Chart.lock │ ├── Chart.yaml │ ├── README.md │ ├── README_CONFIG.md.gotmpl │ ├── icon.svg │ ├── templates │ │ ├── NOTES.txt │ │ └── common.yaml │ └── values.yaml ├── podgrab │ ├── .helmignore │ ├── Chart.lock │ ├── Chart.yaml │ ├── README.md │ ├── README_CONFIG.md.gotmpl │ ├── templates │ │ ├── NOTES.txt │ │ └── common.yaml │ └── values.yaml ├── qbittorrent │ ├── .helmignore │ ├── Chart.lock │ ├── Chart.yaml │ ├── README.md │ ├── README_CONFIG.md.gotmpl │ ├── templates │ │ ├── NOTES.txt │ │ └── common.yaml │ └── values.yaml ├── relax-sounds │ ├── .helmignore │ ├── Chart.lock │ ├── Chart.yaml │ ├── README.md │ ├── README_CONFIG.md.gotmpl │ ├── templates │ │ └── common.yaml │ └── values.yaml ├── rss-bridge │ ├── .helmignore │ ├── Chart.lock │ ├── Chart.yaml │ ├── README.md │ ├── README_CONFIG.md.gotmpl │ ├── templates │ │ ├── NOTES.txt │ │ └── common.yaml │ └── values.yaml ├── rsshub │ ├── .helmignore │ ├── Chart.lock │ ├── Chart.yaml │ ├── README.md │ ├── README_CONFIG.md.gotmpl │ ├── templates │ │ ├── NOTES.txt │ │ └── common.yaml │ └── values.yaml ├── scanservjs │ ├── .helmignore │ ├── Chart.lock │ ├── Chart.yaml │ ├── README.md │ ├── README_CONFIG.md.gotmpl │ ├── icon.svg │ ├── templates │ │ ├── NOTES.txt │ │ └── common.yaml │ └── values.yaml ├── smarter-device-manager │ ├── .helmignore │ ├── Chart.lock │ ├── Chart.yaml │ ├── README.md │ ├── README_CONFIG.md.gotmpl │ ├── templates │ │ └── common.yaml │ └── values.yaml ├── tandoor │ ├── .helmignore │ ├── Chart.lock │ ├── Chart.yaml │ ├── README.md │ ├── README_CONFIG.md.gotmpl │ ├── templates │ │ ├── NOTES.txt │ │ └── common.yaml │ └── values.yaml ├── transsmute │ ├── .helmignore │ ├── Chart.lock │ ├── Chart.yaml │ ├── README.md │ ├── README_CONFIG.md.gotmpl │ ├── templates │ │ └── common.yaml │ └── values.yaml └── vaultwarden │ ├── .helmignore │ ├── Chart.lock │ ├── Chart.yaml │ ├── README.md │ ├── README_CONFIG.md.gotmpl │ ├── templates │ ├── NOTES.txt │ └── common.yaml │ └── values.yaml ├── docs ├── .gitignore ├── docs │ ├── artifacthub-repo.yml │ ├── assets │ │ └── icons │ │ │ ├── android-chrome-192x192.png │ │ │ ├── android-chrome-512x512.png │ │ │ ├── apple-touch-icon.png │ │ │ ├── favicon-16x16.png │ │ │ ├── favicon-32x32.png │ │ │ ├── favicon.ico │ │ │ ├── icon.webp │ │ │ ├── mstile-150x150.png │ │ │ └── safari-pinned-tab.svg │ ├── browserconfig.xml │ ├── robots.txt │ ├── site.webmanifest │ └── stylesheets │ │ └── extra.css ├── mkdocs.yml ├── overrides │ ├── main.html │ └── partials │ │ └── actions.html ├── plugins │ ├── add_files.py │ └── filter_readmes.py └── requirements.txt └── hack ├── gen-chart-summary.sh ├── gen-helm-docs.sh ├── templates ├── README.md.gotmpl ├── README_CONFIG.md.gotmpl └── icon.gotmpl ├── update-changelog.sh └── update-version.sh /.envrc: -------------------------------------------------------------------------------- 1 | layout python3 2 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @gabe565 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/.github/ISSUE_TEMPLATE/bug_report.yaml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/.github/ISSUE_TEMPLATE/feature_request.yaml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/help_request.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/.github/ISSUE_TEMPLATE/help_request.yaml -------------------------------------------------------------------------------- /.github/renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/.github/renovate.json -------------------------------------------------------------------------------- /.github/workflows/release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/.github/workflows/release.yaml -------------------------------------------------------------------------------- /.github/workflows/renovate.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/.github/workflows/renovate.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/README.md -------------------------------------------------------------------------------- /charts/adguard-home/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/adguard-home/.helmignore -------------------------------------------------------------------------------- /charts/adguard-home/Chart.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/adguard-home/Chart.lock -------------------------------------------------------------------------------- /charts/adguard-home/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/adguard-home/Chart.yaml -------------------------------------------------------------------------------- /charts/adguard-home/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/adguard-home/README.md -------------------------------------------------------------------------------- /charts/adguard-home/README_CONFIG.md.gotmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/adguard-home/README_CONFIG.md.gotmpl -------------------------------------------------------------------------------- /charts/adguard-home/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/adguard-home/icon.svg -------------------------------------------------------------------------------- /charts/adguard-home/templates/NOTES.txt: -------------------------------------------------------------------------------- 1 | {{- include "bjw-s.common.lib.chart.notes" . -}} 2 | -------------------------------------------------------------------------------- /charts/adguard-home/templates/common.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/adguard-home/templates/common.yaml -------------------------------------------------------------------------------- /charts/adguard-home/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/adguard-home/values.yaml -------------------------------------------------------------------------------- /charts/ascii-movie/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/ascii-movie/.helmignore -------------------------------------------------------------------------------- /charts/ascii-movie/Chart.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/ascii-movie/Chart.lock -------------------------------------------------------------------------------- /charts/ascii-movie/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/ascii-movie/Chart.yaml -------------------------------------------------------------------------------- /charts/ascii-movie/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/ascii-movie/README.md -------------------------------------------------------------------------------- /charts/ascii-movie/README_CONFIG.md.gotmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/ascii-movie/README_CONFIG.md.gotmpl -------------------------------------------------------------------------------- /charts/ascii-movie/templates/NOTES.txt: -------------------------------------------------------------------------------- 1 | {{- include "bjw-s.common.lib.chart.notes" . -}} 2 | -------------------------------------------------------------------------------- /charts/ascii-movie/templates/common.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/ascii-movie/templates/common.yaml -------------------------------------------------------------------------------- /charts/ascii-movie/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/ascii-movie/values.yaml -------------------------------------------------------------------------------- /charts/bookstack/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/bookstack/.helmignore -------------------------------------------------------------------------------- /charts/bookstack/Chart.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/bookstack/Chart.lock -------------------------------------------------------------------------------- /charts/bookstack/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/bookstack/Chart.yaml -------------------------------------------------------------------------------- /charts/bookstack/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/bookstack/README.md -------------------------------------------------------------------------------- /charts/bookstack/README_CONFIG.md.gotmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/bookstack/README_CONFIG.md.gotmpl -------------------------------------------------------------------------------- /charts/bookstack/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/bookstack/icon.svg -------------------------------------------------------------------------------- /charts/bookstack/templates/NOTES.txt: -------------------------------------------------------------------------------- 1 | {{- include "bjw-s.common.lib.chart.notes" . -}} 2 | -------------------------------------------------------------------------------- /charts/bookstack/templates/common.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/bookstack/templates/common.yaml -------------------------------------------------------------------------------- /charts/bookstack/templates/cronjob.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/bookstack/templates/cronjob.yaml -------------------------------------------------------------------------------- /charts/bookstack/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/bookstack/values.yaml -------------------------------------------------------------------------------- /charts/borgmatic/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/borgmatic/.helmignore -------------------------------------------------------------------------------- /charts/borgmatic/Chart.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/borgmatic/Chart.lock -------------------------------------------------------------------------------- /charts/borgmatic/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/borgmatic/Chart.yaml -------------------------------------------------------------------------------- /charts/borgmatic/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/borgmatic/README.md -------------------------------------------------------------------------------- /charts/borgmatic/README_CONFIG.md.gotmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/borgmatic/README_CONFIG.md.gotmpl -------------------------------------------------------------------------------- /charts/borgmatic/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/borgmatic/templates/NOTES.txt -------------------------------------------------------------------------------- /charts/borgmatic/templates/common.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/borgmatic/templates/common.yaml -------------------------------------------------------------------------------- /charts/borgmatic/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/borgmatic/values.yaml -------------------------------------------------------------------------------- /charts/castsponsorskip/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/castsponsorskip/.helmignore -------------------------------------------------------------------------------- /charts/castsponsorskip/Chart.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/castsponsorskip/Chart.lock -------------------------------------------------------------------------------- /charts/castsponsorskip/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/castsponsorskip/Chart.yaml -------------------------------------------------------------------------------- /charts/castsponsorskip/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/castsponsorskip/README.md -------------------------------------------------------------------------------- /charts/castsponsorskip/README_CONFIG.md.gotmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/castsponsorskip/README_CONFIG.md.gotmpl -------------------------------------------------------------------------------- /charts/castsponsorskip/templates/common.yaml: -------------------------------------------------------------------------------- 1 | {{ include "bjw-s.common.loader.all" . }} 2 | -------------------------------------------------------------------------------- /charts/castsponsorskip/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/castsponsorskip/values.yaml -------------------------------------------------------------------------------- /charts/changedetection-io/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/changedetection-io/.helmignore -------------------------------------------------------------------------------- /charts/changedetection-io/Chart.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/changedetection-io/Chart.lock -------------------------------------------------------------------------------- /charts/changedetection-io/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/changedetection-io/Chart.yaml -------------------------------------------------------------------------------- /charts/changedetection-io/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/changedetection-io/README.md -------------------------------------------------------------------------------- /charts/changedetection-io/README_CONFIG.md.gotmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/changedetection-io/README_CONFIG.md.gotmpl -------------------------------------------------------------------------------- /charts/changedetection-io/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/changedetection-io/icon.png -------------------------------------------------------------------------------- /charts/changedetection-io/templates/NOTES.txt: -------------------------------------------------------------------------------- 1 | {{- include "bjw-s.common.lib.chart.notes" . -}} 2 | -------------------------------------------------------------------------------- /charts/changedetection-io/templates/common.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/changedetection-io/templates/common.yaml -------------------------------------------------------------------------------- /charts/changedetection-io/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/changedetection-io/values.yaml -------------------------------------------------------------------------------- /charts/domain-watch/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/domain-watch/.helmignore -------------------------------------------------------------------------------- /charts/domain-watch/Chart.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/domain-watch/Chart.lock -------------------------------------------------------------------------------- /charts/domain-watch/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/domain-watch/Chart.yaml -------------------------------------------------------------------------------- /charts/domain-watch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/domain-watch/README.md -------------------------------------------------------------------------------- /charts/domain-watch/README_CONFIG.md.gotmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/domain-watch/README_CONFIG.md.gotmpl -------------------------------------------------------------------------------- /charts/domain-watch/templates/common.yaml: -------------------------------------------------------------------------------- 1 | {{ include "bjw-s.common.loader.all" . }} 2 | -------------------------------------------------------------------------------- /charts/domain-watch/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/domain-watch/values.yaml -------------------------------------------------------------------------------- /charts/esphome/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/esphome/.helmignore -------------------------------------------------------------------------------- /charts/esphome/Chart.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/esphome/Chart.lock -------------------------------------------------------------------------------- /charts/esphome/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/esphome/Chart.yaml -------------------------------------------------------------------------------- /charts/esphome/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/esphome/README.md -------------------------------------------------------------------------------- /charts/esphome/README_CONFIG.md.gotmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/esphome/README_CONFIG.md.gotmpl -------------------------------------------------------------------------------- /charts/esphome/templates/NOTES.txt: -------------------------------------------------------------------------------- 1 | {{- include "bjw-s.common.lib.chart.notes" . -}} 2 | -------------------------------------------------------------------------------- /charts/esphome/templates/common.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/esphome/templates/common.yaml -------------------------------------------------------------------------------- /charts/esphome/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/esphome/values.yaml -------------------------------------------------------------------------------- /charts/flame/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/flame/.helmignore -------------------------------------------------------------------------------- /charts/flame/Chart.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/flame/Chart.lock -------------------------------------------------------------------------------- /charts/flame/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/flame/Chart.yaml -------------------------------------------------------------------------------- /charts/flame/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/flame/README.md -------------------------------------------------------------------------------- /charts/flame/README_CONFIG.md.gotmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/flame/README_CONFIG.md.gotmpl -------------------------------------------------------------------------------- /charts/flame/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/flame/icon.svg -------------------------------------------------------------------------------- /charts/flame/templates/NOTES.txt: -------------------------------------------------------------------------------- 1 | {{- include "bjw-s.common.lib.chart.notes" . -}} 2 | -------------------------------------------------------------------------------- /charts/flame/templates/clusterrole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/flame/templates/clusterrole.yaml -------------------------------------------------------------------------------- /charts/flame/templates/clusterrolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/flame/templates/clusterrolebinding.yaml -------------------------------------------------------------------------------- /charts/flame/templates/common.yaml: -------------------------------------------------------------------------------- 1 | {{ include "bjw-s.common.loader.all" . }} 2 | -------------------------------------------------------------------------------- /charts/flame/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/flame/values.yaml -------------------------------------------------------------------------------- /charts/generic-device-plugin/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/generic-device-plugin/.helmignore -------------------------------------------------------------------------------- /charts/generic-device-plugin/Chart.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/generic-device-plugin/Chart.lock -------------------------------------------------------------------------------- /charts/generic-device-plugin/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/generic-device-plugin/Chart.yaml -------------------------------------------------------------------------------- /charts/generic-device-plugin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/generic-device-plugin/README.md -------------------------------------------------------------------------------- /charts/generic-device-plugin/README_CONFIG.md.gotmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/generic-device-plugin/README_CONFIG.md.gotmpl -------------------------------------------------------------------------------- /charts/generic-device-plugin/templates/NOTES.txt: -------------------------------------------------------------------------------- 1 | {{- include "bjw-s.common.lib.chart.notes" . -}} 2 | -------------------------------------------------------------------------------- /charts/generic-device-plugin/templates/common.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/generic-device-plugin/templates/common.yaml -------------------------------------------------------------------------------- /charts/generic-device-plugin/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/generic-device-plugin/values.yaml -------------------------------------------------------------------------------- /charts/gotify/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/gotify/.helmignore -------------------------------------------------------------------------------- /charts/gotify/Chart.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/gotify/Chart.lock -------------------------------------------------------------------------------- /charts/gotify/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/gotify/Chart.yaml -------------------------------------------------------------------------------- /charts/gotify/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/gotify/README.md -------------------------------------------------------------------------------- /charts/gotify/README_CONFIG.md.gotmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/gotify/README_CONFIG.md.gotmpl -------------------------------------------------------------------------------- /charts/gotify/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/gotify/icon.svg -------------------------------------------------------------------------------- /charts/gotify/templates/NOTES.txt: -------------------------------------------------------------------------------- 1 | {{- include "bjw-s.common.lib.chart.notes" . -}} 2 | -------------------------------------------------------------------------------- /charts/gotify/templates/common.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/gotify/templates/common.yaml -------------------------------------------------------------------------------- /charts/gotify/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/gotify/values.yaml -------------------------------------------------------------------------------- /charts/hammond/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/hammond/.helmignore -------------------------------------------------------------------------------- /charts/hammond/Chart.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/hammond/Chart.lock -------------------------------------------------------------------------------- /charts/hammond/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/hammond/Chart.yaml -------------------------------------------------------------------------------- /charts/hammond/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/hammond/README.md -------------------------------------------------------------------------------- /charts/hammond/README_CONFIG.md.gotmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/hammond/README_CONFIG.md.gotmpl -------------------------------------------------------------------------------- /charts/hammond/templates/NOTES.txt: -------------------------------------------------------------------------------- 1 | {{- include "bjw-s.common.lib.chart.notes" . -}} 2 | -------------------------------------------------------------------------------- /charts/hammond/templates/common.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/hammond/templates/common.yaml -------------------------------------------------------------------------------- /charts/hammond/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/hammond/values.yaml -------------------------------------------------------------------------------- /charts/headscale/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/headscale/.helmignore -------------------------------------------------------------------------------- /charts/headscale/Chart.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/headscale/Chart.lock -------------------------------------------------------------------------------- /charts/headscale/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/headscale/Chart.yaml -------------------------------------------------------------------------------- /charts/headscale/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/headscale/README.md -------------------------------------------------------------------------------- /charts/headscale/README_CONFIG.md.gotmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/headscale/README_CONFIG.md.gotmpl -------------------------------------------------------------------------------- /charts/headscale/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/headscale/templates/NOTES.txt -------------------------------------------------------------------------------- /charts/headscale/templates/common.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/headscale/templates/common.yaml -------------------------------------------------------------------------------- /charts/headscale/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/headscale/values.yaml -------------------------------------------------------------------------------- /charts/healthchecks/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/healthchecks/.helmignore -------------------------------------------------------------------------------- /charts/healthchecks/Chart.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/healthchecks/Chart.lock -------------------------------------------------------------------------------- /charts/healthchecks/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/healthchecks/Chart.yaml -------------------------------------------------------------------------------- /charts/healthchecks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/healthchecks/README.md -------------------------------------------------------------------------------- /charts/healthchecks/README_CONFIG.md.gotmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/healthchecks/README_CONFIG.md.gotmpl -------------------------------------------------------------------------------- /charts/healthchecks/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/healthchecks/icon.svg -------------------------------------------------------------------------------- /charts/healthchecks/templates/NOTES.txt: -------------------------------------------------------------------------------- 1 | {{- include "bjw-s.common.lib.chart.notes" . -}} 2 | -------------------------------------------------------------------------------- /charts/healthchecks/templates/common.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/healthchecks/templates/common.yaml -------------------------------------------------------------------------------- /charts/healthchecks/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/healthchecks/values.yaml -------------------------------------------------------------------------------- /charts/home-assistant/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/home-assistant/.helmignore -------------------------------------------------------------------------------- /charts/home-assistant/Chart.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/home-assistant/Chart.lock -------------------------------------------------------------------------------- /charts/home-assistant/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/home-assistant/Chart.yaml -------------------------------------------------------------------------------- /charts/home-assistant/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/home-assistant/README.md -------------------------------------------------------------------------------- /charts/home-assistant/README_CONFIG.md.gotmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/home-assistant/README_CONFIG.md.gotmpl -------------------------------------------------------------------------------- /charts/home-assistant/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/home-assistant/icon.svg -------------------------------------------------------------------------------- /charts/home-assistant/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/home-assistant/templates/NOTES.txt -------------------------------------------------------------------------------- /charts/home-assistant/templates/common.yaml: -------------------------------------------------------------------------------- 1 | {{ include "bjw-s.common.loader.all" . }} 2 | -------------------------------------------------------------------------------- /charts/home-assistant/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/home-assistant/values.yaml -------------------------------------------------------------------------------- /charts/homer/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/homer/.helmignore -------------------------------------------------------------------------------- /charts/homer/Chart.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/homer/Chart.lock -------------------------------------------------------------------------------- /charts/homer/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/homer/Chart.yaml -------------------------------------------------------------------------------- /charts/homer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/homer/README.md -------------------------------------------------------------------------------- /charts/homer/README_CONFIG.md.gotmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/homer/README_CONFIG.md.gotmpl -------------------------------------------------------------------------------- /charts/homer/templates/common.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/homer/templates/common.yaml -------------------------------------------------------------------------------- /charts/homer/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/homer/values.yaml -------------------------------------------------------------------------------- /charts/keydb/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/keydb/.helmignore -------------------------------------------------------------------------------- /charts/keydb/Chart.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/keydb/Chart.lock -------------------------------------------------------------------------------- /charts/keydb/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/keydb/Chart.yaml -------------------------------------------------------------------------------- /charts/keydb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/keydb/README.md -------------------------------------------------------------------------------- /charts/keydb/README_CONFIG.md.gotmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/keydb/README_CONFIG.md.gotmpl -------------------------------------------------------------------------------- /charts/keydb/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/keydb/icon.svg -------------------------------------------------------------------------------- /charts/keydb/templates/common.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/keydb/templates/common.yaml -------------------------------------------------------------------------------- /charts/keydb/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/keydb/values.yaml -------------------------------------------------------------------------------- /charts/limo/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/limo/.helmignore -------------------------------------------------------------------------------- /charts/limo/Chart.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/limo/Chart.lock -------------------------------------------------------------------------------- /charts/limo/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/limo/Chart.yaml -------------------------------------------------------------------------------- /charts/limo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/limo/README.md -------------------------------------------------------------------------------- /charts/limo/README_CONFIG.md.gotmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/limo/README_CONFIG.md.gotmpl -------------------------------------------------------------------------------- /charts/limo/templates/NOTES.txt: -------------------------------------------------------------------------------- 1 | {{- include "bjw-s.common.lib.chart.notes" . -}} 2 | -------------------------------------------------------------------------------- /charts/limo/templates/common.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/limo/templates/common.yaml -------------------------------------------------------------------------------- /charts/limo/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/limo/values.yaml -------------------------------------------------------------------------------- /charts/matrimony/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/matrimony/.helmignore -------------------------------------------------------------------------------- /charts/matrimony/Chart.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/matrimony/Chart.lock -------------------------------------------------------------------------------- /charts/matrimony/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/matrimony/Chart.yaml -------------------------------------------------------------------------------- /charts/matrimony/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/matrimony/README.md -------------------------------------------------------------------------------- /charts/matrimony/README_CONFIG.md.gotmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/matrimony/README_CONFIG.md.gotmpl -------------------------------------------------------------------------------- /charts/matrimony/templates/NOTES.txt: -------------------------------------------------------------------------------- 1 | {{- include "bjw-s.common.lib.chart.notes" . -}} 2 | -------------------------------------------------------------------------------- /charts/matrimony/templates/common.yaml: -------------------------------------------------------------------------------- 1 | {{ include "bjw-s.common.loader.all" . }} 2 | -------------------------------------------------------------------------------- /charts/matrimony/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/matrimony/values.yaml -------------------------------------------------------------------------------- /charts/memos/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/memos/.helmignore -------------------------------------------------------------------------------- /charts/memos/Chart.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/memos/Chart.lock -------------------------------------------------------------------------------- /charts/memos/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/memos/Chart.yaml -------------------------------------------------------------------------------- /charts/memos/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/memos/README.md -------------------------------------------------------------------------------- /charts/memos/README_CONFIG.md.gotmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/memos/README_CONFIG.md.gotmpl -------------------------------------------------------------------------------- /charts/memos/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/memos/icon.png -------------------------------------------------------------------------------- /charts/memos/templates/NOTES.txt: -------------------------------------------------------------------------------- 1 | {{- include "bjw-s.common.lib.chart.notes" . -}} 2 | -------------------------------------------------------------------------------- /charts/memos/templates/common.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/memos/templates/common.yaml -------------------------------------------------------------------------------- /charts/memos/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/memos/values.yaml -------------------------------------------------------------------------------- /charts/miniflux/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/miniflux/.helmignore -------------------------------------------------------------------------------- /charts/miniflux/Chart.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/miniflux/Chart.lock -------------------------------------------------------------------------------- /charts/miniflux/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/miniflux/Chart.yaml -------------------------------------------------------------------------------- /charts/miniflux/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/miniflux/README.md -------------------------------------------------------------------------------- /charts/miniflux/README_CONFIG.md.gotmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/miniflux/README_CONFIG.md.gotmpl -------------------------------------------------------------------------------- /charts/miniflux/templates/NOTES.txt: -------------------------------------------------------------------------------- 1 | {{- include "bjw-s.common.lib.chart.notes" . -}} 2 | -------------------------------------------------------------------------------- /charts/miniflux/templates/_metrics.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/miniflux/templates/_metrics.yaml -------------------------------------------------------------------------------- /charts/miniflux/templates/common.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/miniflux/templates/common.yaml -------------------------------------------------------------------------------- /charts/miniflux/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/miniflux/values.yaml -------------------------------------------------------------------------------- /charts/mnemonic-ninja/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/mnemonic-ninja/.helmignore -------------------------------------------------------------------------------- /charts/mnemonic-ninja/Chart.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/mnemonic-ninja/Chart.lock -------------------------------------------------------------------------------- /charts/mnemonic-ninja/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/mnemonic-ninja/Chart.yaml -------------------------------------------------------------------------------- /charts/mnemonic-ninja/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/mnemonic-ninja/README.md -------------------------------------------------------------------------------- /charts/mnemonic-ninja/README_CONFIG.md.gotmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/mnemonic-ninja/README_CONFIG.md.gotmpl -------------------------------------------------------------------------------- /charts/mnemonic-ninja/templates/NOTES.txt: -------------------------------------------------------------------------------- 1 | {{- include "bjw-s.common.lib.chart.notes" . -}} 2 | -------------------------------------------------------------------------------- /charts/mnemonic-ninja/templates/common.yaml: -------------------------------------------------------------------------------- 1 | {{ include "bjw-s.common.loader.all" . }} 2 | -------------------------------------------------------------------------------- /charts/mnemonic-ninja/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/mnemonic-ninja/values.yaml -------------------------------------------------------------------------------- /charts/monica/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/monica/.helmignore -------------------------------------------------------------------------------- /charts/monica/Chart.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/monica/Chart.lock -------------------------------------------------------------------------------- /charts/monica/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/monica/Chart.yaml -------------------------------------------------------------------------------- /charts/monica/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/monica/README.md -------------------------------------------------------------------------------- /charts/monica/README_CONFIG.md.gotmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/monica/README_CONFIG.md.gotmpl -------------------------------------------------------------------------------- /charts/monica/templates/NOTES.txt: -------------------------------------------------------------------------------- 1 | {{- include "bjw-s.common.lib.chart.notes" . -}} 2 | -------------------------------------------------------------------------------- /charts/monica/templates/common.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/monica/templates/common.yaml -------------------------------------------------------------------------------- /charts/monica/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/monica/values.yaml -------------------------------------------------------------------------------- /charts/nightscout/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/nightscout/.helmignore -------------------------------------------------------------------------------- /charts/nightscout/Chart.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/nightscout/Chart.lock -------------------------------------------------------------------------------- /charts/nightscout/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/nightscout/Chart.yaml -------------------------------------------------------------------------------- /charts/nightscout/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/nightscout/README.md -------------------------------------------------------------------------------- /charts/nightscout/README_CONFIG.md.gotmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/nightscout/README_CONFIG.md.gotmpl -------------------------------------------------------------------------------- /charts/nightscout/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/nightscout/icon.svg -------------------------------------------------------------------------------- /charts/nightscout/templates/NOTES.txt: -------------------------------------------------------------------------------- 1 | {{- include "bjw-s.common.lib.chart.notes" . -}} 2 | -------------------------------------------------------------------------------- /charts/nightscout/templates/common.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/nightscout/templates/common.yaml -------------------------------------------------------------------------------- /charts/nightscout/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/nightscout/values.yaml -------------------------------------------------------------------------------- /charts/obico/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/obico/.helmignore -------------------------------------------------------------------------------- /charts/obico/Chart.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/obico/Chart.lock -------------------------------------------------------------------------------- /charts/obico/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/obico/Chart.yaml -------------------------------------------------------------------------------- /charts/obico/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/obico/README.md -------------------------------------------------------------------------------- /charts/obico/README_CONFIG.md.gotmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/obico/README_CONFIG.md.gotmpl -------------------------------------------------------------------------------- /charts/obico/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/obico/icon.svg -------------------------------------------------------------------------------- /charts/obico/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/obico/templates/NOTES.txt -------------------------------------------------------------------------------- /charts/obico/templates/ml-api.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/obico/templates/ml-api.yaml -------------------------------------------------------------------------------- /charts/obico/templates/server.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/obico/templates/server.yaml -------------------------------------------------------------------------------- /charts/obico/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/obico/values.yaml -------------------------------------------------------------------------------- /charts/paperless-ngx/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/paperless-ngx/.helmignore -------------------------------------------------------------------------------- /charts/paperless-ngx/Chart.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/paperless-ngx/Chart.lock -------------------------------------------------------------------------------- /charts/paperless-ngx/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/paperless-ngx/Chart.yaml -------------------------------------------------------------------------------- /charts/paperless-ngx/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/paperless-ngx/README.md -------------------------------------------------------------------------------- /charts/paperless-ngx/README_CONFIG.md.gotmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/paperless-ngx/README_CONFIG.md.gotmpl -------------------------------------------------------------------------------- /charts/paperless-ngx/templates/NOTES.txt: -------------------------------------------------------------------------------- 1 | {{- include "bjw-s.common.lib.chart.notes" . -}} 2 | -------------------------------------------------------------------------------- /charts/paperless-ngx/templates/common.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/paperless-ngx/templates/common.yaml -------------------------------------------------------------------------------- /charts/paperless-ngx/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/paperless-ngx/values.yaml -------------------------------------------------------------------------------- /charts/pictshare/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/pictshare/.helmignore -------------------------------------------------------------------------------- /charts/pictshare/Chart.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/pictshare/Chart.lock -------------------------------------------------------------------------------- /charts/pictshare/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/pictshare/Chart.yaml -------------------------------------------------------------------------------- /charts/pictshare/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/pictshare/README.md -------------------------------------------------------------------------------- /charts/pictshare/README_CONFIG.md.gotmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/pictshare/README_CONFIG.md.gotmpl -------------------------------------------------------------------------------- /charts/pictshare/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/pictshare/icon.svg -------------------------------------------------------------------------------- /charts/pictshare/templates/NOTES.txt: -------------------------------------------------------------------------------- 1 | {{- include "bjw-s.common.lib.chart.notes" . -}} 2 | -------------------------------------------------------------------------------- /charts/pictshare/templates/common.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/pictshare/templates/common.yaml -------------------------------------------------------------------------------- /charts/pictshare/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/pictshare/values.yaml -------------------------------------------------------------------------------- /charts/plex/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/plex/.helmignore -------------------------------------------------------------------------------- /charts/plex/Chart.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/plex/Chart.lock -------------------------------------------------------------------------------- /charts/plex/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/plex/Chart.yaml -------------------------------------------------------------------------------- /charts/plex/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/plex/README.md -------------------------------------------------------------------------------- /charts/plex/README_CONFIG.md.gotmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/plex/README_CONFIG.md.gotmpl -------------------------------------------------------------------------------- /charts/plex/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/plex/icon.svg -------------------------------------------------------------------------------- /charts/plex/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/plex/templates/NOTES.txt -------------------------------------------------------------------------------- /charts/plex/templates/common.yaml: -------------------------------------------------------------------------------- 1 | {{ include "bjw-s.common.loader.all" . }} 2 | -------------------------------------------------------------------------------- /charts/plex/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/plex/values.yaml -------------------------------------------------------------------------------- /charts/podgrab/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/podgrab/.helmignore -------------------------------------------------------------------------------- /charts/podgrab/Chart.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/podgrab/Chart.lock -------------------------------------------------------------------------------- /charts/podgrab/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/podgrab/Chart.yaml -------------------------------------------------------------------------------- /charts/podgrab/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/podgrab/README.md -------------------------------------------------------------------------------- /charts/podgrab/README_CONFIG.md.gotmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/podgrab/README_CONFIG.md.gotmpl -------------------------------------------------------------------------------- /charts/podgrab/templates/NOTES.txt: -------------------------------------------------------------------------------- 1 | {{- include "bjw-s.common.lib.chart.notes" . -}} 2 | -------------------------------------------------------------------------------- /charts/podgrab/templates/common.yaml: -------------------------------------------------------------------------------- 1 | {{ include "bjw-s.common.loader.all" . }} 2 | -------------------------------------------------------------------------------- /charts/podgrab/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/podgrab/values.yaml -------------------------------------------------------------------------------- /charts/qbittorrent/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/qbittorrent/.helmignore -------------------------------------------------------------------------------- /charts/qbittorrent/Chart.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/qbittorrent/Chart.lock -------------------------------------------------------------------------------- /charts/qbittorrent/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/qbittorrent/Chart.yaml -------------------------------------------------------------------------------- /charts/qbittorrent/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/qbittorrent/README.md -------------------------------------------------------------------------------- /charts/qbittorrent/README_CONFIG.md.gotmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/qbittorrent/README_CONFIG.md.gotmpl -------------------------------------------------------------------------------- /charts/qbittorrent/templates/NOTES.txt: -------------------------------------------------------------------------------- 1 | {{- include "bjw-s.common.lib.chart.notes" . -}} 2 | -------------------------------------------------------------------------------- /charts/qbittorrent/templates/common.yaml: -------------------------------------------------------------------------------- 1 | {{ include "bjw-s.common.loader.all" . }} 2 | -------------------------------------------------------------------------------- /charts/qbittorrent/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/qbittorrent/values.yaml -------------------------------------------------------------------------------- /charts/relax-sounds/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/relax-sounds/.helmignore -------------------------------------------------------------------------------- /charts/relax-sounds/Chart.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/relax-sounds/Chart.lock -------------------------------------------------------------------------------- /charts/relax-sounds/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/relax-sounds/Chart.yaml -------------------------------------------------------------------------------- /charts/relax-sounds/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/relax-sounds/README.md -------------------------------------------------------------------------------- /charts/relax-sounds/README_CONFIG.md.gotmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/relax-sounds/README_CONFIG.md.gotmpl -------------------------------------------------------------------------------- /charts/relax-sounds/templates/common.yaml: -------------------------------------------------------------------------------- 1 | {{ include "bjw-s.common.loader.all" . }} 2 | -------------------------------------------------------------------------------- /charts/relax-sounds/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/relax-sounds/values.yaml -------------------------------------------------------------------------------- /charts/rss-bridge/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/rss-bridge/.helmignore -------------------------------------------------------------------------------- /charts/rss-bridge/Chart.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/rss-bridge/Chart.lock -------------------------------------------------------------------------------- /charts/rss-bridge/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/rss-bridge/Chart.yaml -------------------------------------------------------------------------------- /charts/rss-bridge/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/rss-bridge/README.md -------------------------------------------------------------------------------- /charts/rss-bridge/README_CONFIG.md.gotmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/rss-bridge/README_CONFIG.md.gotmpl -------------------------------------------------------------------------------- /charts/rss-bridge/templates/NOTES.txt: -------------------------------------------------------------------------------- 1 | {{- include "bjw-s.common.lib.chart.notes" . -}} 2 | -------------------------------------------------------------------------------- /charts/rss-bridge/templates/common.yaml: -------------------------------------------------------------------------------- 1 | {{ include "bjw-s.common.loader.all" . }} 2 | -------------------------------------------------------------------------------- /charts/rss-bridge/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/rss-bridge/values.yaml -------------------------------------------------------------------------------- /charts/rsshub/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/rsshub/.helmignore -------------------------------------------------------------------------------- /charts/rsshub/Chart.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/rsshub/Chart.lock -------------------------------------------------------------------------------- /charts/rsshub/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/rsshub/Chart.yaml -------------------------------------------------------------------------------- /charts/rsshub/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/rsshub/README.md -------------------------------------------------------------------------------- /charts/rsshub/README_CONFIG.md.gotmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/rsshub/README_CONFIG.md.gotmpl -------------------------------------------------------------------------------- /charts/rsshub/templates/NOTES.txt: -------------------------------------------------------------------------------- 1 | {{- include "bjw-s.common.lib.chart.notes" . -}} 2 | -------------------------------------------------------------------------------- /charts/rsshub/templates/common.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/rsshub/templates/common.yaml -------------------------------------------------------------------------------- /charts/rsshub/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/rsshub/values.yaml -------------------------------------------------------------------------------- /charts/scanservjs/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/scanservjs/.helmignore -------------------------------------------------------------------------------- /charts/scanservjs/Chart.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/scanservjs/Chart.lock -------------------------------------------------------------------------------- /charts/scanservjs/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/scanservjs/Chart.yaml -------------------------------------------------------------------------------- /charts/scanservjs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/scanservjs/README.md -------------------------------------------------------------------------------- /charts/scanservjs/README_CONFIG.md.gotmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/scanservjs/README_CONFIG.md.gotmpl -------------------------------------------------------------------------------- /charts/scanservjs/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/scanservjs/icon.svg -------------------------------------------------------------------------------- /charts/scanservjs/templates/NOTES.txt: -------------------------------------------------------------------------------- 1 | {{- include "bjw-s.common.lib.chart.notes" . -}} 2 | -------------------------------------------------------------------------------- /charts/scanservjs/templates/common.yaml: -------------------------------------------------------------------------------- 1 | {{ include "bjw-s.common.loader.all" . }} 2 | -------------------------------------------------------------------------------- /charts/scanservjs/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/scanservjs/values.yaml -------------------------------------------------------------------------------- /charts/smarter-device-manager/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/smarter-device-manager/.helmignore -------------------------------------------------------------------------------- /charts/smarter-device-manager/Chart.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/smarter-device-manager/Chart.lock -------------------------------------------------------------------------------- /charts/smarter-device-manager/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/smarter-device-manager/Chart.yaml -------------------------------------------------------------------------------- /charts/smarter-device-manager/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/smarter-device-manager/README.md -------------------------------------------------------------------------------- /charts/smarter-device-manager/README_CONFIG.md.gotmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/smarter-device-manager/README_CONFIG.md.gotmpl -------------------------------------------------------------------------------- /charts/smarter-device-manager/templates/common.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/smarter-device-manager/templates/common.yaml -------------------------------------------------------------------------------- /charts/smarter-device-manager/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/smarter-device-manager/values.yaml -------------------------------------------------------------------------------- /charts/tandoor/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/tandoor/.helmignore -------------------------------------------------------------------------------- /charts/tandoor/Chart.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/tandoor/Chart.lock -------------------------------------------------------------------------------- /charts/tandoor/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/tandoor/Chart.yaml -------------------------------------------------------------------------------- /charts/tandoor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/tandoor/README.md -------------------------------------------------------------------------------- /charts/tandoor/README_CONFIG.md.gotmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/tandoor/README_CONFIG.md.gotmpl -------------------------------------------------------------------------------- /charts/tandoor/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/tandoor/templates/NOTES.txt -------------------------------------------------------------------------------- /charts/tandoor/templates/common.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/tandoor/templates/common.yaml -------------------------------------------------------------------------------- /charts/tandoor/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/tandoor/values.yaml -------------------------------------------------------------------------------- /charts/transsmute/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/transsmute/.helmignore -------------------------------------------------------------------------------- /charts/transsmute/Chart.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/transsmute/Chart.lock -------------------------------------------------------------------------------- /charts/transsmute/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/transsmute/Chart.yaml -------------------------------------------------------------------------------- /charts/transsmute/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/transsmute/README.md -------------------------------------------------------------------------------- /charts/transsmute/README_CONFIG.md.gotmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/transsmute/README_CONFIG.md.gotmpl -------------------------------------------------------------------------------- /charts/transsmute/templates/common.yaml: -------------------------------------------------------------------------------- 1 | {{ include "bjw-s.common.loader.all" . }} 2 | -------------------------------------------------------------------------------- /charts/transsmute/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/transsmute/values.yaml -------------------------------------------------------------------------------- /charts/vaultwarden/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/vaultwarden/.helmignore -------------------------------------------------------------------------------- /charts/vaultwarden/Chart.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/vaultwarden/Chart.lock -------------------------------------------------------------------------------- /charts/vaultwarden/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/vaultwarden/Chart.yaml -------------------------------------------------------------------------------- /charts/vaultwarden/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/vaultwarden/README.md -------------------------------------------------------------------------------- /charts/vaultwarden/README_CONFIG.md.gotmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/vaultwarden/README_CONFIG.md.gotmpl -------------------------------------------------------------------------------- /charts/vaultwarden/templates/NOTES.txt: -------------------------------------------------------------------------------- 1 | {{- include "bjw-s.common.lib.chart.notes" . -}} 2 | -------------------------------------------------------------------------------- /charts/vaultwarden/templates/common.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/vaultwarden/templates/common.yaml -------------------------------------------------------------------------------- /charts/vaultwarden/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/charts/vaultwarden/values.yaml -------------------------------------------------------------------------------- /docs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/docs/.gitignore -------------------------------------------------------------------------------- /docs/docs/artifacthub-repo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/docs/docs/artifacthub-repo.yml -------------------------------------------------------------------------------- /docs/docs/assets/icons/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/docs/docs/assets/icons/android-chrome-192x192.png -------------------------------------------------------------------------------- /docs/docs/assets/icons/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/docs/docs/assets/icons/android-chrome-512x512.png -------------------------------------------------------------------------------- /docs/docs/assets/icons/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/docs/docs/assets/icons/apple-touch-icon.png -------------------------------------------------------------------------------- /docs/docs/assets/icons/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/docs/docs/assets/icons/favicon-16x16.png -------------------------------------------------------------------------------- /docs/docs/assets/icons/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/docs/docs/assets/icons/favicon-32x32.png -------------------------------------------------------------------------------- /docs/docs/assets/icons/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/docs/docs/assets/icons/favicon.ico -------------------------------------------------------------------------------- /docs/docs/assets/icons/icon.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/docs/docs/assets/icons/icon.webp -------------------------------------------------------------------------------- /docs/docs/assets/icons/mstile-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/docs/docs/assets/icons/mstile-150x150.png -------------------------------------------------------------------------------- /docs/docs/assets/icons/safari-pinned-tab.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/docs/docs/assets/icons/safari-pinned-tab.svg -------------------------------------------------------------------------------- /docs/docs/browserconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/docs/docs/browserconfig.xml -------------------------------------------------------------------------------- /docs/docs/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/docs/docs/robots.txt -------------------------------------------------------------------------------- /docs/docs/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/docs/docs/site.webmanifest -------------------------------------------------------------------------------- /docs/docs/stylesheets/extra.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/docs/docs/stylesheets/extra.css -------------------------------------------------------------------------------- /docs/mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/docs/mkdocs.yml -------------------------------------------------------------------------------- /docs/overrides/main.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/docs/overrides/main.html -------------------------------------------------------------------------------- /docs/overrides/partials/actions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/docs/overrides/partials/actions.html -------------------------------------------------------------------------------- /docs/plugins/add_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/docs/plugins/add_files.py -------------------------------------------------------------------------------- /docs/plugins/filter_readmes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/docs/plugins/filter_readmes.py -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/docs/requirements.txt -------------------------------------------------------------------------------- /hack/gen-chart-summary.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/hack/gen-chart-summary.sh -------------------------------------------------------------------------------- /hack/gen-helm-docs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/hack/gen-helm-docs.sh -------------------------------------------------------------------------------- /hack/templates/README.md.gotmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/hack/templates/README.md.gotmpl -------------------------------------------------------------------------------- /hack/templates/README_CONFIG.md.gotmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/hack/templates/README_CONFIG.md.gotmpl -------------------------------------------------------------------------------- /hack/templates/icon.gotmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/hack/templates/icon.gotmpl -------------------------------------------------------------------------------- /hack/update-changelog.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/hack/update-changelog.sh -------------------------------------------------------------------------------- /hack/update-version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabe565/charts/HEAD/hack/update-version.sh --------------------------------------------------------------------------------