├── .all-contributorsrc
├── .github
├── CODEOWNERS
├── ISSUE_TEMPLATE
│ ├── bug-report.yml
│ ├── config.yml
│ └── enhancement.yml
├── PAUL.yaml
├── PULL_REQUEST_TEMPLATE.md
├── actions
│ ├── collect-changes
│ │ └── action.yaml
│ └── label-from-status
│ │ └── action.yaml
├── ct-install.yaml
├── ct-lint.yaml
├── label-commenter-config.yml
├── labels.yaml
├── renovate.json5
├── scripts
│ ├── check-releasenotes.sh
│ ├── gen-helm-docs.sh
│ ├── renovate-releasenotes.py
│ └── requirements.txt
└── workflows
│ ├── charts-changelog.yaml
│ ├── charts-lint.yaml
│ ├── charts-release.yaml
│ ├── charts-test.yaml
│ ├── meta-label-pr-ci-status.yaml
│ ├── metadata-label-commenter.yaml
│ ├── metadata-label-pr.yaml
│ ├── pr-metadata.yaml
│ ├── pr-validate.yaml
│ ├── pre-commit-check.yaml
│ ├── renovate-schedule.yaml
│ ├── schedule-sync-labels.yaml
│ └── stale.yaml
├── .gitignore
├── .helmdocsignore
├── .pre-commit-config.yaml
├── .taskfiles
├── Taskfile_chart.yml
├── Taskfile_darwin.yml
├── Taskfile_linux.yml
└── Taskfile_windows.yml
├── .vscode
└── extensions.json
├── CODE_OF_CONDUCT.md
├── CONTRIBUTING.md
├── Gemfile
├── LICENSE
├── README.md
├── Taskfile.yml
├── charts
├── README.md
├── incubator
│ ├── .gitkeep
│ ├── babybuddy
│ │ ├── .helmignore
│ │ ├── Chart.yaml
│ │ ├── README.md
│ │ ├── README_CONFIG.md.gotmpl
│ │ ├── templates
│ │ │ ├── NOTES.txt
│ │ │ └── common.yaml
│ │ └── values.yaml
│ ├── changedetection-io
│ │ ├── .helmignore
│ │ ├── Chart.yaml
│ │ ├── README.md
│ │ ├── README_CONFIG.md.gotmpl
│ │ ├── templates
│ │ │ ├── NOTES.txt
│ │ │ └── common.yaml
│ │ └── values.yaml
│ ├── cryptpad
│ │ ├── .helmignore
│ │ ├── Chart.yaml
│ │ ├── README.md
│ │ ├── README_CONFIG.md.gotmpl
│ │ ├── templates
│ │ │ ├── NOTES.txt
│ │ │ ├── common.yaml
│ │ │ └── configmap.yaml
│ │ └── values.yaml
│ ├── dendrite
│ │ ├── .helmignore
│ │ ├── Chart.yaml
│ │ ├── README.md
│ │ ├── README_CONFIG.md.gotmpl
│ │ ├── ci
│ │ │ ├── ct-values.yaml
│ │ │ ├── nats-values.yaml
│ │ │ ├── polylith-basic-values.yaml
│ │ │ ├── polylith-full-values.yaml
│ │ │ └── postresql-values.yaml
│ │ ├── templates
│ │ │ ├── NOTES.txt
│ │ │ ├── _helper.tpl
│ │ │ ├── common.yaml
│ │ │ ├── dendrite-config.yaml
│ │ │ ├── ingress.yaml
│ │ │ ├── matrix-key-secret.yaml
│ │ │ ├── postgresql-initdb.yaml
│ │ │ └── volumes.yaml
│ │ └── values.yaml
│ ├── handbrake
│ │ ├── .helmignore
│ │ ├── Chart.yaml
│ │ ├── README.md
│ │ ├── README_CONFIG.md.gotmpl
│ │ ├── templates
│ │ │ ├── NOTES.txt
│ │ │ └── common.yaml
│ │ └── values.yaml
│ ├── kah-common-chart
│ │ ├── .helmignore
│ │ ├── Chart.yaml
│ │ ├── README_CONFIG.md.gotmpl
│ │ ├── templates
│ │ │ └── common.yaml
│ │ └── values.yaml
│ ├── lancache
│ │ ├── .helmignore
│ │ ├── Chart.yaml
│ │ ├── README.md
│ │ ├── README_CONFIG.md.gotmpl
│ │ ├── templates
│ │ │ ├── NOTES.txt
│ │ │ └── common.yaml
│ │ └── values.yaml
│ ├── mopidy
│ │ ├── .helmignore
│ │ ├── Chart.yaml
│ │ ├── README.md
│ │ ├── README_CONFIG.md.gotmpl
│ │ ├── templates
│ │ │ ├── NOTES.txt
│ │ │ ├── common.yaml
│ │ │ └── configmap.yaml
│ │ └── values.yaml
│ ├── openhab
│ │ ├── Chart.yaml
│ │ ├── README.md
│ │ ├── README_CONFIG.md.gotmpl
│ │ ├── templates
│ │ │ ├── NOTES.txt
│ │ │ ├── common.yaml
│ │ │ └── configmap.yaml
│ │ └── values.yaml
│ ├── scrypted
│ │ ├── .helmignore
│ │ ├── Chart.yaml
│ │ ├── README.md
│ │ ├── README_CONFIG.md.gotmpl
│ │ ├── templates
│ │ │ ├── NOTES.txt
│ │ │ └── common.yaml
│ │ └── values.yaml
│ ├── sdtd
│ │ ├── .helmignore
│ │ ├── Chart.yaml
│ │ ├── README.md
│ │ ├── README_CONFIG.md.gotmpl
│ │ ├── templates
│ │ │ ├── NOTES.txt
│ │ │ └── common.yaml
│ │ └── values.yaml
│ ├── signal-cli-rest-api
│ │ ├── .helmignore
│ │ ├── Chart.yaml
│ │ ├── README.md
│ │ ├── README_CONFIG.md.gotmpl
│ │ ├── templates
│ │ │ ├── NOTES.txt
│ │ │ └── common.yaml
│ │ └── values.yaml
│ ├── sinusbot
│ │ ├── .helmignore
│ │ ├── Chart.yaml
│ │ ├── README.md
│ │ ├── README_CONFIG.md.gotmpl
│ │ ├── templates
│ │ │ ├── NOTES.txt
│ │ │ └── common.yaml
│ │ └── values.yaml
│ ├── snapcast
│ │ ├── .helmignore
│ │ ├── Chart.yaml
│ │ ├── README.md
│ │ ├── README_CONFIG.md.gotmpl
│ │ ├── templates
│ │ │ ├── NOTES.txt
│ │ │ ├── common.yaml
│ │ │ └── configmap.yaml
│ │ └── values.yaml
│ ├── strongswan
│ │ ├── .helmignore
│ │ ├── Chart.yaml
│ │ ├── README.md
│ │ ├── README_CONFIG.md.gotmpl
│ │ ├── ci
│ │ │ └── ct-values.yaml
│ │ ├── templates
│ │ │ ├── NOTES.txt
│ │ │ └── common.yaml
│ │ └── values.yaml
│ ├── teamspeak
│ │ ├── Chart.yaml
│ │ ├── README.md
│ │ ├── README_CONFIG.md.gotmpl
│ │ ├── ci
│ │ │ └── ct-values.yaml
│ │ ├── templates
│ │ │ ├── NOTES.txt
│ │ │ ├── common.yaml
│ │ │ ├── prometheusrules.yaml
│ │ │ ├── secret.yaml
│ │ │ └── servicemonitor.yaml
│ │ └── values.yaml
│ ├── torrserver
│ │ ├── .helmignore
│ │ ├── Chart.yaml
│ │ ├── README.md
│ │ ├── README_CONFIG.md.gotmpl
│ │ ├── templates
│ │ │ ├── NOTES.txt
│ │ │ └── common.yaml
│ │ └── values.yaml
│ └── warrior
│ │ ├── .helmignore
│ │ ├── Chart.yaml
│ │ ├── README.md
│ │ ├── README_CONFIG.md.gotmpl
│ │ ├── templates
│ │ ├── NOTES.txt
│ │ └── common.yaml
│ │ └── values.yaml
└── stable
│ ├── adguard-home
│ ├── .helmignore
│ ├── Chart.yaml
│ ├── README.md
│ ├── README_CONFIG.md.gotmpl
│ ├── ci
│ │ └── ct-values.yaml
│ ├── templates
│ │ ├── NOTES.txt
│ │ ├── common.yaml
│ │ └── configmap.yaml
│ └── values.yaml
│ ├── airsonic
│ ├── .helmignore
│ ├── Chart.yaml
│ ├── README.md
│ ├── README_CONFIG.md.gotmpl
│ ├── templates
│ │ ├── NOTES.txt
│ │ └── common.yaml
│ └── values.yaml
│ ├── alertmanager-bot
│ ├── .helmignore
│ ├── Chart.yaml
│ ├── README.md
│ ├── README_CONFIG.md.gotmpl
│ ├── templates
│ │ ├── NOTES.txt
│ │ └── common.yaml
│ └── values.yaml
│ ├── alertmanager-discord
│ ├── .helmignore
│ ├── Chart.yaml
│ ├── README.md
│ ├── README_CONFIG.md.gotmpl
│ ├── templates
│ │ ├── NOTES.txt
│ │ └── common.yaml
│ └── values.yaml
│ ├── amcrest2mqtt
│ ├── .helmignore
│ ├── Chart.yaml
│ ├── README.md
│ ├── README_CONFIG.md.gotmpl
│ ├── templates
│ │ ├── NOTES.txt
│ │ └── common.yaml
│ └── values.yaml
│ ├── anonaddy
│ ├── .helmignore
│ ├── Chart.yaml
│ ├── README.md
│ ├── README_CONFIG.md.gotmpl
│ ├── ci
│ │ └── ct-values.yaml
│ ├── templates
│ │ ├── NOTES.txt
│ │ └── common.yaml
│ └── values.yaml
│ ├── apache-musicindex
│ ├── .helmignore
│ ├── Chart.yaml
│ ├── README.md
│ ├── README_CONFIG.md.gotmpl
│ ├── templates
│ │ ├── NOTES.txt
│ │ └── common.yaml
│ └── values.yaml
│ ├── appdaemon
│ ├── .helmignore
│ ├── Chart.yaml
│ ├── README.md
│ ├── README_CONFIG.md.gotmpl
│ ├── ci
│ │ └── ct-values.yaml
│ ├── templates
│ │ ├── NOTES.txt
│ │ └── common.yaml
│ └── values.yaml
│ ├── apprise-api
│ ├── .helmignore
│ ├── Chart.yaml
│ ├── README.md
│ ├── README_CONFIG.md.gotmpl
│ ├── templates
│ │ └── common.yaml
│ └── values.yaml
│ ├── aria2
│ ├── .helmignore
│ ├── Chart.yaml
│ ├── README.md
│ ├── README_CONFIG.md.gotmpl
│ ├── templates
│ │ ├── NOTES.txt
│ │ └── common.yaml
│ └── values.yaml
│ ├── audiobookshelf
│ ├── .helmignore
│ ├── Chart.yaml
│ ├── README.md
│ ├── README_CONFIG.md.gotmpl
│ ├── templates
│ │ ├── NOTES.txt
│ │ └── common.yaml
│ └── values.yaml
│ ├── autobrr
│ ├── .helmignore
│ ├── Chart.yaml
│ ├── README.md
│ ├── README_CONFIG.md.gotmpl
│ ├── templates
│ │ ├── NOTES.txt
│ │ ├── common.yaml
│ │ └── configmap.yaml
│ └── values.yaml
│ ├── baikal
│ ├── .helmignore
│ ├── Chart.yaml
│ ├── README.md
│ ├── README_CONFIG.md.gotmpl
│ ├── templates
│ │ ├── NOTES.txt
│ │ └── common.yaml
│ └── values.yaml
│ ├── bazarr
│ ├── .helmignore
│ ├── Chart.yaml
│ ├── README.md
│ ├── README_CONFIG.md.gotmpl
│ ├── templates
│ │ ├── NOTES.txt
│ │ └── common.yaml
│ └── values.yaml
│ ├── beets
│ ├── .helmignore
│ ├── Chart.yaml
│ ├── README.md
│ ├── README_CONFIG.md.gotmpl
│ ├── templates
│ │ ├── NOTES.txt
│ │ └── common.yaml
│ └── values.yaml
│ ├── blocky
│ ├── .helmignore
│ ├── Chart.yaml
│ ├── README.md
│ ├── README_CONFIG.md.gotmpl
│ ├── ci
│ │ └── ct-values.yaml
│ ├── templates
│ │ ├── NOTES.txt
│ │ ├── common.yaml
│ │ ├── configmap.yaml
│ │ ├── prometheusrules.yaml
│ │ └── servicemonitor.yaml
│ └── values.yaml
│ ├── booksonic-air
│ ├── .helmignore
│ ├── Chart.yaml
│ ├── README.md
│ ├── README_CONFIG.md.gotmpl
│ ├── templates
│ │ ├── NOTES.txt
│ │ └── common.yaml
│ └── values.yaml
│ ├── bookstack
│ ├── .helmignore
│ ├── Chart.yaml
│ ├── README.md
│ ├── README_CONFIG.md.gotmpl
│ ├── templates
│ │ ├── NOTES.txt
│ │ └── common.yaml
│ └── values.yaml
│ ├── calibre-web
│ ├── .helmignore
│ ├── Chart.yaml
│ ├── README.md
│ ├── README_CONFIG.md.gotmpl
│ ├── templates
│ │ ├── NOTES.txt
│ │ └── common.yaml
│ └── values.yaml
│ ├── calibre
│ ├── .helmignore
│ ├── Chart.yaml
│ ├── README.md
│ ├── README_CONFIG.md.gotmpl
│ ├── templates
│ │ ├── NOTES.txt
│ │ └── common.yaml
│ └── values.yaml
│ ├── comcast
│ ├── .helmignore
│ ├── Chart.yaml
│ ├── README.md
│ ├── README_CONFIG.md.gotmpl
│ ├── templates
│ │ ├── NOTES.txt
│ │ ├── common.yaml
│ │ └── configmap.yaml
│ └── values.yaml
│ ├── cryptofolio
│ ├── .helmignore
│ ├── Chart.yaml
│ ├── README.md
│ ├── README_CONFIG.md.gotmpl
│ ├── templates
│ │ ├── NOTES.txt
│ │ └── common.yaml
│ └── values.yaml
│ ├── deconz
│ ├── .helmignore
│ ├── Chart.yaml
│ ├── README.md
│ ├── README_CONFIG.md.gotmpl
│ ├── templates
│ │ ├── NOTES.txt
│ │ └── common.yaml
│ └── values.yaml
│ ├── deemix
│ ├── .helmignore
│ ├── Chart.yaml
│ ├── README.md
│ ├── README_CONFIG.md.gotmpl
│ ├── templates
│ │ ├── NOTES.txt
│ │ └── common.yaml
│ └── values.yaml
│ ├── deepstack
│ ├── .helmignore
│ ├── Chart.yaml
│ ├── README.md
│ ├── README_CONFIG.md.gotmpl
│ ├── templates
│ │ ├── NOTES.txt
│ │ └── common.yaml
│ └── values.yaml
│ ├── deluge
│ ├── .helmignore
│ ├── Chart.yaml
│ ├── README.md
│ ├── README_CONFIG.md.gotmpl
│ ├── templates
│ │ ├── NOTES.txt
│ │ └── common.yaml
│ └── values.yaml
│ ├── dizquetv
│ ├── .helmignore
│ ├── Chart.yaml
│ ├── README.md
│ ├── README_CONFIG.md.gotmpl
│ ├── templates
│ │ ├── NOTES.txt
│ │ └── common.yaml
│ └── values.yaml
│ ├── dnsmadeeasy-webhook
│ ├── .helmignore
│ ├── Chart.yaml
│ ├── README.md
│ ├── README_CONFIG.md.gotmpl
│ ├── ci
│ │ └── ct-values.yaml
│ ├── templates
│ │ ├── NOTES.txt
│ │ ├── apiservice.yaml
│ │ ├── common.tpl
│ │ ├── pki.yaml
│ │ └── rbac.yaml
│ └── values.yaml
│ ├── dokuwiki
│ ├── .helmignore
│ ├── Chart.yaml
│ ├── README.md
│ ├── README_CONFIG.md.gotmpl
│ ├── templates
│ │ ├── NOTES.txt
│ │ └── common.yaml
│ └── values.yaml
│ ├── double-take
│ ├── .helmignore
│ ├── Chart.yaml
│ ├── README.md
│ ├── README_CONFIG.md.gotmpl
│ ├── templates
│ │ ├── NOTES.txt
│ │ ├── common.yaml
│ │ └── configmap.yaml
│ └── values.yaml
│ ├── dsmr-reader
│ ├── .helmignore
│ ├── Chart.yaml
│ ├── README.md
│ ├── README_CONFIG.md.gotmpl
│ ├── ci
│ │ └── ct-values.yaml
│ ├── templates
│ │ ├── NOTES.txt
│ │ └── common.yaml
│ └── values.yaml
│ ├── duplicati
│ ├── Chart.yaml
│ ├── README.md
│ ├── README_CONFIG.md.gotmpl
│ ├── templates
│ │ ├── NOTES.txt
│ │ └── common.yaml
│ └── values.yaml
│ ├── emby
│ ├── .helmignore
│ ├── Chart.yaml
│ ├── README.md
│ ├── README_CONFIG.md.gotmpl
│ ├── templates
│ │ ├── NOTES.txt
│ │ └── common.yaml
│ └── values.yaml
│ ├── error-pages
│ ├── .helmignore
│ ├── Chart.yaml
│ ├── README.md
│ ├── README_CONFIG.md.gotmpl
│ ├── templates
│ │ ├── NOTES.txt
│ │ └── common.yaml
│ └── values.yaml
│ ├── esphome
│ ├── .helmignore
│ ├── Chart.yaml
│ ├── README.md
│ ├── README_CONFIG.md.gotmpl
│ ├── ci
│ │ └── ct-values.yaml
│ ├── templates
│ │ ├── NOTES.txt
│ │ └── common.yaml
│ └── values.yaml
│ ├── facebox
│ ├── .helmignore
│ ├── Chart.yaml
│ ├── README.md
│ ├── README_CONFIG.md.gotmpl
│ ├── templates
│ │ ├── NOTES.txt
│ │ └── common.yaml
│ └── values.yaml
│ ├── factorio
│ ├── .helmignore
│ ├── Chart.yaml
│ ├── README.md
│ ├── README_CONFIG.md.gotmpl
│ ├── templates
│ │ ├── NOTES.txt
│ │ ├── common.yaml
│ │ └── configmap.yaml
│ └── values.yaml
│ ├── filebrowser
│ ├── .helmignore
│ ├── Chart.yaml
│ ├── README.md
│ ├── README_CONFIG.md.gotmpl
│ ├── templates
│ │ ├── NOTES.txt
│ │ ├── common.yaml
│ │ └── configmap.yaml
│ └── values.yaml
│ ├── firefly-iii
│ ├── .helmignore
│ ├── Chart.yaml
│ ├── README.md
│ ├── README_CONFIG.md.gotmpl
│ ├── templates
│ │ ├── NOTES.txt
│ │ ├── common.tpl
│ │ ├── importer.yaml
│ │ └── recurring-cron.yaml
│ └── values.yaml
│ ├── flaresolverr
│ ├── .helmignore
│ ├── Chart.yaml
│ ├── README.md
│ ├── README_CONFIG.md.gotmpl
│ ├── templates
│ │ ├── NOTES.txt
│ │ └── common.yaml
│ └── values.yaml
│ ├── flood
│ ├── .helmignore
│ ├── Chart.yaml
│ ├── README.md
│ ├── README_CONFIG.md.gotmpl
│ ├── ci
│ │ └── ct-values.yaml
│ ├── templates
│ │ ├── NOTES.txt
│ │ └── common.yaml
│ └── values.yaml
│ ├── focalboard
│ ├── .helmignore
│ ├── Chart.yaml
│ ├── README.md
│ ├── README_CONFIG.md.gotmpl
│ ├── templates
│ │ ├── NOTES.txt
│ │ ├── common.yaml
│ │ └── configmap.yaml
│ └── values.yaml
│ ├── foundryvtt
│ ├── .helmignore
│ ├── Chart.yaml
│ ├── README.md
│ ├── README_CONFIG.md.gotmpl
│ ├── templates
│ │ ├── NOTES.txt
│ │ └── common.yaml
│ └── values.yaml
│ ├── freshrss
│ ├── .helmignore
│ ├── Chart.yaml
│ ├── README.md
│ ├── README_CONFIG.md.gotmpl
│ ├── templates
│ │ ├── NOTES.txt
│ │ └── common.yaml
│ └── values.yaml
│ ├── frigate
│ ├── .helmignore
│ ├── Chart.yaml
│ ├── README.md
│ ├── README_CONFIG.md.gotmpl
│ ├── ci
│ │ └── ct-values.yaml
│ ├── templates
│ │ ├── NOTES.txt
│ │ └── common.yaml
│ └── values.yaml
│ ├── games-on-whales
│ ├── .helmignore
│ ├── Chart.yaml
│ ├── README.md
│ ├── README_CONFIG.md.gotmpl
│ ├── templates
│ │ ├── NOTES.txt
│ │ ├── common.yaml
│ │ └── pulse-audio-configmap.yaml
│ └── values.yaml
│ ├── gaps
│ ├── .helmignore
│ ├── Chart.yaml
│ ├── README.md
│ ├── README_CONFIG.md.gotmpl
│ ├── templates
│ │ ├── NOTES.txt
│ │ └── common.yaml
│ └── values.yaml
│ ├── gatus
│ ├── .helmignore
│ ├── Chart.yaml
│ ├── README.md
│ ├── README_CONFIG.md.gotmpl
│ ├── templates
│ │ └── common.yaml
│ └── values.yaml
│ ├── ghost
│ ├── Chart.yaml
│ ├── README.md
│ ├── README_CONFIG.md.gotmpl
│ ├── ci
│ │ └── ct-values.yaml
│ ├── templates
│ │ ├── NOTES.txt
│ │ └── common.yaml
│ └── values.yaml
│ ├── gollum
│ ├── Chart.yaml
│ ├── README.md
│ ├── README_CONFIG.md.gotmpl
│ ├── templates
│ │ ├── NOTES.txt
│ │ ├── _containers.tpl
│ │ ├── common.yaml
│ │ └── configmap.yaml
│ └── values.yaml
│ ├── gonic
│ ├── .helmignore
│ ├── Chart.yaml
│ ├── README.md
│ ├── README_CONFIG.md.gotmpl
│ ├── ci
│ │ └── ct-values.yaml
│ ├── templates
│ │ ├── NOTES.txt
│ │ └── common.yaml
│ └── values.yaml
│ ├── gotify
│ ├── .helmignore
│ ├── Chart.yaml
│ ├── README.md
│ ├── README_CONFIG.md.gotmpl
│ ├── templates
│ │ ├── NOTES.txt
│ │ └── common.yaml
│ └── values.yaml
│ ├── grocy
│ ├── .helmignore
│ ├── Chart.yaml
│ ├── README.md
│ ├── README_CONFIG.md.gotmpl
│ ├── templates
│ │ └── common.yaml
│ └── values.yaml
│ ├── haste-server
│ ├── .helmignore
│ ├── Chart.yaml
│ ├── README.md
│ ├── README_CONFIG.md.gotmpl
│ ├── templates
│ │ ├── NOTES.txt
│ │ └── common.yaml
│ └── values.yaml
│ ├── healthchecks
│ ├── .helmignore
│ ├── Chart.yaml
│ ├── README.md
│ ├── README_CONFIG.md.gotmpl
│ ├── templates
│ │ ├── NOTES.txt
│ │ └── common.yaml
│ └── values.yaml
│ ├── heimdall
│ ├── .helmignore
│ ├── Chart.yaml
│ ├── README.md
│ ├── README_CONFIG.md.gotmpl
│ ├── templates
│ │ └── common.yaml
│ └── values.yaml
│ ├── home-assistant
│ ├── .helmignore
│ ├── Chart.yaml
│ ├── README.md
│ ├── README_CONFIG.md.gotmpl
│ ├── templates
│ │ ├── NOTES.txt
│ │ ├── common.yaml
│ │ ├── prometheusrules.yaml
│ │ └── servicemonitor.yaml
│ └── values.yaml
│ ├── homebridge
│ ├── .helmignore
│ ├── Chart.yaml
│ ├── README.md
│ ├── README_CONFIG.md.gotmpl
│ ├── templates
│ │ ├── NOTES.txt
│ │ └── common.yaml
│ └── values.yaml
│ ├── homer
│ ├── .helmignore
│ ├── Chart.yaml
│ ├── README.md
│ ├── README_CONFIG.md.gotmpl
│ ├── templates
│ │ └── common.yaml
│ └── values.yaml
│ ├── hyperion-ng
│ ├── .helmignore
│ ├── Chart.yaml
│ ├── README.md
│ ├── README_CONFIG.md.gotmpl
│ ├── templates
│ │ ├── NOTES.txt
│ │ └── common.yaml
│ └── values.yaml
│ ├── icantbelieveitsnotvaletudo
│ ├── .helmignore
│ ├── Chart.yaml
│ ├── README.md
│ ├── README_CONFIG.md.gotmpl
│ ├── templates
│ │ ├── NOTES.txt
│ │ ├── common.yaml
│ │ └── configmap.yaml
│ └── values.yaml
│ ├── icinga2
│ ├── .helmignore
│ ├── Chart.yaml
│ ├── README.md
│ ├── README_CONFIG.md.gotmpl
│ ├── templates
│ │ ├── NOTES.txt
│ │ └── common.yaml
│ └── values.yaml
│ ├── ihatemoney
│ ├── .helmignore
│ ├── Chart.yaml
│ ├── README.md
│ ├── README_CONFIG.md.gotmpl
│ ├── templates
│ │ ├── NOTES.txt
│ │ └── common.yaml
│ └── values.yaml
│ ├── influxdb-exporter
│ ├── .helmignore
│ ├── Chart.yaml
│ ├── README.md
│ ├── README_CONFIG.md.gotmpl
│ ├── templates
│ │ ├── NOTES.txt
│ │ ├── common.yaml
│ │ └── servicemonitor.yaml
│ └── values.yaml
│ ├── intel-gpu-plugin
│ ├── .helmignore
│ ├── Chart.yaml
│ ├── README.md
│ ├── README_CONFIG.md.gotmpl
│ ├── templates
│ │ ├── NOTES.txt
│ │ └── common.yaml
│ └── values.yaml
│ ├── jackett
│ ├── .helmignore
│ ├── Chart.yaml
│ ├── README.md
│ ├── README_CONFIG.md.gotmpl
│ ├── templates
│ │ ├── NOTES.txt
│ │ └── common.yaml
│ └── values.yaml
│ ├── jellyfin
│ ├── .helmignore
│ ├── Chart.yaml
│ ├── README.md
│ ├── README_CONFIG.md.gotmpl
│ ├── templates
│ │ ├── NOTES.txt
│ │ └── common.yaml
│ └── values.yaml
│ ├── joplin-server
│ ├── .helmignore
│ ├── Chart.yaml
│ ├── README.md
│ ├── README_CONFIG.md.gotmpl
│ ├── templates
│ │ ├── NOTES.txt
│ │ └── common.yaml
│ └── values.yaml
│ ├── kanboard
│ ├── .helmignore
│ ├── Chart.yaml
│ ├── README.md
│ ├── README_CONFIG.md.gotmpl
│ ├── templates
│ │ ├── NOTES.txt
│ │ └── common.yaml
│ └── values.yaml
│ ├── komga
│ ├── .helmignore
│ ├── Chart.yaml
│ ├── README.md
│ ├── README_CONFIG.md.gotmpl
│ ├── templates
│ │ ├── NOTES.txt
│ │ └── common.yaml
│ └── values.yaml
│ ├── kube-ops-view
│ ├── .helmignore
│ ├── Chart.yaml
│ ├── README.md
│ ├── README_CONFIG.md.gotmpl
│ ├── templates
│ │ ├── NOTES.txt
│ │ ├── common.yaml
│ │ └── rbac.yaml
│ └── values.yaml
│ ├── lazylibrarian
│ ├── .helmignore
│ ├── Chart.yaml
│ ├── README.md
│ ├── README_CONFIG.md.gotmpl
│ ├── templates
│ │ ├── NOTES.txt
│ │ └── common.yaml
│ └── values.yaml
│ ├── leaf2mqtt
│ ├── .helmignore
│ ├── Chart.yaml
│ ├── README.md
│ ├── README_CONFIG.md.gotmpl
│ ├── templates
│ │ ├── NOTES.txt
│ │ └── common.yaml
│ └── values.yaml
│ ├── librespeed
│ ├── .helmignore
│ ├── Chart.yaml
│ ├── README.md
│ ├── README_CONFIG.md.gotmpl
│ ├── ci
│ │ └── ct-values.yaml
│ ├── templates
│ │ ├── NOTES.txt
│ │ └── common.yaml
│ └── values.yaml
│ ├── lidarr
│ ├── .helmignore
│ ├── Chart.yaml
│ ├── README.md
│ ├── README_CONFIG.md.gotmpl
│ ├── ci
│ │ └── ct-exportarr-values.yaml
│ ├── templates
│ │ ├── NOTES.txt
│ │ ├── common.yaml
│ │ ├── prometheusrules.yaml
│ │ └── servicemonitor.yaml
│ └── values.yaml
│ ├── littlelink-server
│ ├── .helmignore
│ ├── Chart.yaml
│ ├── README.md
│ ├── README_CONFIG.md.gotmpl
│ ├── templates
│ │ ├── NOTES.txt
│ │ └── common.yaml
│ └── values.yaml
│ ├── lychee
│ ├── .helmignore
│ ├── Chart.yaml
│ ├── README.md
│ ├── README_CONFIG.md.gotmpl
│ ├── templates
│ │ ├── NOTES.txt
│ │ └── common.yaml
│ └── values.yaml
│ ├── maddy
│ ├── .helmignore
│ ├── Chart.yaml
│ ├── README.md
│ ├── README_CONFIG.md.gotmpl
│ ├── ci
│ │ └── ct-values.yaml
│ ├── files
│ │ ├── maddy.conf
│ │ └── smtp_rules
│ │ │ └── default.conf
│ ├── templates
│ │ ├── NOTES.txt
│ │ └── common.yaml
│ └── values.yaml
│ ├── magic-mirror
│ ├── .helmignore
│ ├── Chart.yaml
│ ├── README.md
│ ├── README_CONFIG.md.gotmpl
│ ├── templates
│ │ ├── NOTES.txt
│ │ ├── common.yaml
│ │ └── configmap.yaml
│ └── values.yaml
│ ├── mealie
│ ├── .helmignore
│ ├── Chart.yaml
│ ├── README.md
│ ├── README_CONFIG.md.gotmpl
│ ├── templates
│ │ └── common.yaml
│ └── values.yaml
│ ├── miniflux
│ ├── .helmignore
│ ├── Chart.yaml
│ ├── README.md
│ ├── README_CONFIG.md.gotmpl
│ ├── templates
│ │ ├── NOTES.txt
│ │ └── common.yaml
│ └── values.yaml
│ ├── minio-console
│ ├── .helmignore
│ ├── Chart.yaml
│ ├── README.md
│ ├── README_CONFIG.md.gotmpl
│ ├── templates
│ │ ├── NOTES.txt
│ │ └── common.yaml
│ └── values.yaml
│ ├── mlflow
│ ├── .helmignore
│ ├── Chart.yaml
│ ├── README.md
│ ├── README_CONFIG.md.gotmpl
│ ├── templates
│ │ ├── NOTES.txt
│ │ └── common.yaml
│ └── values.yaml
│ ├── modem-stats
│ ├── .helmignore
│ ├── Chart.yaml
│ ├── README.md
│ ├── README_CONFIG.md.gotmpl
│ ├── templates
│ │ ├── NOTES.txt
│ │ ├── common.yaml
│ │ └── configmap.yaml
│ └── values.yaml
│ ├── monica
│ ├── .helmignore
│ ├── Chart.yaml
│ ├── README.md
│ ├── README_CONFIG.md.gotmpl
│ ├── ci
│ │ └── ct-values.yaml
│ ├── templates
│ │ ├── NOTES.txt
│ │ └── common.yaml
│ └── values.yaml
│ ├── mosquitto
│ ├── .helmignore
│ ├── Chart.yaml
│ ├── README.md
│ ├── README_CONFIG.md.gotmpl
│ ├── templates
│ │ ├── NOTES.txt
│ │ ├── common.yaml
│ │ └── configmap.yaml
│ └── values.yaml
│ ├── mqtt-exporter
│ ├── .helmignore
│ ├── Chart.yaml
│ ├── README.md
│ ├── README_CONFIG.md.gotmpl
│ ├── ci
│ │ └── ct-values.yaml
│ ├── templates
│ │ ├── NOTES.txt
│ │ ├── common.yaml
│ │ └── servicemonitor.yaml
│ └── values.yaml
│ ├── multus
│ ├── .helmignore
│ ├── Chart.yaml
│ ├── README.md
│ ├── README_CONFIG.md.gotmpl
│ ├── crds
│ │ └── crd.yaml
│ ├── templates
│ │ ├── ClusterRole.yaml
│ │ ├── ClusterRoleBinding.yaml
│ │ ├── NOTES.txt
│ │ ├── common.yaml
│ │ ├── tests
│ │ │ ├── network.yaml
│ │ │ └── pod-test.yaml
│ │ └── uninstallJob.yaml
│ └── values.yaml
│ ├── mylar
│ ├── .helmignore
│ ├── Chart.yaml
│ ├── README.md
│ ├── README_CONFIG.md.gotmpl
│ ├── templates
│ │ ├── NOTES.txt
│ │ └── common.yaml
│ └── values.yaml
│ ├── navidrome
│ ├── .helmignore
│ ├── Chart.yaml
│ ├── README.md
│ ├── README_CONFIG.md.gotmpl
│ ├── templates
│ │ ├── NOTES.txt
│ │ └── common.yaml
│ └── values.yaml
│ ├── neolink
│ ├── .helmignore
│ ├── Chart.yaml
│ ├── README.md
│ ├── README_CONFIG.md.gotmpl
│ ├── templates
│ │ ├── NOTES.txt
│ │ ├── common.yaml
│ │ └── configmap.yaml
│ └── values.yaml
│ ├── network-ups-tools
│ ├── .helmignore
│ ├── Chart.yaml
│ ├── README.md
│ ├── README_CONFIG.md.gotmpl
│ ├── ci
│ │ └── ct-values.yaml
│ ├── templates
│ │ ├── NOTES.txt
│ │ ├── common.yaml
│ │ ├── configmap.yaml
│ │ ├── prometheusrules.yaml
│ │ └── servicemonitor.yaml
│ └── values.yaml
│ ├── nginx-php
│ ├── .helmignore
│ ├── Chart.yaml
│ ├── README.md
│ ├── README_CONFIG.md.gotmpl
│ ├── ci
│ │ └── ct-values.yaml
│ ├── templates
│ │ ├── NOTES.txt
│ │ ├── common.yaml
│ │ └── configmap.yaml
│ └── values.yaml
│ ├── nightscout
│ ├── .helmignore
│ ├── Chart.yaml
│ ├── README.md
│ ├── README_CONFIG.md.gotmpl
│ ├── templates
│ │ ├── NOTES.txt
│ │ └── common.yaml
│ └── values.yaml
│ ├── nitter
│ ├── .helmignore
│ ├── Chart.yaml
│ ├── README.md
│ ├── README_CONFIG.md.gotmpl
│ ├── templates
│ │ ├── NOTES.txt
│ │ ├── common.yaml
│ │ └── configmap.yaml
│ └── values.yaml
│ ├── node-red
│ ├── .helmignore
│ ├── Chart.yaml
│ ├── README.md
│ ├── README_CONFIG.md.gotmpl
│ ├── templates
│ │ ├── NOTES.txt
│ │ └── common.yaml
│ └── values.yaml
│ ├── ntfy
│ ├── .helmignore
│ ├── Chart.yaml
│ ├── README.md
│ ├── README_CONFIG.md.gotmpl
│ ├── templates
│ │ ├── NOTES.txt
│ │ └── common.yaml
│ └── values.yaml
│ ├── nullserv
│ ├── .helmignore
│ ├── Chart.yaml
│ ├── README.md
│ ├── README_CONFIG.md.gotmpl
│ ├── templates
│ │ ├── NOTES.txt
│ │ └── common.yaml
│ └── values.yaml
│ ├── nzbget
│ ├── .helmignore
│ ├── Chart.yaml
│ ├── README.md
│ ├── README_CONFIG.md.gotmpl
│ ├── templates
│ │ ├── NOTES.txt
│ │ └── common.yaml
│ └── values.yaml
│ ├── nzbhydra2
│ ├── .helmignore
│ ├── Chart.yaml
│ ├── README.md
│ ├── README_CONFIG.md.gotmpl
│ ├── templates
│ │ ├── NOTES.txt
│ │ └── common.yaml
│ └── values.yaml
│ ├── octoprint
│ ├── .helmignore
│ ├── Chart.yaml
│ ├── README.md
│ ├── README_CONFIG.md.gotmpl
│ ├── templates
│ │ ├── NOTES.txt
│ │ └── common.yaml
│ └── values.yaml
│ ├── omada-controller
│ ├── .helmignore
│ ├── Chart.yaml
│ ├── README.md
│ ├── README_CONFIG.md.gotmpl
│ ├── templates
│ │ ├── NOTES.txt
│ │ └── common.yaml
│ └── values.yaml
│ ├── ombi
│ ├── .helmignore
│ ├── Chart.yaml
│ ├── README.md
│ ├── README_CONFIG.md.gotmpl
│ ├── templates
│ │ ├── NOTES.txt
│ │ └── common.yaml
│ └── values.yaml
│ ├── onedrive
│ ├── Chart.yaml
│ ├── README.md
│ ├── README_CONFIG.md.gotmpl
│ ├── ci
│ │ └── ct-values.yaml
│ ├── templates
│ │ ├── NOTES.txt
│ │ ├── common.yaml
│ │ └── configmap.yaml
│ └── values.yaml
│ ├── openemr
│ ├── .helmignore
│ ├── Chart.yaml
│ ├── README.md
│ ├── README_CONFIG.md.gotmpl
│ ├── ci
│ │ └── ct-values.yaml
│ ├── templates
│ │ ├── NOTES.txt
│ │ └── common.yaml
│ └── values.yaml
│ ├── openkm
│ ├── .helmignore
│ ├── Chart.yaml
│ ├── README.md
│ ├── README_CONFIG.md.gotmpl
│ ├── templates
│ │ ├── NOTES.txt
│ │ └── common.yaml
│ └── values.yaml
│ ├── organizr
│ ├── .helmignore
│ ├── Chart.yaml
│ ├── README.md
│ ├── README_CONFIG.md.gotmpl
│ ├── templates
│ │ ├── NOTES.txt
│ │ └── common.yaml
│ └── values.yaml
│ ├── otel-collector
│ ├── .helmignore
│ ├── Chart.yaml
│ ├── README.md
│ ├── README_CONFIG.md.gotmpl
│ ├── templates
│ │ ├── NOTES.txt
│ │ ├── common.yaml
│ │ ├── secret.yaml
│ │ └── servicemonitor.yaml
│ └── values.yaml
│ ├── overleaf
│ ├── .helmignore
│ ├── Chart.yaml
│ ├── README.md
│ ├── README_CONFIG.md.gotmpl
│ ├── ci
│ │ └── ct-values.yaml
│ ├── templates
│ │ ├── NOTES.txt
│ │ └── common.yaml
│ └── values.yaml
│ ├── overseerr
│ ├── .helmignore
│ ├── Chart.yaml
│ ├── README.md
│ ├── README_CONFIG.md.gotmpl
│ ├── templates
│ │ ├── NOTES.txt
│ │ └── common.yaml
│ └── values.yaml
│ ├── owncast
│ ├── .helmignore
│ ├── Chart.yaml
│ ├── README.md
│ ├── README_CONFIG.md.gotmpl
│ ├── templates
│ │ ├── NOTES.txt
│ │ └── common.yaml
│ └── values.yaml
│ ├── owncloud-ocis
│ ├── .helmignore
│ ├── Chart.yaml
│ ├── README.md
│ ├── README_CONFIG.md.gotmpl
│ ├── templates
│ │ ├── NOTES.txt
│ │ └── common.yaml
│ └── values.yaml
│ ├── paperless
│ ├── .helmignore
│ ├── Chart.yaml
│ ├── README.md
│ ├── README_CONFIG.md.gotmpl
│ ├── ci
│ │ └── ct-values.yaml
│ ├── templates
│ │ ├── NOTES.txt
│ │ └── common.yaml
│ └── values.yaml
│ ├── photoprism
│ ├── .helmignore
│ ├── Chart.yaml
│ ├── README.md
│ ├── README_CONFIG.md.gotmpl
│ ├── templates
│ │ ├── NOTES.txt
│ │ └── common.yaml
│ └── values.yaml
│ ├── plex
│ ├── .helmignore
│ ├── Chart.yaml
│ ├── README.md
│ ├── README_CONFIG.md.gotmpl
│ ├── templates
│ │ ├── NOTES.txt
│ │ └── common.yaml
│ └── values.yaml
│ ├── pod-gateway
│ ├── .helmignore
│ ├── Chart.yaml
│ ├── README.md
│ ├── README_CONFIG.md.gotmpl
│ ├── templates
│ │ ├── NOTES.txt
│ │ ├── common.yaml
│ │ ├── configmap.yaml
│ │ ├── webhook-admissionregistration.yaml
│ │ ├── webhook-common.yaml
│ │ ├── webhook-deployment.yaml
│ │ ├── webhook-pki.yaml
│ │ └── webhook-service.yaml
│ └── values.yaml
│ ├── powerdns-admin
│ ├── .helmignore
│ ├── Chart.yaml
│ ├── README.md
│ ├── README_CONFIG.md.gotmpl
│ ├── templates
│ │ ├── NOTES.txt
│ │ └── common.yaml
│ └── values.yaml
│ ├── pretend-youre-xyzzy
│ ├── .helmignore
│ ├── Chart.yaml
│ ├── README.md
│ ├── README_CONFIG.md.gotmpl
│ ├── templates
│ │ ├── NOTES.txt
│ │ └── common.yaml
│ └── values.yaml
│ ├── privatebin
│ ├── .helmignore
│ ├── Chart.yaml
│ ├── README.md
│ ├── README_CONFIG.md.gotmpl
│ ├── templates
│ │ ├── NOTES.txt
│ │ ├── common.yaml
│ │ └── configmap.yaml
│ └── values.yaml
│ ├── promcord
│ ├── .helmignore
│ ├── Chart.yaml
│ ├── README.md
│ ├── README_CONFIG.md.gotmpl
│ ├── templates
│ │ ├── NOTES.txt
│ │ ├── common.yaml
│ │ ├── prometheusrules.yaml
│ │ └── servicemonitor.yaml
│ └── values.yaml
│ ├── prometheus-nut-exporter
│ ├── .helmignore
│ ├── Chart.yaml
│ ├── README.md
│ ├── README_CONFIG.md.gotmpl
│ ├── templates
│ │ ├── NOTES.txt
│ │ ├── common.yaml
│ │ ├── prometheusrules.yaml
│ │ └── servicemonitor.yaml
│ └── values.yaml
│ ├── protonmail-bridge
│ ├── .helmignore
│ ├── Chart.yaml
│ ├── README.md
│ ├── README_CONFIG.md.gotmpl
│ ├── templates
│ │ ├── NOTES.txt
│ │ └── common.yaml
│ └── values.yaml
│ ├── prowlarr
│ ├── .helmignore
│ ├── Chart.yaml
│ ├── README.md
│ ├── README_CONFIG.md.gotmpl
│ ├── templates
│ │ ├── NOTES.txt
│ │ └── common.yaml
│ └── values.yaml
│ ├── puppeteer
│ ├── .helmignore
│ ├── Chart.yaml
│ ├── README.md
│ ├── README_CONFIG.md.gotmpl
│ ├── templates
│ │ ├── NOTES.txt
│ │ └── common.yaml
│ └── values.yaml
│ ├── pyload
│ ├── .helmignore
│ ├── Chart.yaml
│ ├── README.md
│ ├── README_CONFIG.md.gotmpl
│ ├── templates
│ │ ├── NOTES.txt
│ │ └── common.yaml
│ └── values.yaml
│ ├── qbittorrent
│ ├── .helmignore
│ ├── Chart.yaml
│ ├── README.md
│ ├── README_CONFIG.md.gotmpl
│ ├── templates
│ │ ├── NOTES.txt
│ │ ├── common.yaml
│ │ ├── configmap.yaml
│ │ ├── prometheusrules.yaml
│ │ └── servicemonitor.yaml
│ └── values.yaml
│ ├── radarr
│ ├── .helmignore
│ ├── Chart.yaml
│ ├── README.md
│ ├── README_CONFIG.md.gotmpl
│ ├── ci
│ │ └── ct-exportarr-values.yaml
│ ├── templates
│ │ ├── NOTES.txt
│ │ ├── common.yaml
│ │ ├── prometheusrules.yaml
│ │ └── servicemonitor.yaml
│ └── values.yaml
│ ├── radicale
│ ├── .helmignore
│ ├── Chart.yaml
│ ├── README.md
│ ├── README_CONFIG.md.gotmpl
│ ├── ci
│ │ └── ct-values.yaml
│ ├── templates
│ │ ├── NOTES.txt
│ │ └── common.yaml
│ └── values.yaml
│ ├── readarr
│ ├── .helmignore
│ ├── Chart.yaml
│ ├── README.md
│ ├── README_CONFIG.md.gotmpl
│ ├── templates
│ │ ├── NOTES.txt
│ │ └── common.yaml
│ └── values.yaml
│ ├── recipes
│ ├── .helmignore
│ ├── Chart.yaml
│ ├── README.md
│ ├── README_CONFIG.md.gotmpl
│ ├── templates
│ │ ├── NOTES.txt
│ │ ├── common.yaml
│ │ └── configmap.yaml
│ └── values.yaml
│ ├── resilio-sync
│ ├── .helmignore
│ ├── Chart.yaml
│ ├── README.md
│ ├── README_CONFIG.md.gotmpl
│ ├── templates
│ │ ├── NOTES.txt
│ │ └── common.yaml
│ └── values.yaml
│ ├── reverse-proxy
│ ├── .helmignore
│ ├── Chart.yaml
│ ├── README.md
│ ├── README_CONFIG.md.gotmpl
│ ├── ci
│ │ └── ct-values.yaml
│ ├── templates
│ │ ├── NOTES.txt
│ │ ├── common.yaml
│ │ ├── endpoint.yaml
│ │ ├── ingress.yaml
│ │ ├── service.yaml
│ │ └── tests
│ │ │ └── test-connection.yaml
│ └── values.yaml
│ ├── rhasspy
│ ├── .helmignore
│ ├── Chart.yaml
│ ├── README.md
│ ├── README_CONFIG.md.gotmpl
│ ├── templates
│ │ ├── NOTES.txt
│ │ └── common.yaml
│ └── values.yaml
│ ├── rtorrent-flood
│ ├── .helmignore
│ ├── Chart.yaml
│ ├── README.md
│ ├── README_CONFIG.md.gotmpl
│ ├── ci
│ │ └── ct-values.yaml
│ ├── templates
│ │ ├── NOTES.txt
│ │ ├── common.yaml
│ │ └── configmap.yaml
│ └── values.yaml
│ ├── rtorrent-rutorrent
│ ├── .helmignore
│ ├── Chart.yaml
│ ├── README.md
│ ├── README_CONFIG.md.gotmpl
│ ├── templates
│ │ ├── NOTES.txt
│ │ └── common.yaml
│ └── values.yaml
│ ├── rtsp-to-web
│ ├── .helmignore
│ ├── Chart.yaml
│ ├── README.md
│ ├── README_CONFIG.md.gotmpl
│ ├── templates
│ │ ├── NOTES.txt
│ │ └── common.yaml
│ └── values.yaml
│ ├── sabnzbd
│ ├── .helmignore
│ ├── Chart.yaml
│ ├── README.md
│ ├── README_CONFIG.md.gotmpl
│ ├── templates
│ │ ├── NOTES.txt
│ │ └── common.yaml
│ └── values.yaml
│ ├── samba
│ ├── .helmignore
│ ├── Chart.yaml
│ ├── README.md
│ ├── README_CONFIG.md.gotmpl
│ ├── templates
│ │ ├── NOTES.txt
│ │ └── common.yaml
│ └── values.yaml
│ ├── satisfactory
│ ├── .helmignore
│ ├── Chart.yaml
│ ├── README.md
│ ├── README_CONFIG.md.gotmpl
│ ├── templates
│ │ ├── NOTES.txt
│ │ └── common.yaml
│ └── values.yaml
│ ├── seafile
│ ├── .helmignore
│ ├── Chart.yaml
│ ├── README.md
│ ├── README_CONFIG.md.gotmpl
│ ├── templates
│ │ ├── NOTES.txt
│ │ └── common.yaml
│ └── values.yaml
│ ├── searx
│ ├── .helmignore
│ ├── Chart.yaml
│ ├── README.md
│ ├── README_CONFIG.md.gotmpl
│ ├── ci
│ │ └── ct-values.yaml
│ ├── templates
│ │ ├── NOTES.txt
│ │ ├── common.yaml
│ │ ├── configmap.yaml
│ │ └── secrets.yaml
│ └── values.yaml
│ ├── send
│ ├── .helmignore
│ ├── Chart.yaml
│ ├── README.md
│ ├── README_CONFIG.md.gotmpl
│ ├── ci
│ │ └── ct-values.yaml
│ ├── templates
│ │ ├── NOTES.txt
│ │ └── common.yaml
│ └── values.yaml
│ ├── ser2sock
│ ├── .helmignore
│ ├── Chart.yaml
│ ├── README.md
│ ├── README_CONFIG.md.gotmpl
│ ├── templates
│ │ ├── NOTES.txt
│ │ └── common.yaml
│ └── values.yaml
│ ├── sharry
│ ├── .helmignore
│ ├── Chart.yaml
│ ├── README.md
│ ├── README_CONFIG.md.gotmpl
│ ├── templates
│ │ ├── NOTES.txt
│ │ ├── common.yaml
│ │ └── configmap.yaml
│ └── values.yaml
│ ├── shinobi
│ ├── .helmignore
│ ├── Chart.yaml
│ ├── README.md
│ ├── README_CONFIG.md.gotmpl
│ ├── templates
│ │ ├── NOTES.txt
│ │ └── common.yaml
│ └── values.yaml
│ ├── shlink
│ ├── .helmignore
│ ├── Chart.yaml
│ ├── README.md
│ ├── README_CONFIG.md.gotmpl
│ ├── templates
│ │ ├── NOTES.txt
│ │ └── common.yaml
│ └── values.yaml
│ ├── skypilot
│ ├── .gitignore
│ ├── .helmignore
│ ├── Chart.yaml
│ ├── templates
│ │ ├── NOTES.txt
│ │ ├── _helpers.tpl
│ │ ├── api-configmap.yaml
│ │ ├── api-deployment.yaml
│ │ ├── api-service.yaml
│ │ ├── auth.yaml
│ │ ├── ingress-nodeport.yaml
│ │ ├── ingress.yaml
│ │ ├── pvc.yaml
│ │ └── rbac.yaml
│ └── values.yaml
│ ├── smarter-device-manager
│ ├── .helmignore
│ ├── Chart.yaml
│ ├── README.md
│ ├── README_CONFIG.md.gotmpl
│ ├── templates
│ │ ├── common.yaml
│ │ └── configmap.yaml
│ └── values.yaml
│ ├── sonarr
│ ├── .helmignore
│ ├── Chart.yaml
│ ├── README.md
│ ├── README_CONFIG.md.gotmpl
│ ├── ci
│ │ └── ct-exportarr-values.yaml
│ ├── templates
│ │ ├── NOTES.txt
│ │ ├── common.yaml
│ │ ├── prometheusrules.yaml
│ │ └── servicemonitor.yaml
│ └── values.yaml
│ ├── speedtest-exporter
│ ├── .helmignore
│ ├── Chart.yaml
│ ├── README.md
│ ├── README_CONFIG.md.gotmpl
│ ├── templates
│ │ ├── NOTES.txt
│ │ ├── common.yaml
│ │ ├── prometheusrules.yaml
│ │ └── servicemonitor.yaml
│ └── values.yaml
│ ├── stash
│ ├── .helmignore
│ ├── Chart.yaml
│ ├── README.md
│ ├── README_CONFIG.md.gotmpl
│ ├── ci
│ │ └── ct-values.yaml
│ ├── templates
│ │ ├── NOTES.txt
│ │ └── common.yaml
│ └── values.yaml
│ ├── statping
│ ├── .helmignore
│ ├── Chart.yaml
│ ├── README.md
│ ├── README_CONFIG.md.gotmpl
│ ├── templates
│ │ ├── NOTES.txt
│ │ └── common.yaml
│ └── values.yaml
│ ├── syncthing
│ ├── .helmignore
│ ├── Chart.yaml
│ ├── README.md
│ ├── README_CONFIG.md.gotmpl
│ ├── templates
│ │ ├── NOTES.txt
│ │ └── common.yaml
│ └── values.yaml
│ ├── syslog-ng
│ ├── .helmignore
│ ├── Chart.yaml
│ ├── README.md
│ ├── README_CONFIG.md.gotmpl
│ ├── templates
│ │ ├── NOTES.txt
│ │ └── common.yaml
│ └── values.yaml
│ ├── tautulli
│ ├── .helmignore
│ ├── Chart.yaml
│ ├── README.md
│ ├── README_CONFIG.md.gotmpl
│ ├── templates
│ │ ├── NOTES.txt
│ │ └── common.yaml
│ └── values.yaml
│ ├── tdarr
│ ├── .helmignore
│ ├── Chart.yaml
│ ├── README.md
│ ├── README_CONFIG.md.gotmpl
│ ├── templates
│ │ ├── NOTES.txt
│ │ └── common.yaml
│ └── values.yaml
│ ├── teedy
│ ├── .helmignore
│ ├── Chart.yaml
│ ├── README.md
│ ├── README_CONFIG.md.gotmpl
│ ├── templates
│ │ ├── NOTES.txt
│ │ └── common.yaml
│ └── values.yaml
│ ├── teslamate
│ ├── .helmignore
│ ├── Chart.yaml
│ ├── README.md
│ ├── README_CONFIG.md.gotmpl
│ ├── ci
│ │ └── ct-values.yaml
│ ├── templates
│ │ ├── NOTES.txt
│ │ └── common.yaml
│ └── values.yaml
│ ├── thelounge
│ ├── .helmignore
│ ├── Chart.yaml
│ ├── README.md
│ ├── README_CONFIG.md.gotmpl
│ ├── ci
│ │ └── ct-values.yaml
│ ├── templates
│ │ ├── NOTES.txt
│ │ └── common.yaml
│ └── values.yaml
│ ├── theme-park
│ ├── .helmignore
│ ├── Chart.yaml
│ ├── README.md
│ ├── README_CONFIG.md.gotmpl
│ ├── templates
│ │ ├── NOTES.txt
│ │ └── common.yaml
│ └── values.yaml
│ ├── traefik-forward-auth
│ ├── .helmignore
│ ├── Chart.yaml
│ ├── README.md
│ ├── README_CONFIG.md.gotmpl
│ ├── ci
│ │ └── ct-values.yaml
│ ├── templates
│ │ ├── NOTES.txt
│ │ ├── common.yaml
│ │ ├── middleware.yaml
│ │ └── secret.yaml
│ └── values.yaml
│ ├── transmission
│ ├── .helmignore
│ ├── Chart.yaml
│ ├── README.md
│ ├── README_CONFIG.md.gotmpl
│ ├── ci
│ │ └── ct-values.yaml
│ ├── templates
│ │ ├── NOTES.txt
│ │ └── common.yaml
│ └── values.yaml
│ ├── tt-rss
│ ├── .helmignore
│ ├── Chart.yaml
│ ├── README.md
│ ├── README_CONFIG.md.gotmpl
│ ├── templates
│ │ ├── NOTES.txt
│ │ └── common.yaml
│ └── values.yaml
│ ├── tvheadend
│ ├── .helmignore
│ ├── Chart.yaml
│ ├── README.md
│ ├── README_CONFIG.md.gotmpl
│ ├── templates
│ │ ├── NOTES.txt
│ │ └── common.yaml
│ └── values.yaml
│ ├── unifi-poller
│ ├── .helmignore
│ ├── Chart.yaml
│ ├── README.md
│ ├── README_CONFIG.md.gotmpl
│ ├── templates
│ │ ├── NOTES.txt
│ │ ├── common.yaml
│ │ ├── prometheusrules.yaml
│ │ └── servicemonitor.yaml
│ └── values.yaml
│ ├── unifi
│ ├── .helmignore
│ ├── Chart.yaml
│ ├── README.md
│ ├── README_CONFIG.md.gotmpl
│ ├── ci
│ │ ├── ct-values.yaml
│ │ └── mongo-values.yaml
│ ├── templates
│ │ ├── NOTES.txt
│ │ └── common.yaml
│ └── values.yaml
│ ├── unpackerr
│ ├── .helmignore
│ ├── Chart.yaml
│ ├── README.md
│ ├── README_CONFIG.md.gotmpl
│ ├── templates
│ │ ├── NOTES.txt
│ │ └── common.yaml
│ └── values.yaml
│ ├── uptime-kuma
│ ├── .helmignore
│ ├── Chart.yaml
│ ├── README.md
│ ├── README_CONFIG.md.gotmpl
│ ├── templates
│ │ ├── NOTES.txt
│ │ └── common.yaml
│ └── values.yaml
│ ├── uptimerobot-prometheus
│ ├── .helmignore
│ ├── Chart.yaml
│ ├── README.md
│ ├── README_CONFIG.md.gotmpl
│ ├── templates
│ │ ├── NOTES.txt
│ │ ├── common.yaml
│ │ ├── prometheusrules.yaml
│ │ └── servicemonitor.yaml
│ └── values.yaml
│ ├── uptimerobot
│ ├── .helmignore
│ ├── Chart.yaml
│ ├── README.md
│ ├── README_CONFIG.md.gotmpl
│ ├── templates
│ │ ├── NOTES.txt
│ │ ├── _helpers.tpl
│ │ ├── deployment.yaml
│ │ └── secret.yaml
│ └── values.yaml
│ ├── valheim
│ ├── .helmignore
│ ├── Chart.yaml
│ ├── README.md
│ ├── README_CONFIG.md.gotmpl
│ ├── templates
│ │ ├── NOTES.txt
│ │ └── common.yaml
│ └── values.yaml
│ ├── vaultwarden
│ ├── .helmignore
│ ├── Chart.yaml
│ ├── README.md
│ ├── README_CONFIG.md.gotmpl
│ ├── ci
│ │ └── ct-values.yaml
│ ├── templates
│ │ ├── NOTES.txt
│ │ └── common.yaml
│ └── values.yaml
│ ├── vikunja
│ ├── .helmignore
│ ├── Chart.yaml
│ ├── README.md
│ ├── README_CONFIG.md.gotmpl
│ ├── templates
│ │ ├── NOTES.txt
│ │ ├── common.yaml
│ │ └── configmap.yaml
│ └── values.yaml
│ ├── wallabag
│ ├── Chart.yaml
│ ├── README.md
│ ├── README_CONFIG.md.gotmpl
│ ├── templates
│ │ ├── NOTES.txt
│ │ └── common.yaml
│ └── values.yaml
│ ├── webhook-receiver
│ ├── .helmignore
│ ├── Chart.yaml
│ ├── README.md
│ ├── README_CONFIG.md.gotmpl
│ ├── templates
│ │ ├── NOTES.txt
│ │ ├── common.yaml
│ │ └── configmap.yaml
│ └── values.yaml
│ ├── webtrees
│ ├── .helmignore
│ ├── Chart.yaml
│ ├── README.md
│ ├── README_CONFIG.md.gotmpl
│ ├── ci
│ │ └── ct-values.yaml
│ ├── templates
│ │ ├── NOTES.txt
│ │ └── common.yaml
│ └── values.yaml
│ ├── whoogle
│ ├── .helmignore
│ ├── Chart.yaml
│ ├── README.md
│ ├── README_CONFIG.md.gotmpl
│ ├── templates
│ │ ├── NOTES.txt
│ │ └── common.yaml
│ └── values.yaml
│ ├── wikijs
│ ├── .helmignore
│ ├── Chart.yaml
│ ├── README.md
│ ├── README_CONFIG.md.gotmpl
│ ├── templates
│ │ ├── NOTES.txt
│ │ └── common.yaml
│ └── values.yaml
│ ├── wireguard
│ ├── .helmignore
│ ├── Chart.yaml
│ ├── README.md
│ ├── README_CONFIG.md.gotmpl
│ ├── templates
│ │ ├── NOTES.txt
│ │ ├── common.yaml
│ │ └── secret.yaml
│ └── values.yaml
│ ├── wmbusmeters
│ ├── .helmignore
│ ├── Chart.yaml
│ ├── README.md
│ ├── README_CONFIG.md.gotmpl
│ ├── templates
│ │ ├── NOTES.txt
│ │ ├── common.yaml
│ │ └── configmap.yaml
│ └── values.yaml
│ ├── xbackbone
│ ├── .helmignore
│ ├── Chart.yaml
│ ├── README.md
│ ├── README_CONFIG.md.gotmpl
│ ├── templates
│ │ ├── NOTES.txt
│ │ └── common.yaml
│ └── values.yaml
│ ├── xbvr
│ ├── .helmignore
│ ├── Chart.yaml
│ ├── README.md
│ ├── README_CONFIG.md.gotmpl
│ ├── templates
│ │ ├── NOTES.txt
│ │ └── common.yaml
│ └── values.yaml
│ ├── xteve
│ ├── .helmignore
│ ├── Chart.yaml
│ ├── README.md
│ ├── README_CONFIG.md.gotmpl
│ ├── templates
│ │ ├── NOTES.txt
│ │ └── common.yaml
│ └── values.yaml
│ ├── youtubedl-material
│ ├── .helmignore
│ ├── Chart.yaml
│ ├── README.md
│ ├── README_CONFIG.md.gotmpl
│ ├── templates
│ │ ├── NOTES.txt
│ │ └── common.yaml
│ └── values.yaml
│ ├── zalando-postgres-cluster
│ ├── .helmignore
│ ├── CHANGELOG.md
│ ├── Chart.yaml
│ ├── README.md
│ ├── README_CONFIG.md.gotmpl
│ ├── templates
│ │ ├── backupCronjob.yaml
│ │ ├── common.yaml
│ │ ├── db.yaml
│ │ ├── persistentVolumes.yaml
│ │ ├── secret.yaml
│ │ ├── storageClass.yaml
│ │ └── tests
│ │ │ └── test-db.yaml
│ └── values.yaml
│ ├── zigbee2mqtt
│ ├── .helmignore
│ ├── Chart.yaml
│ ├── README.md
│ ├── README_CONFIG.md.gotmpl
│ ├── ci
│ │ └── ct-values.yaml
│ ├── templates
│ │ ├── NOTES.txt
│ │ ├── common.yaml
│ │ └── configmap.yaml
│ └── values.yaml
│ └── zwavejs2mqtt
│ ├── .helmignore
│ ├── Chart.yaml
│ ├── README.md
│ ├── README_CONFIG.md.gotmpl
│ ├── templates
│ ├── NOTES.txt
│ └── common.yaml
│ └── values.yaml
├── hack
├── bump-common-charts.sh
├── gen-chart-summary.sh
├── gen-helmdocsignore.sh
├── gen-helmignore.sh
└── templates
│ ├── .helmignore
│ ├── README.md.gotmpl
│ └── README_CONFIG.md.gotmpl
├── templates
└── chart
│ ├── .helmignore
│ ├── Chart.yaml
│ ├── README.md
│ ├── README_CONFIG.md.gotmpl
│ ├── templates
│ ├── NOTES.txt
│ └── common.yaml
│ └── values.yaml
└── test
├── incubator
└── .gitkeep
├── stable
└── .gitkeep
└── test_helper.rb
/.github/CODEOWNERS:
--------------------------------------------------------------------------------
1 | # https://docs.github.com/en/github/creating-cloning-and-archiving-repositories/about-code-owners
2 | * @funkypenguin
3 |
--------------------------------------------------------------------------------
/.github/ISSUE_TEMPLATE/config.yml:
--------------------------------------------------------------------------------
1 | blank_issues_enabled: false
2 | contact_links:
3 | - name: Discuss on Discord
4 | url: https://discord.gg/geek-cookbook
5 | about: Join our Discord community
6 | - name: Ask a question
7 | url: https://github.com/geek-cookbook/organization/discussions
8 | about: Please ask and answer questions here.
9 |
--------------------------------------------------------------------------------
/.github/PAUL.yaml:
--------------------------------------------------------------------------------
1 | maintainers:
2 | - funkypenguin
3 | labels: true
4 | empty_description_check:
5 | enabled: true
6 | enforced: false
7 | branch_destroyer:
8 | enabled: true
9 | protected_branches:
10 | - main
11 | - gh-pages
12 | pull_requests:
13 | automated_merge: false
14 | cats_enabled: true
15 | dogs_enabled: true
16 | allow_approval: true
17 |
--------------------------------------------------------------------------------
/.github/ct-lint.yaml:
--------------------------------------------------------------------------------
1 | remote: origin
2 | target-branch: main
3 | helm-extra-args: --timeout 600s
4 | chart-dirs:
5 | - charts/incubator
6 | - charts/stable
7 | excluded-charts:
8 | chart-repos:
9 | - bitnami=https://charts.bitnami.com/bitnami
10 | - geek-cookbook-libraries=https://library-charts.k8s-at-home.com
11 | - geek-cookbook=https://geek-cookbook.com/charts
12 | - jetstack=https://charts.jetstack.io
13 |
--------------------------------------------------------------------------------
/.github/scripts/requirements.txt:
--------------------------------------------------------------------------------
1 | GitPython==3.1.30
2 | loguru==0.6.0
3 | ruamel.yaml==0.17.21
4 | ruamel.yaml.string==0.1.0
5 | typer==0.7.0
6 |
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | # Developer dependencies
2 | .bin
3 |
4 | # IDE resources
5 | .vscode
6 | .idea
7 | .devcontainer/
8 |
9 | # Helm resources
10 | charts/**/Chart.lock
11 | charts/**/charts
12 |
13 | # Other rsources
14 | .env
15 | .envrc
16 | Gemfile.lock
17 | angel.yaml
18 |
--------------------------------------------------------------------------------
/.helmdocsignore:
--------------------------------------------------------------------------------
1 | charts/uptimerobot
2 |
--------------------------------------------------------------------------------
/.pre-commit-config.yaml:
--------------------------------------------------------------------------------
1 | # See https://pre-commit.com for more information
2 | repos:
3 | - repo: https://github.com/pre-commit/pre-commit-hooks
4 | rev: v4.0.1
5 | hooks:
6 | - id: trailing-whitespace
7 | - id: end-of-file-fixer
8 | - id: fix-byte-order-marker
9 | - id: mixed-line-ending
10 | - id: check-merge-conflict
11 | - id: check-case-conflict
12 |
13 | - repo: https://github.com/Lucas-C/pre-commit-hooks
14 | rev: v1.1.10
15 | hooks:
16 | - id: remove-crlf
17 | - id: remove-tabs
18 |
--------------------------------------------------------------------------------
/.taskfiles/Taskfile_windows.yml:
--------------------------------------------------------------------------------
1 | ---
2 | version: '3'
3 |
4 | # Todo: add windows requirements
5 |
6 | tasks:
7 | default:
8 | cmds:
9 | - task -l
10 | silent: true
11 |
--------------------------------------------------------------------------------
/.vscode/extensions.json:
--------------------------------------------------------------------------------
1 | {
2 | "recommendations": [
3 | "ms-kubernetes-tools.vscode-kubernetes-tools",
4 | "ms-vscode-remote.remote-containers",
5 | "mrmlnc.vscode-json5"
6 | ]
7 | }
8 |
--------------------------------------------------------------------------------
/Gemfile:
--------------------------------------------------------------------------------
1 | # frozen_string_literal: true
2 |
3 | source 'https://rubygems.org'
4 |
5 | group :test do
6 | gem 'm'
7 | gem 'minitest', "5.16.2"
8 | gem 'minitest-implicit-subject'
9 | gem 'minitest-reporters', "1.5.0"
10 | gem 'pry', "0.14.2"
11 | gem 'ruby-jq'
12 | end
13 |
--------------------------------------------------------------------------------
/Taskfile.yml:
--------------------------------------------------------------------------------
1 | ---
2 | version: '3'
3 |
4 | vars:
5 | GIT_ROOT:
6 | sh: git rev-parse --show-toplevel
7 |
8 | includes:
9 | deps: .taskfiles/Taskfile_{{OS}}.yml
10 | chart: .taskfiles/Taskfile_chart.yml
11 |
12 | tasks:
13 | default:
14 | cmds:
15 | - task -l
16 | silent: true
17 |
--------------------------------------------------------------------------------
/charts/incubator/.gitkeep:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/geek-cookbook/charts/8b4cb4d87ff9be0c3019948c60c32ae46e288e78/charts/incubator/.gitkeep
--------------------------------------------------------------------------------
/charts/incubator/babybuddy/README_CONFIG.md.gotmpl:
--------------------------------------------------------------------------------
1 | {{- define "custom.custom.configuration.header" -}}
2 | ## Custom configuration
3 | {{- end -}}
4 |
5 | {{- define "custom.custom.configuration" -}}
6 | {{ template "custom.custom.configuration.header" . }}
7 |
8 | N/A
9 | {{- end -}}
10 |
--------------------------------------------------------------------------------
/charts/incubator/babybuddy/templates/NOTES.txt:
--------------------------------------------------------------------------------
1 | {{- include "common.notes.defaultNotes" . -}}
2 |
--------------------------------------------------------------------------------
/charts/incubator/babybuddy/templates/common.yaml:
--------------------------------------------------------------------------------
1 | {{ include "common.all" . }}
2 |
--------------------------------------------------------------------------------
/charts/incubator/changedetection-io/README_CONFIG.md.gotmpl:
--------------------------------------------------------------------------------
1 | {{- define "custom.custom.configuration.header" -}}
2 | ## Custom configuration
3 | {{- end -}}
4 |
5 | {{- define "custom.custom.configuration" -}}
6 | {{ template "custom.custom.configuration.header" . }}
7 |
8 | N/A
9 | {{- end -}}
10 |
--------------------------------------------------------------------------------
/charts/incubator/changedetection-io/templates/NOTES.txt:
--------------------------------------------------------------------------------
1 | {{- include "common.notes.defaultNotes" . -}}
2 |
--------------------------------------------------------------------------------
/charts/incubator/changedetection-io/templates/common.yaml:
--------------------------------------------------------------------------------
1 | {{ include "common.all" . }}
2 |
--------------------------------------------------------------------------------
/charts/incubator/cryptpad/README_CONFIG.md.gotmpl:
--------------------------------------------------------------------------------
1 | {{- define "custom.custom.configuration.header" -}}
2 | ## Custom configuration
3 | {{- end -}}
4 |
5 | {{- define "custom.custom.configuration" -}}
6 | {{ template "custom.custom.configuration.header" . }}
7 |
8 | N/A
9 | {{- end -}}
10 |
--------------------------------------------------------------------------------
/charts/incubator/cryptpad/templates/NOTES.txt:
--------------------------------------------------------------------------------
1 | {{- include "common.notes.defaultNotes" . -}}
2 |
--------------------------------------------------------------------------------
/charts/incubator/dendrite/ci/ct-values.yaml:
--------------------------------------------------------------------------------
1 | ---
2 | dendrite:
3 | matrix_key_secret:
4 | create: true
5 | keyBody: |
6 | -----BEGIN MATRIX PRIVATE KEY-----
7 | Key-ID: ed25519:P8gZqV
8 |
9 | qVzy2Cwokt15RjGy8OzFSq6z0JFmI6QX/1Zw1VP73uU=
10 | -----END MATRIX PRIVATE KEY-----
11 |
--------------------------------------------------------------------------------
/charts/incubator/dendrite/ci/nats-values.yaml:
--------------------------------------------------------------------------------
1 | ---
2 | dendrite:
3 | matrix_key_secret:
4 | create: true
5 | keyBody: |
6 | -----BEGIN MATRIX PRIVATE KEY-----
7 | Key-ID: ed25519:P8gZqV
8 |
9 | qVzy2Cwokt15RjGy8OzFSq6z0JFmI6QX/1Zw1VP73uU=
10 | -----END MATRIX PRIVATE KEY-----
11 | nats:
12 | enabled: true
13 |
--------------------------------------------------------------------------------
/charts/incubator/dendrite/ci/polylith-basic-values.yaml:
--------------------------------------------------------------------------------
1 | ---
2 | dendrite:
3 | polylithEnabled: true
4 | matrix_key_secret:
5 | create: true
6 | keyBody: |
7 | -----BEGIN MATRIX PRIVATE KEY-----
8 | Key-ID: ed25519:P8gZqV
9 |
10 | qVzy2Cwokt15RjGy8OzFSq6z0JFmI6QX/1Zw1VP73uU=
11 | -----END MATRIX PRIVATE KEY-----
12 | nats:
13 | enabled: true
14 |
--------------------------------------------------------------------------------
/charts/incubator/dendrite/ci/postresql-values.yaml:
--------------------------------------------------------------------------------
1 | ---
2 | dendrite:
3 | matrix_key_secret:
4 | create: true
5 | keyBody: |
6 | -----BEGIN MATRIX PRIVATE KEY-----
7 | Key-ID: ed25519:P8gZqV
8 |
9 | qVzy2Cwokt15RjGy8OzFSq6z0JFmI6QX/1Zw1VP73uU=
10 | -----END MATRIX PRIVATE KEY-----
11 | postgresql:
12 | enabled: true
13 |
--------------------------------------------------------------------------------
/charts/incubator/dendrite/templates/NOTES.txt:
--------------------------------------------------------------------------------
1 | {{- include "common.notes.defaultNotes" . -}}
2 |
--------------------------------------------------------------------------------
/charts/incubator/dendrite/templates/_helper.tpl:
--------------------------------------------------------------------------------
1 | {{- define "dendrite.names.key" -}}
2 | {{- default (printf "%s-key" (include "common.names.fullname" .)) .Values.dendrite.matrix_key_secret.existingSecret -}}
3 | {{- end -}}
4 |
--------------------------------------------------------------------------------
/charts/incubator/dendrite/templates/matrix-key-secret.yaml:
--------------------------------------------------------------------------------
1 | {{- if .Values.dendrite.matrix_key_secret.create }}
2 | ---
3 | apiVersion: v1
4 | kind: Secret
5 | metadata:
6 | name: {{ include "dendrite.names.key" . }}
7 | stringData:
8 | {{ .Values.dendrite.matrix_key_secret.secretPath }}: | {{ .Values.dendrite.matrix_key_secret.keyBody | nindent 4 }}
9 | {{- end }}
10 |
--------------------------------------------------------------------------------
/charts/incubator/handbrake/README_CONFIG.md.gotmpl:
--------------------------------------------------------------------------------
1 | {{- define "custom.custom.configuration.header" -}}
2 | ## Custom configuration
3 | {{- end -}}
4 |
5 | {{- define "custom.custom.configuration" -}}
6 | {{ template "custom.custom.configuration.header" . }}
7 |
8 | N/A
9 | {{- end -}}
10 |
--------------------------------------------------------------------------------
/charts/incubator/handbrake/templates/NOTES.txt:
--------------------------------------------------------------------------------
1 | {{- include "common.notes.defaultNotes" . -}}
2 |
--------------------------------------------------------------------------------
/charts/incubator/handbrake/templates/common.yaml:
--------------------------------------------------------------------------------
1 | {{ include "common.all" . }}
2 |
--------------------------------------------------------------------------------
/charts/incubator/kah-common-chart/README_CONFIG.md.gotmpl:
--------------------------------------------------------------------------------
1 | {{- define "custom.custom.configuration.header" -}}
2 | ## Custom configuration
3 | {{- end -}}
4 |
5 | {{- define "custom.custom.configuration" -}}
6 | {{ template "custom.custom.configuration.header" . }}
7 |
8 | N/A
9 | {{- end -}}
10 |
--------------------------------------------------------------------------------
/charts/incubator/kah-common-chart/templates/common.yaml:
--------------------------------------------------------------------------------
1 | ---
2 | {{ include "common.all" . }}
3 |
--------------------------------------------------------------------------------
/charts/incubator/kah-common-chart/values.yaml:
--------------------------------------------------------------------------------
1 | ---
2 |
--------------------------------------------------------------------------------
/charts/incubator/lancache/README_CONFIG.md.gotmpl:
--------------------------------------------------------------------------------
1 | {{- define "custom.custom.configuration.header" -}}
2 | ## Custom configuration
3 | {{- end -}}
4 |
5 | {{- define "custom.custom.configuration" -}}
6 | {{ template "custom.custom.configuration.header" . }}
7 |
8 | N/A
9 | {{- end -}}
10 |
--------------------------------------------------------------------------------
/charts/incubator/lancache/templates/NOTES.txt:
--------------------------------------------------------------------------------
1 | {{- include "common.notes.defaultNotes" . -}}
2 |
--------------------------------------------------------------------------------
/charts/incubator/mopidy/README_CONFIG.md.gotmpl:
--------------------------------------------------------------------------------
1 | {{- define "custom.custom.configuration.header" -}}
2 | ## Custom configuration
3 | {{- end -}}
4 |
5 | {{- define "custom.custom.configuration" -}}
6 | {{ template "custom.custom.configuration.header" . }}
7 |
8 | N/A
9 | {{- end -}}
10 |
--------------------------------------------------------------------------------
/charts/incubator/mopidy/templates/NOTES.txt:
--------------------------------------------------------------------------------
1 | {{- include "common.notes.defaultNotes" . -}}
2 |
--------------------------------------------------------------------------------
/charts/incubator/mopidy/templates/configmap.yaml:
--------------------------------------------------------------------------------
1 | {{- include "common.values.setup" . -}}
2 | ---
3 | apiVersion: v1
4 | kind: ConfigMap
5 | metadata:
6 | name: {{ include "common.names.fullname" . }}-config
7 | labels:
8 | {{- include "common.labels" . | nindent 4 }}
9 | data:
10 | mopidy.conf: |
11 | {{- .Values.config | nindent 4 }}
12 |
--------------------------------------------------------------------------------
/charts/incubator/openhab/README_CONFIG.md.gotmpl:
--------------------------------------------------------------------------------
1 | {{- define "custom.custom.configuration.header" -}}
2 | ## Custom configuration
3 | {{- end -}}
4 |
5 | {{- define "custom.custom.configuration" -}}
6 | {{ template "custom.custom.configuration.header" . }}
7 |
8 | N/A
9 | {{- end -}}
10 |
--------------------------------------------------------------------------------
/charts/incubator/openhab/templates/NOTES.txt:
--------------------------------------------------------------------------------
1 | {{- include "common.notes.defaultNotes" . -}}
2 |
--------------------------------------------------------------------------------
/charts/incubator/openhab/templates/configmap.yaml:
--------------------------------------------------------------------------------
1 | {{- include "common.values.setup" . -}}
2 | ---
3 | apiVersion: v1
4 | kind: ConfigMap
5 | metadata:
6 | name: {{ include "common.names.fullname" . }}-init
7 | labels:
8 | {{- include "common.labels" . | nindent 4 }}
9 | data:
10 | enable-console-logging.sh: |
11 | echo 'Enabling console logging.'
12 | sed -i -E 's|().*|\1|' /openhab/userdata/etc/log4j2.xml
13 |
--------------------------------------------------------------------------------
/charts/incubator/scrypted/README_CONFIG.md.gotmpl:
--------------------------------------------------------------------------------
1 | {{- define "custom.custom.configuration.header" -}}
2 | ## Custom configuration
3 | {{- end -}}
4 |
5 | {{- define "custom.custom.configuration" -}}
6 | {{ template "custom.custom.configuration.header" . }}
7 |
8 | N/A
9 | {{- end -}}
10 |
--------------------------------------------------------------------------------
/charts/incubator/scrypted/templates/NOTES.txt:
--------------------------------------------------------------------------------
1 | {{- include "common.notes.defaultNotes" . -}}
2 |
--------------------------------------------------------------------------------
/charts/incubator/scrypted/templates/common.yaml:
--------------------------------------------------------------------------------
1 | {{ include "common.all" . }}
2 |
--------------------------------------------------------------------------------
/charts/incubator/sdtd/.helmignore:
--------------------------------------------------------------------------------
1 | # Patterns to ignore when building packages.
2 | # This supports shell glob matching, relative path matching, and
3 | # negation (prefixed with !). Only one pattern per line.
4 | .DS_Store
5 | # Common VCS dirs
6 | .git/
7 | .gitignore
8 | .bzr/
9 | .bzrignore
10 | .hg/
11 | .hgignore
12 | .svn/
13 | # Common backup files
14 | *.swp
15 | *.bak
16 | *.tmp
17 | *~
18 | # Various IDEs
19 | .project
20 | .idea/
21 | *.tmproj
22 | .vscode/
23 | # OWNERS file for Kubernetes
24 | OWNERS
25 | # helm-docs templates
26 | *.gotmpl
27 |
--------------------------------------------------------------------------------
/charts/incubator/sdtd/README_CONFIG.md.gotmpl:
--------------------------------------------------------------------------------
1 | {{- define "custom.custom.configuration.header" -}}
2 | ## Custom configuration
3 | {{- end -}}
4 |
5 | {{- define "custom.custom.configuration" -}}
6 | {{ template "custom.custom.configuration.header" . }}
7 |
8 | N/A
9 | {{- end -}}
10 |
--------------------------------------------------------------------------------
/charts/incubator/sdtd/templates/NOTES.txt:
--------------------------------------------------------------------------------
1 | {{- include "common.notes.defaultNotes" . -}}
2 |
--------------------------------------------------------------------------------
/charts/incubator/sdtd/templates/common.yaml:
--------------------------------------------------------------------------------
1 | {{ include "common.all" . }}
2 |
--------------------------------------------------------------------------------
/charts/incubator/signal-cli-rest-api/README_CONFIG.md.gotmpl:
--------------------------------------------------------------------------------
1 | {{- define "custom.custom.configuration.header" -}}
2 | ## Custom configuration
3 | {{- end -}}
4 |
5 | {{- define "custom.custom.configuration" -}}
6 | {{ template "custom.custom.configuration.header" . }}
7 |
8 | N/A
9 | {{- end -}}
10 |
--------------------------------------------------------------------------------
/charts/incubator/signal-cli-rest-api/templates/NOTES.txt:
--------------------------------------------------------------------------------
1 | {{- include "common.notes.defaultNotes" . -}}
2 |
--------------------------------------------------------------------------------
/charts/incubator/signal-cli-rest-api/templates/common.yaml:
--------------------------------------------------------------------------------
1 | {{ include "common.all" . }}
2 |
--------------------------------------------------------------------------------
/charts/incubator/sinusbot/README_CONFIG.md.gotmpl:
--------------------------------------------------------------------------------
1 | {{- define "custom.custom.configuration.header" -}}
2 | ## Custom configuration
3 | {{- end -}}
4 |
5 | {{- define "custom.custom.configuration" -}}
6 | {{ template "custom.custom.configuration.header" . }}
7 |
8 | N/A
9 | {{- end -}}
10 |
--------------------------------------------------------------------------------
/charts/incubator/sinusbot/templates/NOTES.txt:
--------------------------------------------------------------------------------
1 | {{- include "common.notes.defaultNotes" . -}}
2 |
--------------------------------------------------------------------------------
/charts/incubator/sinusbot/templates/common.yaml:
--------------------------------------------------------------------------------
1 | {{ include "common.all" . }}
2 |
--------------------------------------------------------------------------------
/charts/incubator/snapcast/README_CONFIG.md.gotmpl:
--------------------------------------------------------------------------------
1 | {{- define "custom.custom.configuration.header" -}}
2 | ## Custom configuration
3 | {{- end -}}
4 |
5 | {{- define "custom.custom.configuration" -}}
6 | {{ template "custom.custom.configuration.header" . }}
7 |
8 | N/A
9 | {{- end -}}
10 |
--------------------------------------------------------------------------------
/charts/incubator/snapcast/templates/NOTES.txt:
--------------------------------------------------------------------------------
1 | {{- include "common.notes.defaultNotes" . -}}
2 |
--------------------------------------------------------------------------------
/charts/incubator/snapcast/templates/configmap.yaml:
--------------------------------------------------------------------------------
1 | {{- include "common.values.setup" . -}}
2 | ---
3 | apiVersion: v1
4 | kind: ConfigMap
5 | metadata:
6 | name: {{ include "common.names.fullname" . }}-config
7 | labels:
8 | {{- include "common.labels" . | nindent 4 }}
9 | data:
10 | snapserver.conf: |
11 | {{- .Values.config | nindent 4 }}
12 |
--------------------------------------------------------------------------------
/charts/incubator/strongswan/README_CONFIG.md.gotmpl:
--------------------------------------------------------------------------------
1 | {{- define "custom.custom.configuration.header" -}}
2 | ## Custom configuration
3 | {{- end -}}
4 |
5 | {{- define "custom.custom.configuration" -}}
6 | {{ template "custom.custom.configuration.header" . }}
7 |
8 | N/A
9 | {{- end -}}
10 |
--------------------------------------------------------------------------------
/charts/incubator/strongswan/ci/ct-values.yaml:
--------------------------------------------------------------------------------
1 | env:
2 | VPN_NAME: Example VPN
3 | WIFI_SSID: Example WiFi
4 | VPN_DOMAIN: vpn.example.org
5 | VPN_P12_PASSWORD: password
6 |
--------------------------------------------------------------------------------
/charts/incubator/strongswan/templates/NOTES.txt:
--------------------------------------------------------------------------------
1 | {{- include "common.notes.defaultNotes" . -}}
2 |
--------------------------------------------------------------------------------
/charts/incubator/strongswan/templates/common.yaml:
--------------------------------------------------------------------------------
1 | {{ include "common.all" . }}
2 |
--------------------------------------------------------------------------------
/charts/incubator/teamspeak/ci/ct-values.yaml:
--------------------------------------------------------------------------------
1 | env:
2 | TS3SERVER_LICENSE: accept
3 |
--------------------------------------------------------------------------------
/charts/incubator/teamspeak/templates/NOTES.txt:
--------------------------------------------------------------------------------
1 | {{- include "common.notes.defaultNotes" . -}}
2 |
--------------------------------------------------------------------------------
/charts/incubator/teamspeak/templates/secret.yaml:
--------------------------------------------------------------------------------
1 | {{- if not .Values.env.TS3SERVER_SERVERADMIN_PASSWORD }}
2 | {{- include "common.values.setup" . -}}
3 | ---
4 | apiVersion: v1
5 | kind: Secret
6 | metadata:
7 | name: {{ include "common.names.fullname" . }}
8 | labels:
9 | {{- include "common.labels" . | nindent 4 }}
10 | type: Opaque
11 | data:
12 | serveradmin_password: {{ template "teamspeak.serveradmin-password" . }}
13 | {{- end }}
14 |
--------------------------------------------------------------------------------
/charts/incubator/torrserver/README_CONFIG.md.gotmpl:
--------------------------------------------------------------------------------
1 | {{- define "custom.custom.configuration.header" -}}
2 | ## Custom configuration
3 | {{- end -}}
4 |
5 | {{- define "custom.custom.configuration" -}}
6 | {{ template "custom.custom.configuration.header" . }}
7 |
8 | N/A
9 | {{- end -}}
10 |
--------------------------------------------------------------------------------
/charts/incubator/torrserver/templates/NOTES.txt:
--------------------------------------------------------------------------------
1 | {{- include "common.notes.defaultNotes" . -}}
2 |
--------------------------------------------------------------------------------
/charts/incubator/torrserver/templates/common.yaml:
--------------------------------------------------------------------------------
1 | {{ include "common.all" . }}
2 |
--------------------------------------------------------------------------------
/charts/incubator/warrior/README_CONFIG.md.gotmpl:
--------------------------------------------------------------------------------
1 | {{- define "custom.custom.configuration.header" -}}
2 | ## Custom configuration
3 | {{- end -}}
4 |
5 | {{- define "custom.custom.configuration" -}}
6 | {{ template "custom.custom.configuration.header" . }}
7 |
8 | N/A
9 | {{- end -}}
10 |
--------------------------------------------------------------------------------
/charts/incubator/warrior/templates/NOTES.txt:
--------------------------------------------------------------------------------
1 | {{- include "common.notes.defaultNotes" . -}}
2 |
--------------------------------------------------------------------------------
/charts/incubator/warrior/templates/common.yaml:
--------------------------------------------------------------------------------
1 | {{ include "common.all" . }}
2 |
--------------------------------------------------------------------------------
/charts/stable/adguard-home/README_CONFIG.md.gotmpl:
--------------------------------------------------------------------------------
1 | {{- define "custom.custom.configuration.header" -}}
2 | ## Custom configuration
3 | {{- end -}}
4 |
5 | {{- define "custom.custom.configuration" -}}
6 | {{ template "custom.custom.configuration.header" . }}
7 |
8 | N/A
9 | {{- end -}}
10 |
--------------------------------------------------------------------------------
/charts/stable/adguard-home/ci/ct-values.yaml:
--------------------------------------------------------------------------------
1 | persistence:
2 | config:
3 | enabled: true
4 | type: emptyDir
5 | mountPath: /opt/adguardhome/conf
6 | data:
7 | enabled: true
8 | type: emptyDir
9 | mountPath: /opt/adguardhome/work
10 |
--------------------------------------------------------------------------------
/charts/stable/adguard-home/templates/NOTES.txt:
--------------------------------------------------------------------------------
1 | {{- include "common.notes.defaultNotes" . -}}
2 |
--------------------------------------------------------------------------------
/charts/stable/adguard-home/templates/configmap.yaml:
--------------------------------------------------------------------------------
1 | {{- include "common.values.setup" . -}}
2 | ---
3 | apiVersion: v1
4 | kind: ConfigMap
5 | metadata:
6 | name: {{ template "common.names.fullname" . }}-config
7 | labels:
8 | {{- include "common.labels" . | nindent 4 }}
9 | data:
10 | AdGuardHome.yaml: |
11 | {{ .Values.config | indent 4 }}
12 |
--------------------------------------------------------------------------------
/charts/stable/airsonic/README_CONFIG.md.gotmpl:
--------------------------------------------------------------------------------
1 | {{- define "custom.custom.configuration.header" -}}
2 | ## Custom configuration
3 | {{- end -}}
4 |
5 | {{- define "custom.custom.configuration" -}}
6 | {{ template "custom.custom.configuration.header" . }}
7 |
8 | If you plan to use networked storage to store your media or config for Airsonic, (NFS, etc.) please take a look at the
9 | Fast Access option in the Airsonic settings. This will help improve the performance of the application
10 | by not constantly monitoring media folders.
11 | {{- end -}}
12 |
--------------------------------------------------------------------------------
/charts/stable/airsonic/templates/NOTES.txt:
--------------------------------------------------------------------------------
1 | {{- include "common.notes.defaultNotes" . -}}
2 |
--------------------------------------------------------------------------------
/charts/stable/airsonic/templates/common.yaml:
--------------------------------------------------------------------------------
1 | {{ include "common.all" . }}
2 |
--------------------------------------------------------------------------------
/charts/stable/alertmanager-bot/README_CONFIG.md.gotmpl:
--------------------------------------------------------------------------------
1 | {{- define "custom.custom.configuration.header" -}}
2 | ## Custom configuration
3 | {{- end -}}
4 |
5 | {{- define "custom.custom.configuration" -}}
6 | {{ template "custom.custom.configuration.header" . }}
7 |
8 | N/A
9 | {{- end -}}
10 |
--------------------------------------------------------------------------------
/charts/stable/alertmanager-bot/templates/NOTES.txt:
--------------------------------------------------------------------------------
1 | {{- include "common.notes.defaultNotes" . -}}
2 |
--------------------------------------------------------------------------------
/charts/stable/alertmanager-bot/templates/common.yaml:
--------------------------------------------------------------------------------
1 | {{ include "common.all" . }}
2 |
--------------------------------------------------------------------------------
/charts/stable/alertmanager-discord/README_CONFIG.md.gotmpl:
--------------------------------------------------------------------------------
1 | {{- define "custom.custom.configuration.header" -}}
2 | ## Custom configuration
3 | {{- end -}}
4 |
5 | {{- define "custom.custom.configuration" -}}
6 | {{ template "custom.custom.configuration.header" . }}
7 |
8 | N/A
9 | {{- end -}}
10 |
--------------------------------------------------------------------------------
/charts/stable/alertmanager-discord/templates/NOTES.txt:
--------------------------------------------------------------------------------
1 | {{- include "common.notes.defaultNotes" . -}}
2 |
--------------------------------------------------------------------------------
/charts/stable/alertmanager-discord/templates/common.yaml:
--------------------------------------------------------------------------------
1 | {{ include "common.all" . }}
2 |
--------------------------------------------------------------------------------
/charts/stable/amcrest2mqtt/README_CONFIG.md.gotmpl:
--------------------------------------------------------------------------------
1 | {{- define "custom.custom.configuration.header" -}}
2 | ## Custom configuration
3 | {{- end -}}
4 |
5 | {{- define "custom.custom.configuration" -}}
6 | {{ template "custom.custom.configuration.header" . }}
7 |
8 | N/A
9 | {{- end -}}
10 |
--------------------------------------------------------------------------------
/charts/stable/amcrest2mqtt/templates/NOTES.txt:
--------------------------------------------------------------------------------
1 | {{- include "common.notes.defaultNotes" . -}}
2 |
--------------------------------------------------------------------------------
/charts/stable/anonaddy/README_CONFIG.md.gotmpl:
--------------------------------------------------------------------------------
1 | {{- define "custom.custom.configuration.header" -}}
2 | ## Custom configuration
3 | {{- end -}}
4 |
5 | {{- define "custom.custom.configuration" -}}
6 | {{ template "custom.custom.configuration.header" . }}
7 |
8 | N/A
9 | {{- end -}}
10 |
--------------------------------------------------------------------------------
/charts/stable/anonaddy/templates/NOTES.txt:
--------------------------------------------------------------------------------
1 | {{- include "common.notes.defaultNotes" . -}}
2 |
--------------------------------------------------------------------------------
/charts/stable/anonaddy/templates/common.yaml:
--------------------------------------------------------------------------------
1 | {{ include "common.all" . }}
2 |
--------------------------------------------------------------------------------
/charts/stable/apache-musicindex/templates/NOTES.txt:
--------------------------------------------------------------------------------
1 | {{- include "common.notes.defaultNotes" . -}}
2 |
--------------------------------------------------------------------------------
/charts/stable/apache-musicindex/templates/common.yaml:
--------------------------------------------------------------------------------
1 | {{ include "common.all" . }}
2 |
--------------------------------------------------------------------------------
/charts/stable/appdaemon/README_CONFIG.md.gotmpl:
--------------------------------------------------------------------------------
1 | {{- define "custom.custom.configuration.header" -}}
2 | ## Custom configuration
3 | {{- end -}}
4 |
5 | {{- define "custom.custom.configuration" -}}
6 | {{ template "custom.custom.configuration.header" . }}
7 |
8 | N/A
9 | {{- end -}}
10 |
--------------------------------------------------------------------------------
/charts/stable/appdaemon/ci/ct-values.yaml:
--------------------------------------------------------------------------------
1 | env:
2 | TZ: "Africa/Cairo"
3 | LATITUDE: "29.9792"
4 | LONGITUDE: "31.1342"
5 | ELEVATION: "64"
6 | DASH_URL: "http://0.0.0.0:5050"
7 | ingress:
8 | main:
9 | enabled: true
10 |
--------------------------------------------------------------------------------
/charts/stable/appdaemon/templates/NOTES.txt:
--------------------------------------------------------------------------------
1 | {{- include "common.notes.defaultNotes" . -}}
2 |
--------------------------------------------------------------------------------
/charts/stable/appdaemon/templates/common.yaml:
--------------------------------------------------------------------------------
1 | {{ include "common.all" . }}
2 |
--------------------------------------------------------------------------------
/charts/stable/apprise-api/README_CONFIG.md.gotmpl:
--------------------------------------------------------------------------------
1 | {{- define "custom.custom.configuration.header" -}}
2 | ## Custom configuration
3 | {{- end -}}
4 |
5 | {{- define "custom.custom.configuration" -}}
6 | {{ template "custom.custom.configuration.header" . }}
7 |
8 | N/A
9 | {{- end -}}
10 |
--------------------------------------------------------------------------------
/charts/stable/aria2/.helmignore:
--------------------------------------------------------------------------------
1 | # Patterns to ignore when building packages.
2 | # This supports shell glob matching, relative path matching, and
3 | # negation (prefixed with !). Only one pattern per line.
4 | .DS_Store
5 | # Common VCS dirs
6 | .git/
7 | .gitignore
8 | .bzr/
9 | .bzrignore
10 | .hg/
11 | .hgignore
12 | .svn/
13 | # Common backup files
14 | *.swp
15 | *.bak
16 | *.tmp
17 | *~
18 | # Various IDEs
19 | .project
20 | .idea/
21 | *.tmproj
22 | .vscode/
23 | # OWNERS file for Kubernetes
24 | OWNERS
25 | # helm-docs templates
26 | *.gotmpl
27 |
--------------------------------------------------------------------------------
/charts/stable/aria2/README_CONFIG.md.gotmpl:
--------------------------------------------------------------------------------
1 | {{- define "custom.custom.configuration.header" -}}
2 | ## Custom configuration
3 | {{- end -}}
4 |
5 | {{- define "custom.custom.configuration" -}}
6 | {{ template "custom.custom.configuration.header" . }}
7 |
8 | N/A
9 | {{- end -}}
10 |
--------------------------------------------------------------------------------
/charts/stable/aria2/templates/NOTES.txt:
--------------------------------------------------------------------------------
1 | {{- include "common.notes.defaultNotes" . -}}
2 |
--------------------------------------------------------------------------------
/charts/stable/aria2/templates/common.yaml:
--------------------------------------------------------------------------------
1 | {{ include "common.all" . }}
2 |
--------------------------------------------------------------------------------
/charts/stable/audiobookshelf/.helmignore:
--------------------------------------------------------------------------------
1 | # Patterns to ignore when building packages.
2 | # This supports shell glob matching, relative path matching, and
3 | # negation (prefixed with !). Only one pattern per line.
4 | .DS_Store
5 | # Common VCS dirs
6 | .git/
7 | .gitignore
8 | .bzr/
9 | .bzrignore
10 | .hg/
11 | .hgignore
12 | .svn/
13 | # Common backup files
14 | *.swp
15 | *.bak
16 | *.tmp
17 | *.orig
18 | *~
19 | # Various IDEs
20 | .project
21 | .idea/
22 | *.tmproj
23 | .vscode/
24 |
--------------------------------------------------------------------------------
/charts/stable/audiobookshelf/README_CONFIG.md.gotmpl:
--------------------------------------------------------------------------------
1 | {{- define "custom.custom.configuration.header" -}}
2 | ## Custom configuration
3 | {{- end -}}
4 |
5 | {{- define "custom.custom.configuration" -}}
6 | {{ template "custom.custom.configuration.header" . }}
7 |
8 | N/A
9 | {{- end -}}
10 |
--------------------------------------------------------------------------------
/charts/stable/audiobookshelf/templates/NOTES.txt:
--------------------------------------------------------------------------------
1 | {{- include "common.notes.defaultNotes" . -}}
2 |
--------------------------------------------------------------------------------
/charts/stable/audiobookshelf/templates/common.yaml:
--------------------------------------------------------------------------------
1 | {{ include "common.all" . }}
2 |
--------------------------------------------------------------------------------
/charts/stable/autobrr/.helmignore:
--------------------------------------------------------------------------------
1 | # Patterns to ignore when building packages.
2 | # This supports shell glob matching, relative path matching, and
3 | # negation (prefixed with !). Only one pattern per line.
4 | .DS_Store
5 | # Common VCS dirs
6 | .git/
7 | .gitignore
8 | .bzr/
9 | .bzrignore
10 | .hg/
11 | .hgignore
12 | .svn/
13 | # Common backup files
14 | *.swp
15 | *.bak
16 | *.tmp
17 | *~
18 | # Various IDEs
19 | .project
20 | .idea/
21 | *.tmproj
22 | .vscode/
23 | # OWNERS file for Kubernetes
24 | OWNERS
25 | # helm-docs templates
26 | *.gotmpl
27 |
--------------------------------------------------------------------------------
/charts/stable/autobrr/README_CONFIG.md.gotmpl:
--------------------------------------------------------------------------------
1 | {{- define "custom.custom.configuration.header" -}}
2 | ## Custom configuration
3 | {{- end -}}
4 |
5 | {{- define "custom.custom.configuration" -}}
6 | {{ template "custom.custom.configuration.header" . }}
7 |
8 | N/A
9 | {{- end -}}
10 |
--------------------------------------------------------------------------------
/charts/stable/autobrr/templates/NOTES.txt:
--------------------------------------------------------------------------------
1 | {{- include "common.notes.defaultNotes" . -}}
2 |
--------------------------------------------------------------------------------
/charts/stable/autobrr/templates/configmap.yaml:
--------------------------------------------------------------------------------
1 | {{- include "common.values.setup" . -}}
2 | ---
3 | apiVersion: v1
4 | kind: ConfigMap
5 | metadata:
6 | name: {{ include "common.names.fullname" . }}-config
7 | labels:
8 | {{- include "common.labels" . | nindent 4 }}
9 | data:
10 | config.toml: |
11 | {{- .Values.config | nindent 4 }}
12 |
--------------------------------------------------------------------------------
/charts/stable/baikal/.helmignore:
--------------------------------------------------------------------------------
1 | # Patterns to ignore when building packages.
2 | # This supports shell glob matching, relative path matching, and
3 | # negation (prefixed with !). Only one pattern per line.
4 | .DS_Store
5 | # Common VCS dirs
6 | .git/
7 | .gitignore
8 | .bzr/
9 | .bzrignore
10 | .hg/
11 | .hgignore
12 | .svn/
13 | # Common backup files
14 | *.swp
15 | *.bak
16 | *.tmp
17 | *~
18 | # Various IDEs
19 | .project
20 | .idea/
21 | *.tmproj
22 | .vscode/
23 | # OWNERS file for Kubernetes
24 | OWNERS
25 | # helm-docs templates
26 | *.gotmpl
27 |
--------------------------------------------------------------------------------
/charts/stable/baikal/README_CONFIG.md.gotmpl:
--------------------------------------------------------------------------------
1 | {{- define "custom.custom.configuration.header" -}}
2 | ## Custom configuration
3 | {{- end -}}
4 |
5 | {{- define "custom.custom.configuration" -}}
6 | {{ template "custom.custom.configuration.header" . }}
7 |
8 | N/A
9 | {{- end -}}
10 |
--------------------------------------------------------------------------------
/charts/stable/baikal/templates/NOTES.txt:
--------------------------------------------------------------------------------
1 | {{- include "common.notes.defaultNotes" . -}}
2 |
--------------------------------------------------------------------------------
/charts/stable/baikal/templates/common.yaml:
--------------------------------------------------------------------------------
1 | {{ include "common.all" . }}
2 |
--------------------------------------------------------------------------------
/charts/stable/bazarr/.helmignore:
--------------------------------------------------------------------------------
1 | # Patterns to ignore when building packages.
2 | # This supports shell glob matching, relative path matching, and
3 | # negation (prefixed with !). Only one pattern per line.
4 | .DS_Store
5 | # Common VCS dirs
6 | .git/
7 | .gitignore
8 | .bzr/
9 | .bzrignore
10 | .hg/
11 | .hgignore
12 | .svn/
13 | # Common backup files
14 | *.swp
15 | *.bak
16 | *.tmp
17 | *~
18 | # Various IDEs
19 | .project
20 | .idea/
21 | *.tmproj
22 | .vscode/
23 | # OWNERS file for Kubernetes
24 | OWNERS
25 | # helm-docs templates
26 | *.gotmpl
27 |
--------------------------------------------------------------------------------
/charts/stable/bazarr/README_CONFIG.md.gotmpl:
--------------------------------------------------------------------------------
1 | {{- define "custom.custom.configuration.header" -}}
2 | ## Custom configuration
3 | {{- end -}}
4 |
5 | {{- define "custom.custom.configuration" -}}
6 | {{ template "custom.custom.configuration.header" . }}
7 |
8 | N/A
9 | {{- end -}}
10 |
--------------------------------------------------------------------------------
/charts/stable/bazarr/templates/NOTES.txt:
--------------------------------------------------------------------------------
1 | {{- include "common.notes.defaultNotes" . -}}
2 |
--------------------------------------------------------------------------------
/charts/stable/bazarr/templates/common.yaml:
--------------------------------------------------------------------------------
1 | {{ include "common.all" . }}
2 |
--------------------------------------------------------------------------------
/charts/stable/beets/.helmignore:
--------------------------------------------------------------------------------
1 | # Patterns to ignore when building packages.
2 | # This supports shell glob matching, relative path matching, and
3 | # negation (prefixed with !). Only one pattern per line.
4 | .DS_Store
5 | # Common VCS dirs
6 | .git/
7 | .gitignore
8 | .bzr/
9 | .bzrignore
10 | .hg/
11 | .hgignore
12 | .svn/
13 | # Common backup files
14 | *.swp
15 | *.bak
16 | *.tmp
17 | *~
18 | # Various IDEs
19 | .project
20 | .idea/
21 | *.tmproj
22 | .vscode/
23 | # OWNERS file for Kubernetes
24 | OWNERS
25 | # helm-docs templates
26 | *.gotmpl
27 |
--------------------------------------------------------------------------------
/charts/stable/beets/README_CONFIG.md.gotmpl:
--------------------------------------------------------------------------------
1 | {{- define "custom.custom.configuration.header" -}}
2 | ## Custom configuration
3 | {{- end -}}
4 |
5 | {{- define "custom.custom.configuration" -}}
6 | {{ template "custom.custom.configuration.header" . }}
7 |
8 | N/A
9 | {{- end -}}
10 |
--------------------------------------------------------------------------------
/charts/stable/beets/templates/NOTES.txt:
--------------------------------------------------------------------------------
1 | {{- include "common.notes.defaultNotes" . -}}
2 |
--------------------------------------------------------------------------------
/charts/stable/beets/templates/common.yaml:
--------------------------------------------------------------------------------
1 | {{ include "common.all" . }}
2 |
--------------------------------------------------------------------------------
/charts/stable/blocky/.helmignore:
--------------------------------------------------------------------------------
1 | # Patterns to ignore when building packages.
2 | # This supports shell glob matching, relative path matching, and
3 | # negation (prefixed with !). Only one pattern per line.
4 | .DS_Store
5 | # Common VCS dirs
6 | .git/
7 | .gitignore
8 | .bzr/
9 | .bzrignore
10 | .hg/
11 | .hgignore
12 | .svn/
13 | # Common backup files
14 | *.swp
15 | *.bak
16 | *.tmp
17 | *~
18 | # Various IDEs
19 | .project
20 | .idea/
21 | *.tmproj
22 | .vscode/
23 | # OWNERS file for Kubernetes
24 | OWNERS
25 | # helm-docs templates
26 | *.gotmpl
27 |
--------------------------------------------------------------------------------
/charts/stable/blocky/templates/NOTES.txt:
--------------------------------------------------------------------------------
1 | {{- include "common.notes.defaultNotes" . -}}
2 |
--------------------------------------------------------------------------------
/charts/stable/blocky/templates/configmap.yaml:
--------------------------------------------------------------------------------
1 | {{- include "common.values.setup" . -}}
2 | ---
3 | apiVersion: v1
4 | kind: ConfigMap
5 | metadata:
6 | name: {{ include "common.names.fullname" . }}-config
7 | labels:
8 | {{- include "common.labels" . | nindent 4 }}
9 | data:
10 | config.yml: |
11 | {{- .Values.config | nindent 4 }}
12 |
--------------------------------------------------------------------------------
/charts/stable/booksonic-air/templates/NOTES.txt:
--------------------------------------------------------------------------------
1 | {{- include "common.notes.defaultNotes" . -}}
2 |
--------------------------------------------------------------------------------
/charts/stable/booksonic-air/templates/common.yaml:
--------------------------------------------------------------------------------
1 | {{ include "common.all" . }}
2 |
--------------------------------------------------------------------------------
/charts/stable/bookstack/README_CONFIG.md.gotmpl:
--------------------------------------------------------------------------------
1 | {{- define "custom.custom.configuration.header" -}}
2 | ## Custom configuration
3 | {{- end -}}
4 |
5 | {{- define "custom.custom.configuration" -}}
6 | {{ template "custom.custom.configuration.header" . }}
7 |
8 | N/A
9 | {{- end -}}
10 |
--------------------------------------------------------------------------------
/charts/stable/bookstack/templates/NOTES.txt:
--------------------------------------------------------------------------------
1 | {{- include "common.notes.defaultNotes" . -}}
2 |
--------------------------------------------------------------------------------
/charts/stable/bookstack/templates/common.yaml:
--------------------------------------------------------------------------------
1 | {{ include "common.all" . }}
2 |
--------------------------------------------------------------------------------
/charts/stable/calibre-web/README_CONFIG.md.gotmpl:
--------------------------------------------------------------------------------
1 | {{- define "custom.custom.configuration.header" -}}
2 | ## Custom configuration
3 | {{- end -}}
4 |
5 | {{- define "custom.custom.configuration" -}}
6 | {{ template "custom.custom.configuration.header" . }}
7 |
8 | N/A
9 | {{- end -}}
10 |
--------------------------------------------------------------------------------
/charts/stable/calibre-web/templates/NOTES.txt:
--------------------------------------------------------------------------------
1 | {{- include "common.notes.defaultNotes" . -}}
2 |
--------------------------------------------------------------------------------
/charts/stable/calibre-web/templates/common.yaml:
--------------------------------------------------------------------------------
1 | {{ include "common.all" . }}
2 |
--------------------------------------------------------------------------------
/charts/stable/calibre/.helmignore:
--------------------------------------------------------------------------------
1 | # Patterns to ignore when building packages.
2 | # This supports shell glob matching, relative path matching, and
3 | # negation (prefixed with !). Only one pattern per line.
4 | .DS_Store
5 | # Common VCS dirs
6 | .git/
7 | .gitignore
8 | .bzr/
9 | .bzrignore
10 | .hg/
11 | .hgignore
12 | .svn/
13 | # Common backup files
14 | *.swp
15 | *.bak
16 | *.tmp
17 | *~
18 | # Various IDEs
19 | .project
20 | .idea/
21 | *.tmproj
22 | .vscode/
23 | # OWNERS file for Kubernetes
24 | OWNERS
25 | # helm-docs templates
26 | *.gotmpl
27 |
--------------------------------------------------------------------------------
/charts/stable/calibre/README_CONFIG.md.gotmpl:
--------------------------------------------------------------------------------
1 | {{- define "custom.custom.configuration.header" -}}
2 | ## Custom configuration
3 | {{- end -}}
4 |
5 | {{- define "custom.custom.configuration" -}}
6 | {{ template "custom.custom.configuration.header" . }}
7 |
8 | N/A
9 | {{- end -}}
10 |
--------------------------------------------------------------------------------
/charts/stable/calibre/templates/NOTES.txt:
--------------------------------------------------------------------------------
1 | {{- include "common.notes.defaultNotes" . -}}
2 |
--------------------------------------------------------------------------------
/charts/stable/calibre/templates/common.yaml:
--------------------------------------------------------------------------------
1 | ---
2 |
3 | {{ include "common.all" . }}
4 |
--------------------------------------------------------------------------------
/charts/stable/comcast/.helmignore:
--------------------------------------------------------------------------------
1 | # Patterns to ignore when building packages.
2 | # This supports shell glob matching, relative path matching, and
3 | # negation (prefixed with !). Only one pattern per line.
4 | .DS_Store
5 | # Common VCS dirs
6 | .git/
7 | .gitignore
8 | .bzr/
9 | .bzrignore
10 | .hg/
11 | .hgignore
12 | .svn/
13 | # Common backup files
14 | *.swp
15 | *.bak
16 | *.tmp
17 | *~
18 | # Various IDEs
19 | .project
20 | .idea/
21 | *.tmproj
22 | # OWNERS file for Kubernetes
23 | OWNERS
--------------------------------------------------------------------------------
/charts/stable/comcast/README_CONFIG.md.gotmpl:
--------------------------------------------------------------------------------
1 | {{- define "custom.custom.configuration.header" -}}
2 | ## Custom configuration
3 | {{- end -}}
4 |
5 | {{- define "custom.custom.configuration" -}}
6 | {{ template "custom.custom.configuration.header" . }}
7 |
8 | ### InfluxDB metrics
9 | ```
10 | 'measurement': 'comcast_data_usage',
11 | 'fields': {
12 | 'used',
13 | 'total',
14 | 'unit'
15 | }
16 | ```
17 | {{- end -}}
18 |
--------------------------------------------------------------------------------
/charts/stable/comcast/templates/NOTES.txt:
--------------------------------------------------------------------------------
1 | {{- include "common.notes.defaultNotes" . -}}
2 |
--------------------------------------------------------------------------------
/charts/stable/comcast/templates/configmap.yaml:
--------------------------------------------------------------------------------
1 | {{- include "common.values.setup" . -}}
2 | ---
3 | apiVersion: v1
4 | kind: ConfigMap
5 | metadata:
6 | name: {{ include "common.names.fullname" . }}-config
7 | labels:
8 | {{- include "common.labels" . | nindent 4 }}
9 | data:
10 | config.ini: |
11 | {{- .Values.config | nindent 4 }}
12 |
--------------------------------------------------------------------------------
/charts/stable/cryptofolio/README_CONFIG.md.gotmpl:
--------------------------------------------------------------------------------
1 | {{- define "custom.custom.configuration.header" -}}
2 | ## Custom configuration
3 | {{- end -}}
4 |
5 | {{- define "custom.custom.configuration" -}}
6 | {{ template "custom.custom.configuration.header" . }}
7 |
8 | N/A
9 | {{- end -}}
10 |
--------------------------------------------------------------------------------
/charts/stable/cryptofolio/templates/NOTES.txt:
--------------------------------------------------------------------------------
1 | {{- include "common.notes.defaultNotes" . -}}
2 |
--------------------------------------------------------------------------------
/charts/stable/cryptofolio/templates/common.yaml:
--------------------------------------------------------------------------------
1 | {{ include "common.all" . }}
2 |
--------------------------------------------------------------------------------
/charts/stable/deconz/.helmignore:
--------------------------------------------------------------------------------
1 | # Patterns to ignore when building packages.
2 | # This supports shell glob matching, relative path matching, and
3 | # negation (prefixed with !). Only one pattern per line.
4 | .DS_Store
5 | # Common VCS dirs
6 | .git/
7 | .gitignore
8 | .bzr/
9 | .bzrignore
10 | .hg/
11 | .hgignore
12 | .svn/
13 | # Common backup files
14 | *.swp
15 | *.bak
16 | *.tmp
17 | *~
18 | # Various IDEs
19 | .project
20 | .idea/
21 | *.tmproj
22 | .vscode/
23 | # OWNERS file for Kubernetes
24 | OWNERS
25 | # helm-docs templates
26 | *.gotmpl
27 |
--------------------------------------------------------------------------------
/charts/stable/deconz/README_CONFIG.md.gotmpl:
--------------------------------------------------------------------------------
1 | {{- define "custom.custom.configuration.header" -}}
2 | ## Custom configuration
3 | {{- end -}}
4 |
5 | {{- define "custom.custom.configuration" -}}
6 | {{ template "custom.custom.configuration.header" . }}
7 |
8 | N/A
9 | {{- end -}}
10 |
--------------------------------------------------------------------------------
/charts/stable/deconz/templates/NOTES.txt:
--------------------------------------------------------------------------------
1 | {{- include "common.notes.defaultNotes" . -}}
2 |
--------------------------------------------------------------------------------
/charts/stable/deconz/templates/common.yaml:
--------------------------------------------------------------------------------
1 | {{ include "common.all" . }}
2 |
--------------------------------------------------------------------------------
/charts/stable/deemix/.helmignore:
--------------------------------------------------------------------------------
1 | # Patterns to ignore when building packages.
2 | # This supports shell glob matching, relative path matching, and
3 | # negation (prefixed with !). Only one pattern per line.
4 | .DS_Store
5 | # Common VCS dirs
6 | .git/
7 | .gitignore
8 | .bzr/
9 | .bzrignore
10 | .hg/
11 | .hgignore
12 | .svn/
13 | # Common backup files
14 | *.swp
15 | *.bak
16 | *.tmp
17 | *~
18 | # Various IDEs
19 | .project
20 | .idea/
21 | *.tmproj
22 | .vscode/
23 | # OWNERS file for Kubernetes
24 | OWNERS
25 | # helm-docs templates
26 | *.gotmpl
27 |
--------------------------------------------------------------------------------
/charts/stable/deemix/README_CONFIG.md.gotmpl:
--------------------------------------------------------------------------------
1 | {{- define "custom.custom.configuration.header" -}}
2 | ## Custom configuration
3 | {{- end -}}
4 |
5 | {{- define "custom.custom.configuration" -}}
6 | {{ template "custom.custom.configuration.header" . }}
7 |
8 | N/A
9 | {{- end -}}
10 |
--------------------------------------------------------------------------------
/charts/stable/deemix/templates/NOTES.txt:
--------------------------------------------------------------------------------
1 | {{- include "common.notes.defaultNotes" . -}}
2 |
--------------------------------------------------------------------------------
/charts/stable/deemix/templates/common.yaml:
--------------------------------------------------------------------------------
1 | {{ include "common.all" . }}
2 |
--------------------------------------------------------------------------------
/charts/stable/deepstack/README_CONFIG.md.gotmpl:
--------------------------------------------------------------------------------
1 | {{- define "custom.custom.configuration.header" -}}
2 | ## Custom configuration
3 | {{- end -}}
4 |
5 | {{- define "custom.custom.configuration" -}}
6 | {{ template "custom.custom.configuration.header" . }}
7 |
8 | N/A
9 | {{- end -}}
10 |
--------------------------------------------------------------------------------
/charts/stable/deepstack/templates/NOTES.txt:
--------------------------------------------------------------------------------
1 | {{- include "common.notes.defaultNotes" . -}}
2 |
--------------------------------------------------------------------------------
/charts/stable/deluge/.helmignore:
--------------------------------------------------------------------------------
1 | # Patterns to ignore when building packages.
2 | # This supports shell glob matching, relative path matching, and
3 | # negation (prefixed with !). Only one pattern per line.
4 | .DS_Store
5 | # Common VCS dirs
6 | .git/
7 | .gitignore
8 | .bzr/
9 | .bzrignore
10 | .hg/
11 | .hgignore
12 | .svn/
13 | # Common backup files
14 | *.swp
15 | *.bak
16 | *.tmp
17 | *~
18 | # Various IDEs
19 | .project
20 | .idea/
21 | *.tmproj
22 | .vscode/
23 | # OWNERS file for Kubernetes
24 | OWNERS
25 | # helm-docs templates
26 | *.gotmpl
27 |
--------------------------------------------------------------------------------
/charts/stable/deluge/README_CONFIG.md.gotmpl:
--------------------------------------------------------------------------------
1 | {{- define "custom.custom.configuration.header" -}}
2 | ## Custom configuration
3 | {{- end -}}
4 |
5 | {{- define "custom.custom.configuration" -}}
6 | {{ template "custom.custom.configuration.header" . }}
7 |
8 | The default login details (change ASAP) are:
9 |
10 | * password:deluge
11 | {{- end -}}
12 |
--------------------------------------------------------------------------------
/charts/stable/deluge/templates/NOTES.txt:
--------------------------------------------------------------------------------
1 | {{- include "common.notes.defaultNotes" . -}}
2 |
--------------------------------------------------------------------------------
/charts/stable/deluge/templates/common.yaml:
--------------------------------------------------------------------------------
1 | {{ include "common.all" . }}
2 |
--------------------------------------------------------------------------------
/charts/stable/dizquetv/README_CONFIG.md.gotmpl:
--------------------------------------------------------------------------------
1 | {{- define "custom.custom.configuration.header" -}}
2 | ## Custom configuration
3 | {{- end -}}
4 |
5 | {{- define "custom.custom.configuration" -}}
6 | {{ template "custom.custom.configuration.header" . }}
7 |
8 | N/A
9 | {{- end -}}
10 |
--------------------------------------------------------------------------------
/charts/stable/dizquetv/templates/NOTES.txt:
--------------------------------------------------------------------------------
1 | {{- include "common.notes.defaultNotes" . -}}
2 |
--------------------------------------------------------------------------------
/charts/stable/dizquetv/templates/common.yaml:
--------------------------------------------------------------------------------
1 | {{ include "common.all" . }}
2 |
--------------------------------------------------------------------------------
/charts/stable/dnsmadeeasy-webhook/.helmignore:
--------------------------------------------------------------------------------
1 | # Patterns to ignore when building packages.
2 | # This supports shell glob matching, relative path matching, and
3 | # negation (prefixed with !). Only one pattern per line.
4 | .DS_Store
5 | # Common VCS dirs
6 | .git/
7 | .gitignore
8 | .bzr/
9 | .bzrignore
10 | .hg/
11 | .hgignore
12 | .svn/
13 | # Common backup files
14 | *.swp
15 | *.bak
16 | *.tmp
17 | *~
18 | # Various IDEs
19 | .project
20 | .idea/
21 | *.tmproj
22 | .vscode/
23 | # OWNERS file for Kubernetes
24 | OWNERS
25 |
--------------------------------------------------------------------------------
/charts/stable/dnsmadeeasy-webhook/README_CONFIG.md.gotmpl:
--------------------------------------------------------------------------------
1 | {{- define "custom.custom.configuration.header" -}}
2 | ## Custom configuration
3 | {{- end -}}
4 |
5 | {{- define "custom.custom.configuration" -}}
6 | {{ template "custom.custom.configuration.header" . }}
7 |
8 | N/A
9 | {{- end -}}
10 |
--------------------------------------------------------------------------------
/charts/stable/dnsmadeeasy-webhook/ci/ct-values.yaml:
--------------------------------------------------------------------------------
1 | # Until cert-manager moves CRD in the crd folder we
2 | # cannot use cert-manager CRDs within the chart
3 | # See: https://github.com/jetstack/cert-manager/issues/3377
4 | generateCerts: false
5 |
6 | cert-manager:
7 | enabled: true
8 | installCRDs: true
9 | webhook:
10 | enabled: true
11 | extraArgs:
12 | - --dns01-recursive-nameservers=1.1.1.1:53
13 | - --dns01-recursive-nameservers-only
14 | cainjector:
15 | replicaCount: 1
16 |
--------------------------------------------------------------------------------
/charts/stable/dnsmadeeasy-webhook/templates/NOTES.txt:
--------------------------------------------------------------------------------
1 | {{- include "common.notes.defaultNotes" . -}}
2 |
--------------------------------------------------------------------------------
/charts/stable/dokuwiki/README_CONFIG.md.gotmpl:
--------------------------------------------------------------------------------
1 | {{- define "custom.custom.configuration.header" -}}
2 | ## Custom configuration
3 | {{- end -}}
4 |
5 | {{- define "custom.custom.configuration" -}}
6 | {{ template "custom.custom.configuration.header" . }}
7 |
8 | N/A
9 | {{- end -}}
10 |
--------------------------------------------------------------------------------
/charts/stable/dokuwiki/templates/NOTES.txt:
--------------------------------------------------------------------------------
1 | {{- include "common.notes.defaultNotes" . -}}
2 |
--------------------------------------------------------------------------------
/charts/stable/dokuwiki/templates/common.yaml:
--------------------------------------------------------------------------------
1 | {{ include "common.all" . }}
2 |
--------------------------------------------------------------------------------
/charts/stable/double-take/templates/NOTES.txt:
--------------------------------------------------------------------------------
1 | {{- include "common.notes.defaultNotes" . -}}
2 |
--------------------------------------------------------------------------------
/charts/stable/dsmr-reader/README_CONFIG.md.gotmpl:
--------------------------------------------------------------------------------
1 | {{- define "custom.custom.configuration.header" -}}
2 | ## Custom configuration
3 | {{- end -}}
4 |
5 | {{- define "custom.custom.configuration" -}}
6 | {{ template "custom.custom.configuration.header" . }}
7 |
8 | N/A
9 | {{- end -}}
10 |
--------------------------------------------------------------------------------
/charts/stable/dsmr-reader/ci/ct-values.yaml:
--------------------------------------------------------------------------------
1 | fullnameOverride: dsmr-reader
2 |
3 | env:
4 | DATALOGGER_MODE: receiver
5 | DJANGO_DATABASE_HOST: dsmr-reader-db
6 |
7 | postgresql:
8 | enabled: true
9 | fullnameOverride: dsmr-reader-db
10 |
--------------------------------------------------------------------------------
/charts/stable/dsmr-reader/templates/NOTES.txt:
--------------------------------------------------------------------------------
1 | {{- include "common.notes.defaultNotes" . -}}
2 |
--------------------------------------------------------------------------------
/charts/stable/dsmr-reader/templates/common.yaml:
--------------------------------------------------------------------------------
1 | {{ include "common.all" . }}
2 |
--------------------------------------------------------------------------------
/charts/stable/duplicati/templates/NOTES.txt:
--------------------------------------------------------------------------------
1 | {{- include "common.notes.defaultNotes" . -}}
2 |
--------------------------------------------------------------------------------
/charts/stable/duplicati/templates/common.yaml:
--------------------------------------------------------------------------------
1 | {{ include "common.all" . }}
2 |
--------------------------------------------------------------------------------
/charts/stable/emby/.helmignore:
--------------------------------------------------------------------------------
1 | # Patterns to ignore when building packages.
2 | # This supports shell glob matching, relative path matching, and
3 | # negation (prefixed with !). Only one pattern per line.
4 | .DS_Store
5 | # Common VCS dirs
6 | .git/
7 | .gitignore
8 | .bzr/
9 | .bzrignore
10 | .hg/
11 | .hgignore
12 | .svn/
13 | # Common backup files
14 | *.swp
15 | *.bak
16 | *.tmp
17 | *~
18 | # Various IDEs
19 | .project
20 | .idea/
21 | *.tmproj
22 | .vscode/
23 | # OWNERS file for Kubernetes
24 | OWNERS
25 | # helm-docs templates
26 | *.gotmpl
27 |
--------------------------------------------------------------------------------
/charts/stable/emby/README_CONFIG.md.gotmpl:
--------------------------------------------------------------------------------
1 | {{- define "custom.custom.configuration.header" -}}
2 | ## Custom configuration
3 | {{- end -}}
4 |
5 | {{- define "custom.custom.configuration" -}}
6 | {{ template "custom.custom.configuration.header" . }}
7 |
8 | N/A
9 | {{- end -}}
10 |
--------------------------------------------------------------------------------
/charts/stable/emby/templates/NOTES.txt:
--------------------------------------------------------------------------------
1 | {{- include "common.notes.defaultNotes" . -}}
2 |
--------------------------------------------------------------------------------
/charts/stable/emby/templates/common.yaml:
--------------------------------------------------------------------------------
1 | {{ include "common.all" . }}
2 |
--------------------------------------------------------------------------------
/charts/stable/error-pages/templates/NOTES.txt:
--------------------------------------------------------------------------------
1 | {{- include "common.notes.defaultNotes" . -}}
2 |
--------------------------------------------------------------------------------
/charts/stable/error-pages/templates/common.yaml:
--------------------------------------------------------------------------------
1 | {{ include "common.all" . }}
2 |
--------------------------------------------------------------------------------
/charts/stable/esphome/.helmignore:
--------------------------------------------------------------------------------
1 | # Patterns to ignore when building packages.
2 | # This supports shell glob matching, relative path matching, and
3 | # negation (prefixed with !). Only one pattern per line.
4 | .DS_Store
5 | # Common VCS dirs
6 | .git/
7 | .gitignore
8 | .bzr/
9 | .bzrignore
10 | .hg/
11 | .hgignore
12 | .svn/
13 | # Common backup files
14 | *.swp
15 | *.bak
16 | *.tmp
17 | *~
18 | # Various IDEs
19 | .project
20 | .idea/
21 | *.tmproj
22 | .vscode/
23 | # OWNERS file for Kubernetes
24 | OWNERS
25 | # helm-docs templates
26 | *.gotmpl
27 |
--------------------------------------------------------------------------------
/charts/stable/esphome/README_CONFIG.md.gotmpl:
--------------------------------------------------------------------------------
1 | {{- define "custom.custom.configuration.header" -}}
2 | ## Custom configuration
3 | {{- end -}}
4 |
5 | {{- define "custom.custom.configuration" -}}
6 | {{ template "custom.custom.configuration.header" . }}
7 |
8 | N/A
9 | {{- end -}}
10 |
--------------------------------------------------------------------------------
/charts/stable/esphome/ci/ct-values.yaml:
--------------------------------------------------------------------------------
1 | env:
2 | ESPHOME_DASHBOARD_USE_PING: true
3 |
--------------------------------------------------------------------------------
/charts/stable/esphome/templates/NOTES.txt:
--------------------------------------------------------------------------------
1 | {{- include "common.notes.defaultNotes" . -}}
2 |
--------------------------------------------------------------------------------
/charts/stable/esphome/templates/common.yaml:
--------------------------------------------------------------------------------
1 | {{ include "common.all" . }}
2 |
--------------------------------------------------------------------------------
/charts/stable/facebox/.helmignore:
--------------------------------------------------------------------------------
1 | # Patterns to ignore when building packages.
2 | # This supports shell glob matching, relative path matching, and
3 | # negation (prefixed with !). Only one pattern per line.
4 | .DS_Store
5 | # Common VCS dirs
6 | .git/
7 | .gitignore
8 | .bzr/
9 | .bzrignore
10 | .hg/
11 | .hgignore
12 | .svn/
13 | # Common backup files
14 | *.swp
15 | *.bak
16 | *.tmp
17 | *~
18 | # Various IDEs
19 | .project
20 | .idea/
21 | *.tmproj
22 | .vscode/
23 | # OWNERS file for Kubernetes
24 | OWNERS
25 | # helm-docs templates
26 | *.gotmpl
27 |
--------------------------------------------------------------------------------
/charts/stable/facebox/README_CONFIG.md.gotmpl:
--------------------------------------------------------------------------------
1 | {{- define "custom.custom.configuration.header" -}}
2 | ## Custom configuration
3 | {{- end -}}
4 |
5 | {{- define "custom.custom.configuration" -}}
6 | {{ template "custom.custom.configuration.header" . }}
7 |
8 | N/A
9 | {{- end -}}
10 |
--------------------------------------------------------------------------------
/charts/stable/facebox/templates/NOTES.txt:
--------------------------------------------------------------------------------
1 | {{- include "common.notes.defaultNotes" . -}}
2 |
--------------------------------------------------------------------------------
/charts/stable/facebox/templates/common.yaml:
--------------------------------------------------------------------------------
1 | {{ include "common.all" . }}
2 |
--------------------------------------------------------------------------------
/charts/stable/factorio/templates/NOTES.txt:
--------------------------------------------------------------------------------
1 | {{- include "common.notes.defaultNotes" . -}}
2 |
--------------------------------------------------------------------------------
/charts/stable/filebrowser/README_CONFIG.md.gotmpl:
--------------------------------------------------------------------------------
1 | {{- define "custom.custom.configuration.header" -}}
2 | ## Custom configuration
3 | {{- end -}}
4 |
5 | {{- define "custom.custom.configuration" -}}
6 | {{ template "custom.custom.configuration.header" . }}
7 |
8 | N/A
9 | {{- end -}}
10 |
--------------------------------------------------------------------------------
/charts/stable/filebrowser/templates/NOTES.txt:
--------------------------------------------------------------------------------
1 | {{- include "common.notes.defaultNotes" . -}}
2 |
--------------------------------------------------------------------------------
/charts/stable/filebrowser/templates/common.yaml:
--------------------------------------------------------------------------------
1 | {{/* Append the configMap volume to the volumes */}}
2 | {{- define "filebrowser.configVolume" -}}
3 | enabled: "true"
4 | mountPath: "/.filebrowser.json"
5 | subPath: ".filebrowser.json"
6 | type: "custom"
7 | volumeSpec:
8 | configMap:
9 | name: {{ include "common.names.fullname" . }}-config
10 | {{- end -}}
11 | {{- $_ := set .Values.persistence "filebrowser-config" (include "filebrowser.configVolume" . | fromYaml) -}}
12 |
13 | {{/* Render the templates */}}
14 | {{ include "common.all" . }}
15 |
--------------------------------------------------------------------------------
/charts/stable/filebrowser/templates/configmap.yaml:
--------------------------------------------------------------------------------
1 | {{- include "common.values.setup" . -}}
2 | ---
3 | apiVersion: v1
4 | kind: ConfigMap
5 | metadata:
6 | name: {{ template "common.names.fullname" . }}-config
7 | labels:
8 | {{- include "common.labels" . | nindent 4 }}
9 | data:
10 | .filebrowser.json: |
11 | {{- tpl .Values.config $ | nindent 4 }}
12 |
--------------------------------------------------------------------------------
/charts/stable/firefly-iii/README_CONFIG.md.gotmpl:
--------------------------------------------------------------------------------
1 | {{- define "custom.custom.configuration.header" -}}
2 | ## Custom configuration
3 | {{- end -}}
4 |
5 | {{- define "custom.custom.configuration" -}}
6 | {{ template "custom.custom.configuration.header" . }}
7 |
8 | N/A
9 | {{- end -}}
10 |
--------------------------------------------------------------------------------
/charts/stable/firefly-iii/templates/NOTES.txt:
--------------------------------------------------------------------------------
1 | {{- include "common.notes.defaultNotes" . -}}
2 |
--------------------------------------------------------------------------------
/charts/stable/flaresolverr/README_CONFIG.md.gotmpl:
--------------------------------------------------------------------------------
1 | {{- define "custom.custom.configuration.header" -}}
2 | ## Custom configuration
3 | {{- end -}}
4 |
5 | {{- define "custom.custom.configuration" -}}
6 | {{ template "custom.custom.configuration.header" . }}
7 |
8 | N/A
9 | {{- end -}}
10 |
--------------------------------------------------------------------------------
/charts/stable/flaresolverr/templates/NOTES.txt:
--------------------------------------------------------------------------------
1 | {{- include "common.notes.defaultNotes" . -}}
2 |
--------------------------------------------------------------------------------
/charts/stable/flaresolverr/templates/common.yaml:
--------------------------------------------------------------------------------
1 | {{ include "common.all" . }}
2 |
--------------------------------------------------------------------------------
/charts/stable/flood/.helmignore:
--------------------------------------------------------------------------------
1 | # Patterns to ignore when building packages.
2 | # This supports shell glob matching, relative path matching, and
3 | # negation (prefixed with !). Only one pattern per line.
4 | .DS_Store
5 | # Common VCS dirs
6 | .git/
7 | .gitignore
8 | .bzr/
9 | .bzrignore
10 | .hg/
11 | .hgignore
12 | .svn/
13 | # Common backup files
14 | *.swp
15 | *.bak
16 | *.tmp
17 | *~
18 | # Various IDEs
19 | .project
20 | .idea/
21 | *.tmproj
22 | .vscode/
23 | # OWNERS file for Kubernetes
24 | OWNERS
25 | # helm-docs templates
26 | *.gotmpl
27 |
--------------------------------------------------------------------------------
/charts/stable/flood/README_CONFIG.md.gotmpl:
--------------------------------------------------------------------------------
1 | {{- define "custom.custom.configuration.header" -}}
2 | ## Custom configuration
3 | {{- end -}}
4 |
5 | {{- define "custom.custom.configuration" -}}
6 | {{ template "custom.custom.configuration.header" . }}
7 |
8 | N/A
9 | {{- end -}}
10 |
--------------------------------------------------------------------------------
/charts/stable/flood/ci/ct-values.yaml:
--------------------------------------------------------------------------------
1 | persistence:
2 | data:
3 | enabled: true
4 | accessMode: ReadWriteOnce
5 | size: 1Gi
6 |
--------------------------------------------------------------------------------
/charts/stable/flood/templates/NOTES.txt:
--------------------------------------------------------------------------------
1 | {{- include "common.notes.defaultNotes" . -}}
2 |
--------------------------------------------------------------------------------
/charts/stable/flood/templates/common.yaml:
--------------------------------------------------------------------------------
1 | {{ include "common.all" . }}
2 |
--------------------------------------------------------------------------------
/charts/stable/focalboard/templates/NOTES.txt:
--------------------------------------------------------------------------------
1 | {{- include "common.notes.defaultNotes" . -}}
2 |
--------------------------------------------------------------------------------
/charts/stable/focalboard/templates/configmap.yaml:
--------------------------------------------------------------------------------
1 | {{- include "common.values.setup" . -}}
2 | ---
3 | apiVersion: v1
4 | kind: ConfigMap
5 | metadata:
6 | name: {{ include "common.names.fullname" . }}-config
7 | labels:
8 | {{- include "common.labels" . | nindent 4 }}
9 | data:
10 | config.json: |
11 | {{- .Values.config | nindent 4 }}
12 |
--------------------------------------------------------------------------------
/charts/stable/foundryvtt/README_CONFIG.md.gotmpl:
--------------------------------------------------------------------------------
1 | {{- define "custom.custom.configuration.header" -}}
2 | ## Custom configuration
3 | {{- end -}}
4 |
5 | {{- define "custom.custom.configuration" -}}
6 | {{ template "custom.custom.configuration.header" . }}
7 |
8 | N/A
9 | {{- end -}}
10 |
--------------------------------------------------------------------------------
/charts/stable/foundryvtt/templates/NOTES.txt:
--------------------------------------------------------------------------------
1 | {{- include "common.notes.defaultNotes" . -}}
2 |
--------------------------------------------------------------------------------
/charts/stable/foundryvtt/templates/common.yaml:
--------------------------------------------------------------------------------
1 | {{ include "common.all" . }}
2 |
--------------------------------------------------------------------------------
/charts/stable/freshrss/README_CONFIG.md.gotmpl:
--------------------------------------------------------------------------------
1 | {{- define "custom.custom.configuration.header" -}}
2 | ## Custom configuration
3 | {{- end -}}
4 |
5 | {{- define "custom.custom.configuration" -}}
6 | {{ template "custom.custom.configuration.header" . }}
7 |
8 | N/A
9 | {{- end -}}
10 |
--------------------------------------------------------------------------------
/charts/stable/freshrss/templates/NOTES.txt:
--------------------------------------------------------------------------------
1 | {{- include "common.notes.defaultNotes" . -}}
2 |
--------------------------------------------------------------------------------
/charts/stable/freshrss/templates/common.yaml:
--------------------------------------------------------------------------------
1 | {{ include "common.all" . }}
2 |
--------------------------------------------------------------------------------
/charts/stable/frigate/.helmignore:
--------------------------------------------------------------------------------
1 | # Patterns to ignore when building packages.
2 | # This supports shell glob matching, relative path matching, and
3 | # negation (prefixed with !). Only one pattern per line.
4 | .DS_Store
5 | # Common VCS dirs
6 | .git/
7 | .gitignore
8 | .bzr/
9 | .bzrignore
10 | .hg/
11 | .hgignore
12 | .svn/
13 | # Common backup files
14 | *.swp
15 | *.bak
16 | *.tmp
17 | *~
18 | # Various IDEs
19 | .project
20 | .idea/
21 | *.tmproj
22 | .vscode/
23 | # OWNERS file for Kubernetes
24 | OWNERS
25 | # helm-docs templates
26 | *.gotmpl
27 |
--------------------------------------------------------------------------------
/charts/stable/frigate/templates/NOTES.txt:
--------------------------------------------------------------------------------
1 | {{- include "common.notes.defaultNotes" . -}}
2 |
--------------------------------------------------------------------------------
/charts/stable/games-on-whales/templates/NOTES.txt:
--------------------------------------------------------------------------------
1 | {{- include "common.notes.defaultNotes" . -}}
2 |
--------------------------------------------------------------------------------
/charts/stable/games-on-whales/templates/pulse-audio-configmap.yaml:
--------------------------------------------------------------------------------
1 | {{- include "common.values.setup" . -}}
2 | ---
3 | apiVersion: v1
4 | kind: ConfigMap
5 | metadata:
6 | name: {{ include "common.names.fullname" . }}-pulse
7 | labels:
8 | {{- include "common.labels" . | nindent 4 }}
9 | data:
10 | {{- tpl (.Values.pulse.config | toYaml) $ | nindent 2 }}
11 |
--------------------------------------------------------------------------------
/charts/stable/gaps/.helmignore:
--------------------------------------------------------------------------------
1 | # Patterns to ignore when building packages.
2 | # This supports shell glob matching, relative path matching, and
3 | # negation (prefixed with !). Only one pattern per line.
4 | .DS_Store
5 | # Common VCS dirs
6 | .git/
7 | .gitignore
8 | .bzr/
9 | .bzrignore
10 | .hg/
11 | .hgignore
12 | .svn/
13 | # Common backup files
14 | *.swp
15 | *.bak
16 | *.tmp
17 | *~
18 | # Various IDEs
19 | .project
20 | .idea/
21 | *.tmproj
22 | .vscode/
23 | # OWNERS file for Kubernetes
24 | OWNERS
25 | # helm-docs templates
26 | *.gotmpl
27 |
--------------------------------------------------------------------------------
/charts/stable/gaps/README_CONFIG.md.gotmpl:
--------------------------------------------------------------------------------
1 | {{- define "custom.custom.configuration.header" -}}
2 | ## Custom configuration
3 | {{- end -}}
4 |
5 | {{- define "custom.custom.configuration" -}}
6 | {{ template "custom.custom.configuration.header" . }}
7 |
8 | N/A
9 | {{- end -}}
10 |
--------------------------------------------------------------------------------
/charts/stable/gaps/templates/NOTES.txt:
--------------------------------------------------------------------------------
1 | {{- include "common.notes.defaultNotes" . -}}
2 |
--------------------------------------------------------------------------------
/charts/stable/gaps/templates/common.yaml:
--------------------------------------------------------------------------------
1 | {{ include "common.all" . }}
2 |
--------------------------------------------------------------------------------
/charts/stable/gatus/.helmignore:
--------------------------------------------------------------------------------
1 | # Patterns to ignore when building packages.
2 | # This supports shell glob matching, relative path matching, and
3 | # negation (prefixed with !). Only one pattern per line.
4 | .DS_Store
5 | # Common VCS dirs
6 | .git/
7 | .gitignore
8 | .bzr/
9 | .bzrignore
10 | .hg/
11 | .hgignore
12 | .svn/
13 | # Common backup files
14 | *.swp
15 | *.bak
16 | *.tmp
17 | *~
18 | # Various IDEs
19 | .project
20 | .idea/
21 | *.tmproj
22 | .vscode/
23 | # OWNERS file for Kubernetes
24 | OWNERS
25 | # helm-docs templates
26 | *.gotmpl
27 |
--------------------------------------------------------------------------------
/charts/stable/gatus/README_CONFIG.md.gotmpl:
--------------------------------------------------------------------------------
1 | {{- define "custom.custom.configuration.header" -}}
2 | ## Custom configuration
3 | {{- end -}}
4 |
5 | {{- define "custom.custom.configuration" -}}
6 | {{ template "custom.custom.configuration.header" . }}
7 |
8 | N/A
9 | {{- end -}}
10 |
--------------------------------------------------------------------------------
/charts/stable/ghost/README_CONFIG.md.gotmpl:
--------------------------------------------------------------------------------
1 | {{- define "custom.custom.configuration.header" -}}
2 | ## Custom configuration
3 | {{- end -}}
4 |
5 | {{- define "custom.custom.configuration" -}}
6 | {{ template "custom.custom.configuration.header" . }}
7 |
8 | N/A
9 | {{- end -}}
10 |
--------------------------------------------------------------------------------
/charts/stable/ghost/ci/ct-values.yaml:
--------------------------------------------------------------------------------
1 | env:
2 | url: "http://ghost.geek-cookbook.com"
3 | database__connection__host: ghost-mariadb
4 |
5 | ingress:
6 | main:
7 | enabled: true
8 |
9 | fullnameOverride: ghost
10 |
11 | mariadb:
12 | enabled: true
13 | fullnameOverride: ghost-mariadb
14 |
--------------------------------------------------------------------------------
/charts/stable/ghost/templates/NOTES.txt:
--------------------------------------------------------------------------------
1 | {{- include "common.notes.defaultNotes" . -}}
2 |
--------------------------------------------------------------------------------
/charts/stable/gollum/README_CONFIG.md.gotmpl:
--------------------------------------------------------------------------------
1 | {{- define "custom.custom.configuration.header" -}}
2 | ## Custom configuration
3 | {{- end -}}
4 |
5 | {{- define "custom.custom.configuration" -}}
6 | {{ template "custom.custom.configuration.header" . }}
7 |
8 | N/A
9 | {{- end -}}
10 |
--------------------------------------------------------------------------------
/charts/stable/gollum/templates/NOTES.txt:
--------------------------------------------------------------------------------
1 | {{- include "common.notes.defaultNotes" . -}}
2 |
--------------------------------------------------------------------------------
/charts/stable/gollum/templates/_containers.tpl:
--------------------------------------------------------------------------------
1 | {{/* Gollum Additional Containers */}}
2 | {{- define "gollum.container.cron" -}}
3 |
4 | {{- end -}}
5 |
--------------------------------------------------------------------------------
/charts/stable/gollum/templates/configmap.yaml:
--------------------------------------------------------------------------------
1 | {{- include "common.values.setup" . -}}
2 | ---
3 | apiVersion: v1
4 | kind: ConfigMap
5 | metadata:
6 | name: {{ include "common.names.fullname" . }}
7 | data:
8 | git-sync: |
9 | #!/bin/sh
10 | cd /wiki && {{ .Values.gollum.syncCommand }}
11 | config.rb: |
12 | {{- .Values.gollum.config | nindent 4 }}
13 |
--------------------------------------------------------------------------------
/charts/stable/gonic/.helmignore:
--------------------------------------------------------------------------------
1 | # Patterns to ignore when building packages.
2 | # This supports shell glob matching, relative path matching, and
3 | # negation (prefixed with !). Only one pattern per line.
4 | .DS_Store
5 | # Common VCS dirs
6 | .git/
7 | .gitignore
8 | .bzr/
9 | .bzrignore
10 | .hg/
11 | .hgignore
12 | .svn/
13 | # Common backup files
14 | *.swp
15 | *.bak
16 | *.tmp
17 | *~
18 | # Various IDEs
19 | .project
20 | .idea/
21 | *.tmproj
22 | .vscode/
23 | # OWNERS file for Kubernetes
24 | OWNERS
25 | # helm-docs templates
26 | *.gotmpl
27 |
--------------------------------------------------------------------------------
/charts/stable/gonic/README_CONFIG.md.gotmpl:
--------------------------------------------------------------------------------
1 | {{- define "custom.custom.configuration.header" -}}
2 | ## Custom configuration
3 | {{- end -}}
4 |
5 | {{- define "custom.custom.configuration" -}}
6 | {{ template "custom.custom.configuration.header" . }}
7 |
8 | N/A
9 | {{- end -}}
10 |
--------------------------------------------------------------------------------
/charts/stable/gonic/ci/ct-values.yaml:
--------------------------------------------------------------------------------
1 | env:
2 | GONIC_MUSIC_PATH: "/music"
3 | GONIC_PODCAST_PATH: "/podcasts"
4 | GONIC_CACHE_PATH: "/cache"
5 | persistence:
6 | data:
7 | enabled: true
8 | type: emptyDir
9 | mountPath: /data
10 | podcasts:
11 | enabled: true
12 | type: emptyDir
13 | mountPath: /podcasts
14 | cache:
15 | enabled: true
16 | type: emptyDir
17 | mountPath: /cache
18 | music:
19 | enabled: true
20 | type: emptyDir
21 | mountPath: /music
22 |
--------------------------------------------------------------------------------
/charts/stable/gonic/templates/NOTES.txt:
--------------------------------------------------------------------------------
1 | {{- include "common.notes.defaultNotes" . -}}
2 |
--------------------------------------------------------------------------------
/charts/stable/gonic/templates/common.yaml:
--------------------------------------------------------------------------------
1 | {{ include "common.all" . }}
2 |
--------------------------------------------------------------------------------
/charts/stable/gotify/.helmignore:
--------------------------------------------------------------------------------
1 | # Patterns to ignore when building packages.
2 | # This supports shell glob matching, relative path matching, and
3 | # negation (prefixed with !). Only one pattern per line.
4 | .DS_Store
5 | # Common VCS dirs
6 | .git/
7 | .gitignore
8 | .bzr/
9 | .bzrignore
10 | .hg/
11 | .hgignore
12 | .svn/
13 | # Common backup files
14 | *.swp
15 | *.bak
16 | *.tmp
17 | *~
18 | # Various IDEs
19 | .project
20 | .idea/
21 | *.tmproj
22 | .vscode/
23 | # OWNERS file for Kubernetes
24 | OWNERS
25 | # helm-docs templates
26 | *.gotmpl
27 |
--------------------------------------------------------------------------------
/charts/stable/gotify/README_CONFIG.md.gotmpl:
--------------------------------------------------------------------------------
1 | {{- define "custom.custom.configuration.header" -}}
2 | ## Custom configuration
3 | {{- end -}}
4 |
5 | {{- define "custom.custom.configuration" -}}
6 | {{ template "custom.custom.configuration.header" . }}
7 |
8 | N/A
9 | {{- end -}}
10 |
--------------------------------------------------------------------------------
/charts/stable/gotify/templates/NOTES.txt:
--------------------------------------------------------------------------------
1 | {{- include "common.notes.defaultNotes" . -}}
2 |
--------------------------------------------------------------------------------
/charts/stable/gotify/templates/common.yaml:
--------------------------------------------------------------------------------
1 | {{ include "common.all" . }}
2 |
--------------------------------------------------------------------------------
/charts/stable/grocy/.helmignore:
--------------------------------------------------------------------------------
1 | # Patterns to ignore when building packages.
2 | # This supports shell glob matching, relative path matching, and
3 | # negation (prefixed with !). Only one pattern per line.
4 | .DS_Store
5 | # Common VCS dirs
6 | .git/
7 | .gitignore
8 | .bzr/
9 | .bzrignore
10 | .hg/
11 | .hgignore
12 | .svn/
13 | # Common backup files
14 | *.swp
15 | *.bak
16 | *.tmp
17 | *~
18 | # Various IDEs
19 | .project
20 | .idea/
21 | *.tmproj
22 | .vscode/
23 | # OWNERS file for Kubernetes
24 | OWNERS
25 | # helm-docs templates
26 | *.gotmpl
27 |
--------------------------------------------------------------------------------
/charts/stable/grocy/README_CONFIG.md.gotmpl:
--------------------------------------------------------------------------------
1 | {{- define "custom.custom.configuration.header" -}}
2 | ## Custom configuration
3 | {{- end -}}
4 |
5 | {{- define "custom.custom.configuration" -}}
6 | {{ template "custom.custom.configuration.header" . }}
7 |
8 | N/A
9 | {{- end -}}
10 |
--------------------------------------------------------------------------------
/charts/stable/grocy/templates/common.yaml:
--------------------------------------------------------------------------------
1 | {{ include "common.all" . }}
2 |
--------------------------------------------------------------------------------
/charts/stable/haste-server/README_CONFIG.md.gotmpl:
--------------------------------------------------------------------------------
1 | {{- define "custom.custom.configuration.header" -}}
2 | ## Custom configuration
3 | {{- end -}}
4 |
5 | {{- define "custom.custom.configuration" -}}
6 | {{ template "custom.custom.configuration.header" . }}
7 |
8 | N/A
9 | {{- end -}}
10 |
--------------------------------------------------------------------------------
/charts/stable/haste-server/templates/NOTES.txt:
--------------------------------------------------------------------------------
1 | {{- include "common.notes.defaultNotes" . -}}
2 |
--------------------------------------------------------------------------------
/charts/stable/haste-server/templates/common.yaml:
--------------------------------------------------------------------------------
1 | {{ include "common.all" . }}
2 |
--------------------------------------------------------------------------------
/charts/stable/healthchecks/.helmignore:
--------------------------------------------------------------------------------
1 | # Patterns to ignore when building packages.
2 | # This supports shell glob matching, relative path matching, and
3 | # negation (prefixed with !). Only one pattern per line.
4 | .DS_Store
5 | # Common VCS dirs
6 | .git/
7 | .gitignore
8 | .bzr/
9 | .bzrignore
10 | .hg/
11 | .hgignore
12 | .svn/
13 | # Common backup files
14 | *.swp
15 | *.bak
16 | *.tmp
17 | *~
18 | # Various IDEs
19 | .project
20 | .idea/
21 | *.tmproj
22 | .vscode/
23 | # OWNERS file for Kubernetes
24 | OWNERS
25 | # helm-docs templates
26 | *.gotmpl
--------------------------------------------------------------------------------
/charts/stable/healthchecks/README_CONFIG.md.gotmpl:
--------------------------------------------------------------------------------
1 | {{- define "custom.custom.configuration.header" -}}
2 | ## Custom configuration
3 | {{- end -}}
4 |
5 | {{- define "custom.custom.configuration" -}}
6 | {{ template "custom.custom.configuration.header" . }}
7 |
8 | N/A
9 | {{- end -}}
10 |
--------------------------------------------------------------------------------
/charts/stable/healthchecks/templates/NOTES.txt:
--------------------------------------------------------------------------------
1 | {{- include "common.notes.defaultNotes" . -}}
2 |
--------------------------------------------------------------------------------
/charts/stable/healthchecks/templates/common.yaml:
--------------------------------------------------------------------------------
1 | {{ include "common.all" . }}
2 |
--------------------------------------------------------------------------------
/charts/stable/heimdall/README_CONFIG.md.gotmpl:
--------------------------------------------------------------------------------
1 | {{- define "custom.custom.configuration.header" -}}
2 | ## Custom configuration
3 | {{- end -}}
4 |
5 | {{- define "custom.custom.configuration" -}}
6 | {{ template "custom.custom.configuration.header" . }}
7 |
8 | N/A
9 | {{- end -}}
10 |
--------------------------------------------------------------------------------
/charts/stable/heimdall/templates/common.yaml:
--------------------------------------------------------------------------------
1 | {{ include "common.all" . }}
2 |
--------------------------------------------------------------------------------
/charts/stable/home-assistant/templates/NOTES.txt:
--------------------------------------------------------------------------------
1 | {{- include "common.notes.defaultNotes" . -}}
2 |
--------------------------------------------------------------------------------
/charts/stable/home-assistant/templates/common.yaml:
--------------------------------------------------------------------------------
1 | {{ include "common.all" . }}
2 |
--------------------------------------------------------------------------------
/charts/stable/homebridge/README_CONFIG.md.gotmpl:
--------------------------------------------------------------------------------
1 | {{- define "custom.custom.configuration.header" -}}
2 | ## Custom configuration
3 | {{- end -}}
4 |
5 | {{- define "custom.custom.configuration" -}}
6 | {{ template "custom.custom.configuration.header" . }}
7 |
8 | N/A
9 | {{- end -}}
10 |
--------------------------------------------------------------------------------
/charts/stable/homebridge/templates/NOTES.txt:
--------------------------------------------------------------------------------
1 | {{- include "common.notes.defaultNotes" . -}}
2 |
--------------------------------------------------------------------------------
/charts/stable/homer/.helmignore:
--------------------------------------------------------------------------------
1 | # Patterns to ignore when building packages.
2 | # This supports shell glob matching, relative path matching, and
3 | # negation (prefixed with !). Only one pattern per line.
4 | .DS_Store
5 | # Common VCS dirs
6 | .git/
7 | .gitignore
8 | .bzr/
9 | .bzrignore
10 | .hg/
11 | .hgignore
12 | .svn/
13 | # Common backup files
14 | *.swp
15 | *.bak
16 | *.tmp
17 | *~
18 | # Various IDEs
19 | .project
20 | .idea/
21 | *.tmproj
22 | .vscode/
23 | # OWNERS file for Kubernetes
24 | OWNERS
25 | # helm-docs templates
26 | *.gotmpl
27 |
--------------------------------------------------------------------------------
/charts/stable/homer/README_CONFIG.md.gotmpl:
--------------------------------------------------------------------------------
1 | {{- define "custom.custom.configuration.header" -}}
2 | ## Custom configuration
3 | {{- end -}}
4 |
5 | {{- define "custom.custom.configuration" -}}
6 | {{ template "custom.custom.configuration.header" . }}
7 |
8 | N/A
9 | {{- end -}}
10 |
--------------------------------------------------------------------------------
/charts/stable/hyperion-ng/README_CONFIG.md.gotmpl:
--------------------------------------------------------------------------------
1 | {{- define "custom.custom.configuration.header" -}}
2 | ## Custom configuration
3 | {{- end -}}
4 |
5 | {{- define "custom.custom.configuration" -}}
6 | {{ template "custom.custom.configuration.header" . }}
7 |
8 | N/A
9 | {{- end -}}
10 |
--------------------------------------------------------------------------------
/charts/stable/hyperion-ng/templates/NOTES.txt:
--------------------------------------------------------------------------------
1 | {{- include "common.notes.defaultNotes" . -}}
2 |
--------------------------------------------------------------------------------
/charts/stable/hyperion-ng/templates/common.yaml:
--------------------------------------------------------------------------------
1 | {{ include "common.all" . }}
2 |
--------------------------------------------------------------------------------
/charts/stable/icantbelieveitsnotvaletudo/README_CONFIG.md.gotmpl:
--------------------------------------------------------------------------------
1 | {{- define "custom.custom.configuration.header" -}}
2 | ## Custom configuration
3 | {{- end -}}
4 |
5 | {{- define "custom.custom.configuration" -}}
6 | {{ template "custom.custom.configuration.header" . }}
7 |
8 | N/A
9 | {{- end -}}
10 |
--------------------------------------------------------------------------------
/charts/stable/icantbelieveitsnotvaletudo/templates/NOTES.txt:
--------------------------------------------------------------------------------
1 | {{- include "common.notes.defaultNotes" . -}}
2 |
--------------------------------------------------------------------------------
/charts/stable/icantbelieveitsnotvaletudo/templates/configmap.yaml:
--------------------------------------------------------------------------------
1 | {{- include "common.values.setup" . -}}
2 | ---
3 | apiVersion: v1
4 | kind: ConfigMap
5 | metadata:
6 | name: {{ include "common.names.fullname" . }}-settings
7 | labels:
8 | {{- include "common.labels" . | nindent 4 }}
9 | data:
10 | config.json: |
11 | {{- .Values.config | mustToPrettyJson | nindent 4 }}
12 |
--------------------------------------------------------------------------------
/charts/stable/icinga2/.helmignore:
--------------------------------------------------------------------------------
1 | # Patterns to ignore when building packages.
2 | # This supports shell glob matching, relative path matching, and
3 | # negation (prefixed with !). Only one pattern per line.
4 | .DS_Store
5 | # Common VCS dirs
6 | .git/
7 | .gitignore
8 | .bzr/
9 | .bzrignore
10 | .hg/
11 | .hgignore
12 | .svn/
13 | # Common backup files
14 | *.swp
15 | *.bak
16 | *.tmp
17 | *~
18 | # Various IDEs
19 | .project
20 | .idea/
21 | *.tmproj
22 | .vscode/
23 | # OWNERS file for Kubernetes
24 | OWNERS
25 | # helm-docs templates
26 | *.gotmpl
27 |
--------------------------------------------------------------------------------
/charts/stable/icinga2/README_CONFIG.md.gotmpl:
--------------------------------------------------------------------------------
1 | {{- define "custom.custom.configuration.header" -}}
2 | ## Custom configuration
3 | {{- end -}}
4 |
5 | {{- define "custom.custom.configuration" -}}
6 | {{ template "custom.custom.configuration.header" . }}
7 |
8 | N/A
9 | {{- end -}}
10 |
--------------------------------------------------------------------------------
/charts/stable/icinga2/templates/NOTES.txt:
--------------------------------------------------------------------------------
1 | {{- include "common.notes.defaultNotes" . -}}
2 |
--------------------------------------------------------------------------------
/charts/stable/icinga2/templates/common.yaml:
--------------------------------------------------------------------------------
1 | {{ include "common.all" . }}
2 |
--------------------------------------------------------------------------------
/charts/stable/ihatemoney/README_CONFIG.md.gotmpl:
--------------------------------------------------------------------------------
1 | {{- define "custom.custom.configuration.header" -}}
2 | ## Custom configuration
3 | {{- end -}}
4 |
5 | {{- define "custom.custom.configuration" -}}
6 | {{ template "custom.custom.configuration.header" . }}
7 |
8 | N/A
9 | {{- end -}}
10 |
--------------------------------------------------------------------------------
/charts/stable/ihatemoney/templates/NOTES.txt:
--------------------------------------------------------------------------------
1 | {{- include "common.notes.defaultNotes" . -}}
2 |
--------------------------------------------------------------------------------
/charts/stable/ihatemoney/templates/common.yaml:
--------------------------------------------------------------------------------
1 | {{ include "common.all" . }}
2 |
--------------------------------------------------------------------------------
/charts/stable/influxdb-exporter/templates/NOTES.txt:
--------------------------------------------------------------------------------
1 | {{- include "common.notes.defaultNotes" . -}}
2 |
--------------------------------------------------------------------------------
/charts/stable/influxdb-exporter/templates/common.yaml:
--------------------------------------------------------------------------------
1 | {{ include "common.all" . }}
2 |
--------------------------------------------------------------------------------
/charts/stable/intel-gpu-plugin/.helmignore:
--------------------------------------------------------------------------------
1 | # Patterns to ignore when building packages.
2 | # This supports shell glob matching, relative path matching, and
3 | # negation (prefixed with !). Only one pattern per line.
4 | .DS_Store
5 | # Common VCS dirs
6 | .git/
7 | .gitignore
8 | .bzr/
9 | .bzrignore
10 | .hg/
11 | .hgignore
12 | .svn/
13 | # Common backup files
14 | *.swp
15 | *.bak
16 | *.tmp
17 | *.orig
18 | *~
19 | # Various IDEs
20 | .project
21 | .idea/
22 | *.tmproj
23 | .vscode/
24 |
--------------------------------------------------------------------------------
/charts/stable/intel-gpu-plugin/templates/NOTES.txt:
--------------------------------------------------------------------------------
1 | {{- include "common.notes.defaultNotes" . -}}
2 |
--------------------------------------------------------------------------------
/charts/stable/intel-gpu-plugin/templates/common.yaml:
--------------------------------------------------------------------------------
1 | {{ include "common.all" . }}
2 |
--------------------------------------------------------------------------------
/charts/stable/jackett/.helmignore:
--------------------------------------------------------------------------------
1 | # Patterns to ignore when building packages.
2 | # This supports shell glob matching, relative path matching, and
3 | # negation (prefixed with !). Only one pattern per line.
4 | .DS_Store
5 | # Common VCS dirs
6 | .git/
7 | .gitignore
8 | .bzr/
9 | .bzrignore
10 | .hg/
11 | .hgignore
12 | .svn/
13 | # Common backup files
14 | *.swp
15 | *.bak
16 | *.tmp
17 | *~
18 | # Various IDEs
19 | .project
20 | .idea/
21 | *.tmproj
22 | .vscode/
23 | # OWNERS file for Kubernetes
24 | OWNERS
25 | # helm-docs templates
26 | *.gotmpl
27 |
--------------------------------------------------------------------------------
/charts/stable/jackett/README_CONFIG.md.gotmpl:
--------------------------------------------------------------------------------
1 | {{- define "custom.custom.configuration.header" -}}
2 | ## Custom configuration
3 | {{- end -}}
4 |
5 | {{- define "custom.custom.configuration" -}}
6 | {{ template "custom.custom.configuration.header" . }}
7 |
8 | N/A
9 | {{- end -}}
10 |
--------------------------------------------------------------------------------
/charts/stable/jackett/templates/NOTES.txt:
--------------------------------------------------------------------------------
1 | {{- include "common.notes.defaultNotes" . -}}
2 |
--------------------------------------------------------------------------------
/charts/stable/jackett/templates/common.yaml:
--------------------------------------------------------------------------------
1 | {{ include "common.all" . }}
2 |
--------------------------------------------------------------------------------
/charts/stable/jellyfin/README_CONFIG.md.gotmpl:
--------------------------------------------------------------------------------
1 | {{- define "custom.custom.configuration.header" -}}
2 | ## Custom configuration
3 | {{- end -}}
4 |
5 | {{- define "custom.custom.configuration" -}}
6 | {{ template "custom.custom.configuration.header" . }}
7 |
8 | N/A
9 | {{- end -}}
10 |
--------------------------------------------------------------------------------
/charts/stable/jellyfin/templates/NOTES.txt:
--------------------------------------------------------------------------------
1 | {{- include "common.notes.defaultNotes" . -}}
2 |
--------------------------------------------------------------------------------
/charts/stable/jellyfin/templates/common.yaml:
--------------------------------------------------------------------------------
1 | {{ include "common.all" . }}
2 |
--------------------------------------------------------------------------------
/charts/stable/joplin-server/.helmignore:
--------------------------------------------------------------------------------
1 | # Patterns to ignore when building packages.
2 | # This supports shell glob matching, relative path matching, and
3 | # negation (prefixed with !). Only one pattern per line.
4 | .DS_Store
5 | # Common VCS dirs
6 | .git/
7 | .gitignore
8 | .bzr/
9 | .bzrignore
10 | .hg/
11 | .hgignore
12 | .svn/
13 | # Common backup files
14 | *.swp
15 | *.bak
16 | *.tmp
17 | *~
18 | # Various IDEs
19 | .project
20 | .idea/
21 | *.tmproj
22 | .vscode/
23 | # OWNERS file for Kubernetes
24 | OWNERS
25 | # helm-docs templates
26 | *.gotmpl
--------------------------------------------------------------------------------
/charts/stable/joplin-server/README_CONFIG.md.gotmpl:
--------------------------------------------------------------------------------
1 | {{- define "custom.custom.configuration.header" -}}
2 | ## Custom configuration
3 | {{- end -}}
4 |
5 | {{- define "custom.custom.configuration" -}}
6 | {{ template "custom.custom.configuration.header" . }}
7 |
8 | N/A
9 | {{- end -}}
10 |
--------------------------------------------------------------------------------
/charts/stable/joplin-server/templates/NOTES.txt:
--------------------------------------------------------------------------------
1 | {{- include "common.notes.defaultNotes" . -}}
2 |
--------------------------------------------------------------------------------
/charts/stable/joplin-server/templates/common.yaml:
--------------------------------------------------------------------------------
1 | {{ include "common.all" . }}
2 |
--------------------------------------------------------------------------------
/charts/stable/kanboard/README_CONFIG.md.gotmpl:
--------------------------------------------------------------------------------
1 | {{- define "custom.custom.configuration.header" -}}
2 | ## Custom configuration
3 | {{- end -}}
4 |
5 | {{- define "custom.custom.configuration" -}}
6 | {{ template "custom.custom.configuration.header" . }}
7 |
8 | N/A
9 | {{- end -}}
10 |
--------------------------------------------------------------------------------
/charts/stable/kanboard/templates/NOTES.txt:
--------------------------------------------------------------------------------
1 | {{- include "common.notes.defaultNotes" . -}}
2 |
--------------------------------------------------------------------------------
/charts/stable/kanboard/templates/common.yaml:
--------------------------------------------------------------------------------
1 | {{ include "common.all" . }}
2 |
--------------------------------------------------------------------------------
/charts/stable/komga/.helmignore:
--------------------------------------------------------------------------------
1 | # Patterns to ignore when building packages.
2 | # This supports shell glob matching, relative path matching, and
3 | # negation (prefixed with !). Only one pattern per line.
4 | .DS_Store
5 | # Common VCS dirs
6 | .git/
7 | .gitignore
8 | .bzr/
9 | .bzrignore
10 | .hg/
11 | .hgignore
12 | .svn/
13 | # Common backup files
14 | *.swp
15 | *.bak
16 | *.tmp
17 | *~
18 | # Various IDEs
19 | .project
20 | .idea/
21 | *.tmproj
22 | .vscode/
23 | # OWNERS file for Kubernetes
24 | OWNERS
25 | # helm-docs templates
26 | *.gotmpl
27 |
--------------------------------------------------------------------------------
/charts/stable/komga/README_CONFIG.md.gotmpl:
--------------------------------------------------------------------------------
1 | {{- define "custom.custom.configuration.header" -}}
2 | ## Custom configuration
3 | {{- end -}}
4 |
5 | {{- define "custom.custom.configuration" -}}
6 | {{ template "custom.custom.configuration.header" . }}
7 |
8 | N/A
9 | {{- end -}}
10 |
--------------------------------------------------------------------------------
/charts/stable/komga/templates/NOTES.txt:
--------------------------------------------------------------------------------
1 | {{- include "common.notes.defaultNotes" . -}}
2 |
--------------------------------------------------------------------------------
/charts/stable/komga/templates/common.yaml:
--------------------------------------------------------------------------------
1 | {{ include "common.all" . }}
2 |
--------------------------------------------------------------------------------
/charts/stable/kube-ops-view/README_CONFIG.md.gotmpl:
--------------------------------------------------------------------------------
1 | {{- define "custom.custom.configuration.header" -}}
2 | ## Custom configuration
3 | {{- end -}}
4 |
5 | {{- define "custom.custom.configuration" -}}
6 | {{ template "custom.custom.configuration.header" . }}
7 |
8 | N/A
9 | {{- end -}}
10 |
--------------------------------------------------------------------------------
/charts/stable/kube-ops-view/templates/NOTES.txt:
--------------------------------------------------------------------------------
1 | {{- include "common.notes.defaultNotes" . -}}
2 |
--------------------------------------------------------------------------------
/charts/stable/kube-ops-view/templates/common.yaml:
--------------------------------------------------------------------------------
1 | {{ include "common.all" . }}
2 |
--------------------------------------------------------------------------------
/charts/stable/lazylibrarian/README_CONFIG.md.gotmpl:
--------------------------------------------------------------------------------
1 | {{- define "custom.custom.configuration.header" -}}
2 | ## Custom configuration
3 | {{- end -}}
4 |
5 | {{- define "custom.custom.configuration" -}}
6 | {{ template "custom.custom.configuration.header" . }}
7 |
8 | N/A
9 | {{- end -}}
10 |
--------------------------------------------------------------------------------
/charts/stable/lazylibrarian/templates/NOTES.txt:
--------------------------------------------------------------------------------
1 | {{- include "common.notes.defaultNotes" . -}}
2 |
--------------------------------------------------------------------------------
/charts/stable/lazylibrarian/templates/common.yaml:
--------------------------------------------------------------------------------
1 | {{ include "common.all" . }}
2 |
--------------------------------------------------------------------------------
/charts/stable/leaf2mqtt/README_CONFIG.md.gotmpl:
--------------------------------------------------------------------------------
1 | {{- define "custom.custom.configuration.header" -}}
2 | ## Custom configuration
3 | {{- end -}}
4 |
5 | {{- define "custom.custom.configuration" -}}
6 | {{ template "custom.custom.configuration.header" . }}
7 |
8 | N/A
9 | {{- end -}}
10 |
--------------------------------------------------------------------------------
/charts/stable/leaf2mqtt/templates/NOTES.txt:
--------------------------------------------------------------------------------
1 | {{- include "common.notes.defaultNotes" . -}}
2 |
--------------------------------------------------------------------------------
/charts/stable/librespeed/README_CONFIG.md.gotmpl:
--------------------------------------------------------------------------------
1 | {{- define "custom.custom.configuration.header" -}}
2 | ## Custom configuration
3 | {{- end -}}
4 |
5 | {{- define "custom.custom.configuration" -}}
6 | {{ template "custom.custom.configuration.header" . }}
7 |
8 | N/A
9 | {{- end -}}
10 |
--------------------------------------------------------------------------------
/charts/stable/librespeed/ci/ct-values.yaml:
--------------------------------------------------------------------------------
1 | env:
2 | PASSWORD: "ChangeMe"
3 |
--------------------------------------------------------------------------------
/charts/stable/librespeed/templates/NOTES.txt:
--------------------------------------------------------------------------------
1 | {{- include "common.notes.defaultNotes" . -}}
2 |
--------------------------------------------------------------------------------
/charts/stable/librespeed/templates/common.yaml:
--------------------------------------------------------------------------------
1 | {{ include "common.all" . }}
2 |
--------------------------------------------------------------------------------
/charts/stable/lidarr/.helmignore:
--------------------------------------------------------------------------------
1 | # Patterns to ignore when building packages.
2 | # This supports shell glob matching, relative path matching, and
3 | # negation (prefixed with !). Only one pattern per line.
4 | .DS_Store
5 | # Common VCS dirs
6 | .git/
7 | .gitignore
8 | .bzr/
9 | .bzrignore
10 | .hg/
11 | .hgignore
12 | .svn/
13 | # Common backup files
14 | *.swp
15 | *.bak
16 | *.tmp
17 | *~
18 | # Various IDEs
19 | .project
20 | .idea/
21 | *.tmproj
22 | .vscode/
23 | # OWNERS file for Kubernetes
24 | OWNERS
25 | # helm-docs templates
26 | *.gotmpl
27 |
--------------------------------------------------------------------------------
/charts/stable/lidarr/README_CONFIG.md.gotmpl:
--------------------------------------------------------------------------------
1 | {{- define "custom.custom.configuration.header" -}}
2 | ## Custom configuration
3 | {{- end -}}
4 |
5 | {{- define "custom.custom.configuration" -}}
6 | {{ template "custom.custom.configuration.header" . }}
7 |
8 | N/A
9 | {{- end -}}
10 |
--------------------------------------------------------------------------------
/charts/stable/lidarr/templates/NOTES.txt:
--------------------------------------------------------------------------------
1 | {{- include "common.notes.defaultNotes" . -}}
2 |
--------------------------------------------------------------------------------
/charts/stable/littlelink-server/README_CONFIG.md.gotmpl:
--------------------------------------------------------------------------------
1 | {{- define "custom.custom.configuration.header" -}}
2 | ## Custom configuration
3 | {{- end -}}
4 |
5 | {{- define "custom.custom.configuration" -}}
6 | {{ template "custom.custom.configuration.header" . }}
7 |
8 | N/A
9 | {{- end -}}
10 |
--------------------------------------------------------------------------------
/charts/stable/littlelink-server/templates/NOTES.txt:
--------------------------------------------------------------------------------
1 | {{- include "common.notes.defaultNotes" . -}}
2 |
--------------------------------------------------------------------------------
/charts/stable/littlelink-server/templates/common.yaml:
--------------------------------------------------------------------------------
1 | {{ include "common.all" . }}
2 |
--------------------------------------------------------------------------------
/charts/stable/lychee/.helmignore:
--------------------------------------------------------------------------------
1 | # Patterns to ignore when building packages.
2 | # This supports shell glob matching, relative path matching, and
3 | # negation (prefixed with !). Only one pattern per line.
4 | .DS_Store
5 | # Common VCS dirs
6 | .git/
7 | .gitignore
8 | .bzr/
9 | .bzrignore
10 | .hg/
11 | .hgignore
12 | .svn/
13 | # Common backup files
14 | *.swp
15 | *.bak
16 | *.tmp
17 | *~
18 | # Various IDEs
19 | .project
20 | .idea/
21 | *.tmproj
22 | .vscode/
23 | # OWNERS file for Kubernetes
24 | OWNERS
25 | # helm-docs templates
26 | *.gotmpl
27 |
--------------------------------------------------------------------------------
/charts/stable/lychee/README_CONFIG.md.gotmpl:
--------------------------------------------------------------------------------
1 | {{- define "custom.custom.configuration.header" -}}
2 | ## Custom configuration
3 | {{- end -}}
4 |
5 | {{- define "custom.custom.configuration" -}}
6 | {{ template "custom.custom.configuration.header" . }}
7 |
8 | N/A
9 | {{- end -}}
10 |
--------------------------------------------------------------------------------
/charts/stable/lychee/templates/NOTES.txt:
--------------------------------------------------------------------------------
1 | {{- include "common.notes.defaultNotes" . -}}
2 |
--------------------------------------------------------------------------------
/charts/stable/lychee/templates/common.yaml:
--------------------------------------------------------------------------------
1 | {{ include "common.all" . }}
2 |
--------------------------------------------------------------------------------
/charts/stable/maddy/README_CONFIG.md.gotmpl:
--------------------------------------------------------------------------------
1 | {{- define "custom.custom.configuration.header" -}}
2 | ## Custom configuration
3 | {{- end -}}
4 |
5 | {{- define "custom.custom.configuration" -}}
6 | {{ template "custom.custom.configuration.header" . }}
7 |
8 | After you have deployed the Helm chart you need to update your DNS. See
9 | [Maddy initial setup instructions](https://maddy.email/tutorials/setting-up/)
10 | about how to do this.
11 | {{- end -}}
12 |
--------------------------------------------------------------------------------
/charts/stable/maddy/templates/NOTES.txt:
--------------------------------------------------------------------------------
1 | {{- include "common.notes.defaultNotes" . -}}
2 |
--------------------------------------------------------------------------------
/charts/stable/magic-mirror/README_CONFIG.md.gotmpl:
--------------------------------------------------------------------------------
1 | {{- define "custom.custom.configuration.header" -}}
2 | ## Custom configuration
3 | {{- end -}}
4 |
5 | {{- define "custom.custom.configuration" -}}
6 | {{ template "custom.custom.configuration.header" . }}
7 |
8 | The default login details (change ASAP) are:
9 |
10 | * password:deluge
11 | {{- end -}}
12 |
--------------------------------------------------------------------------------
/charts/stable/magic-mirror/templates/NOTES.txt:
--------------------------------------------------------------------------------
1 | {{- include "common.notes.defaultNotes" . -}}
2 |
--------------------------------------------------------------------------------
/charts/stable/mealie/README_CONFIG.md.gotmpl:
--------------------------------------------------------------------------------
1 | {{- define "custom.custom.configuration.header" -}}
2 | ## Custom configuration
3 | {{- end -}}
4 |
5 | {{- define "custom.custom.configuration" -}}
6 | {{ template "custom.custom.configuration.header" . }}
7 |
8 | N/A
9 | {{- end -}}
10 |
--------------------------------------------------------------------------------
/charts/stable/miniflux/README_CONFIG.md.gotmpl:
--------------------------------------------------------------------------------
1 | {{- define "custom.custom.configuration.header" -}}
2 | ## Custom configuration
3 | {{- end -}}
4 |
5 | {{- define "custom.custom.configuration" -}}
6 | {{ template "custom.custom.configuration.header" . }}
7 |
8 | N/A
9 | {{- end -}}
10 |
--------------------------------------------------------------------------------
/charts/stable/miniflux/templates/NOTES.txt:
--------------------------------------------------------------------------------
1 | {{- include "common.notes.defaultNotes" . -}}
2 |
--------------------------------------------------------------------------------
/charts/stable/miniflux/templates/common.yaml:
--------------------------------------------------------------------------------
1 | {{ include "common.all" . }}
2 |
--------------------------------------------------------------------------------
/charts/stable/minio-console/README_CONFIG.md.gotmpl:
--------------------------------------------------------------------------------
1 | {{- define "custom.custom.configuration.header" -}}
2 | ## Custom configuration
3 | {{- end -}}
4 |
5 | {{- define "custom.custom.configuration" -}}
6 | {{ template "custom.custom.configuration.header" . }}
7 |
8 | See https://hub.docker.com/r/minio/console for configuration required for the console user to login.
9 | {{- end -}}
10 |
--------------------------------------------------------------------------------
/charts/stable/minio-console/templates/NOTES.txt:
--------------------------------------------------------------------------------
1 | {{- include "common.notes.defaultNotes" . -}}
2 |
--------------------------------------------------------------------------------
/charts/stable/minio-console/templates/common.yaml:
--------------------------------------------------------------------------------
1 | {{ include "common.all" . }}
2 |
--------------------------------------------------------------------------------
/charts/stable/mlflow/README_CONFIG.md.gotmpl:
--------------------------------------------------------------------------------
1 | {{- define "custom.custom.configuration.header" -}}
2 | ## Custom configuration
3 | {{- end -}}
4 |
5 | {{- define "custom.custom.configuration" -}}
6 | {{ template "custom.custom.configuration.header" . }}
7 |
8 | N/A
9 | {{- end -}}
10 |
--------------------------------------------------------------------------------
/charts/stable/mlflow/templates/NOTES.txt:
--------------------------------------------------------------------------------
1 | {{- include "common.notes.defaultNotes" . -}}
2 |
--------------------------------------------------------------------------------
/charts/stable/mlflow/templates/common.yaml:
--------------------------------------------------------------------------------
1 | {{ include "common.all" . }}
2 |
--------------------------------------------------------------------------------
/charts/stable/modem-stats/.helmignore:
--------------------------------------------------------------------------------
1 | # Patterns to ignore when building packages.
2 | # This supports shell glob matching, relative path matching, and
3 | # negation (prefixed with !). Only one pattern per line.
4 | .DS_Store
5 | # Common VCS dirs
6 | .git/
7 | .gitignore
8 | .bzr/
9 | .bzrignore
10 | .hg/
11 | .hgignore
12 | .svn/
13 | # Common backup files
14 | *.swp
15 | *.bak
16 | *.tmp
17 | *~
18 | # Various IDEs
19 | .project
20 | .idea/
21 | *.tmproj
22 | # OWNERS file for Kubernetes
23 | OWNERS
--------------------------------------------------------------------------------
/charts/stable/modem-stats/templates/NOTES.txt:
--------------------------------------------------------------------------------
1 | {{- include "common.notes.defaultNotes" . -}}
2 |
--------------------------------------------------------------------------------
/charts/stable/modem-stats/templates/configmap.yaml:
--------------------------------------------------------------------------------
1 | {{- include "common.values.setup" . -}}
2 | ---
3 | apiVersion: v1
4 | kind: ConfigMap
5 | metadata:
6 | name: {{ include "common.names.fullname" . }}-config
7 | labels:
8 | {{- include "common.labels" . | nindent 4 }}
9 | data:
10 | config.ini: |
11 | {{- .Values.config | nindent 4 }}
12 |
--------------------------------------------------------------------------------
/charts/stable/monica/README_CONFIG.md.gotmpl:
--------------------------------------------------------------------------------
1 | {{- define "custom.custom.configuration.header" -}}
2 | ## Custom configuration
3 | {{- end -}}
4 |
5 | {{- define "custom.custom.configuration" -}}
6 | {{ template "custom.custom.configuration.header" . }}
7 |
8 | N/A
9 | {{- end -}}
10 |
--------------------------------------------------------------------------------
/charts/stable/monica/ci/ct-values.yaml:
--------------------------------------------------------------------------------
1 | env:
2 | APP_KEY: pG335ncsoY7z18CLdpXOp0JXGYKMtFa1
3 | APP_URL: https://crm.geek-cookbook.com
4 | DB_HOST: monica-mariadb
5 | DB_DATABASE: monica
6 | DB_USERNAME: monica
7 | DB_PASSWORD: monicapass
8 |
9 | ingress:
10 | main:
11 | enabled: true
12 |
13 | fullnameOverride: monica
14 |
15 | mariadb:
16 | enabled: true
17 | fullnameOverride: monica-mariadb
18 |
--------------------------------------------------------------------------------
/charts/stable/monica/templates/NOTES.txt:
--------------------------------------------------------------------------------
1 | {{- include "common.notes.defaultNotes" . -}}
2 |
--------------------------------------------------------------------------------
/charts/stable/monica/templates/common.yaml:
--------------------------------------------------------------------------------
1 | {{ include "common.all" . }}
2 |
--------------------------------------------------------------------------------
/charts/stable/mosquitto/README_CONFIG.md.gotmpl:
--------------------------------------------------------------------------------
1 | {{- define "custom.custom.configuration.header" -}}
2 | ## Custom configuration
3 | {{- end -}}
4 |
5 | {{- define "custom.custom.configuration" -}}
6 | {{ template "custom.custom.configuration.header" . }}
7 |
8 | N/A
9 | {{- end -}}
10 |
--------------------------------------------------------------------------------
/charts/stable/mosquitto/templates/NOTES.txt:
--------------------------------------------------------------------------------
1 | {{- include "common.notes.defaultNotes" . -}}
2 |
--------------------------------------------------------------------------------
/charts/stable/mqtt-exporter/README_CONFIG.md.gotmpl:
--------------------------------------------------------------------------------
1 | {{- define "custom.custom.configuration.header" -}}
2 | ## Custom configuration
3 | {{- end -}}
4 |
5 | {{- define "custom.custom.configuration" -}}
6 | {{ template "custom.custom.configuration.header" . }}
7 |
8 | N/A
9 | {{- end -}}
10 |
--------------------------------------------------------------------------------
/charts/stable/mqtt-exporter/ci/ct-values.yaml:
--------------------------------------------------------------------------------
1 | # Test
2 |
3 | additionalContainers:
4 | mosquitto:
5 | name: mosquitto
6 | image: eclipse-mosquitto:1.6.8
7 | imagePullPolicy: IfNotPresent
8 | ports:
9 | - name: mqtt
10 | containerPort: 1883
11 |
--------------------------------------------------------------------------------
/charts/stable/mqtt-exporter/templates/NOTES.txt:
--------------------------------------------------------------------------------
1 | {{- include "common.notes.defaultNotes" . -}}
2 |
--------------------------------------------------------------------------------
/charts/stable/mqtt-exporter/templates/common.yaml:
--------------------------------------------------------------------------------
1 | {{ include "common.all" . }}
2 |
--------------------------------------------------------------------------------
/charts/stable/multus/templates/NOTES.txt:
--------------------------------------------------------------------------------
1 | {{- include "common.notes.defaultNotes" . -}}
2 |
--------------------------------------------------------------------------------
/charts/stable/mylar/README_CONFIG.md.gotmpl:
--------------------------------------------------------------------------------
1 | {{- define "custom.custom.configuration.header" -}}
2 | ## Custom configuration
3 | {{- end -}}
4 |
5 | {{- define "custom.custom.configuration" -}}
6 | {{ template "custom.custom.configuration.header" . }}
7 |
8 | N/A
9 | {{- end -}}
10 |
--------------------------------------------------------------------------------
/charts/stable/mylar/templates/NOTES.txt:
--------------------------------------------------------------------------------
1 | {{- include "common.notes.defaultNotes" . -}}
2 |
--------------------------------------------------------------------------------
/charts/stable/mylar/templates/common.yaml:
--------------------------------------------------------------------------------
1 | {{ include "common.all" . }}
2 |
--------------------------------------------------------------------------------
/charts/stable/navidrome/README_CONFIG.md.gotmpl:
--------------------------------------------------------------------------------
1 | {{- define "custom.custom.configuration.header" -}}
2 | ## Custom configuration
3 | {{- end -}}
4 |
5 | {{- define "custom.custom.configuration" -}}
6 | {{ template "custom.custom.configuration.header" . }}
7 |
8 | N/A
9 | {{- end -}}
10 |
--------------------------------------------------------------------------------
/charts/stable/navidrome/templates/NOTES.txt:
--------------------------------------------------------------------------------
1 | {{- include "common.notes.defaultNotes" . -}}
2 |
--------------------------------------------------------------------------------
/charts/stable/navidrome/templates/common.yaml:
--------------------------------------------------------------------------------
1 | {{ include "common.all" . }}
2 |
--------------------------------------------------------------------------------
/charts/stable/neolink/README_CONFIG.md.gotmpl:
--------------------------------------------------------------------------------
1 | {{- define "custom.custom.configuration.header" -}}
2 | ## Custom configuration
3 | {{- end -}}
4 |
5 | {{- define "custom.custom.configuration" -}}
6 | {{ template "custom.custom.configuration.header" . }}
7 |
8 | N/A
9 | {{- end -}}
10 |
--------------------------------------------------------------------------------
/charts/stable/neolink/templates/NOTES.txt:
--------------------------------------------------------------------------------
1 | {{- include "common.notes.defaultNotes" . -}}
--------------------------------------------------------------------------------
/charts/stable/neolink/templates/configmap.yaml:
--------------------------------------------------------------------------------
1 | {{- include "common.values.setup" . -}}
2 | ---
3 | apiVersion: v1
4 | kind: ConfigMap
5 | metadata:
6 | name: {{ include "common.names.fullname" . }}-settings
7 | labels:
8 | {{- include "common.labels" . | nindent 4 }}
9 | data:
10 | neolink.toml:
11 | {{- with .Values.config }}
12 | {{- toYaml . | nindent 4 }}
13 | {{- end }}
14 |
--------------------------------------------------------------------------------
/charts/stable/network-ups-tools/README_CONFIG.md.gotmpl:
--------------------------------------------------------------------------------
1 | {{- define "custom.custom.configuration.header" -}}
2 | ## Custom configuration
3 | {{- end -}}
4 |
5 | {{- define "custom.custom.configuration" -}}
6 | {{ template "custom.custom.configuration.header" . }}
7 |
8 | N/A
9 | {{- end -}}
10 |
--------------------------------------------------------------------------------
/charts/stable/network-ups-tools/ci/ct-values.yaml:
--------------------------------------------------------------------------------
1 | config:
2 | files:
3 | dummy-ups.dev: |
4 | ups.status: OL
5 |
--------------------------------------------------------------------------------
/charts/stable/network-ups-tools/templates/NOTES.txt:
--------------------------------------------------------------------------------
1 | {{- include "common.notes.defaultNotes" . -}}
2 |
--------------------------------------------------------------------------------
/charts/stable/nginx-php/ci/ct-values.yaml:
--------------------------------------------------------------------------------
1 | persistence:
2 | data:
3 | enabled: true
4 | type: emptyDir
5 | mountPath: /var/www/html
6 |
--------------------------------------------------------------------------------
/charts/stable/nginx-php/templates/NOTES.txt:
--------------------------------------------------------------------------------
1 | {{- include "common.notes.defaultNotes" . -}}
2 |
--------------------------------------------------------------------------------
/charts/stable/nightscout/README_CONFIG.md.gotmpl:
--------------------------------------------------------------------------------
1 | {{- define "custom.custom.configuration.header" -}}
2 | ## Custom configuration
3 | {{- end -}}
4 |
5 | {{- define "custom.custom.configuration" -}}
6 | {{ template "custom.custom.configuration.header" . }}
7 |
8 | N/A
9 | {{- end -}}
10 |
--------------------------------------------------------------------------------
/charts/stable/nightscout/templates/NOTES.txt:
--------------------------------------------------------------------------------
1 | {{- include "common.notes.defaultNotes" . -}}
2 |
--------------------------------------------------------------------------------
/charts/stable/nightscout/templates/common.yaml:
--------------------------------------------------------------------------------
1 | {{ include "common.all" . }}
2 |
--------------------------------------------------------------------------------
/charts/stable/nitter/README_CONFIG.md.gotmpl:
--------------------------------------------------------------------------------
1 | {{- define "custom.custom.configuration.header" -}}
2 | ## Custom configuration
3 | {{- end -}}
4 |
5 | {{- define "custom.custom.configuration" -}}
6 | {{ template "custom.custom.configuration.header" . }}
7 |
8 | N/A
9 | {{- end -}}
10 |
--------------------------------------------------------------------------------
/charts/stable/nitter/templates/NOTES.txt:
--------------------------------------------------------------------------------
1 | {{- include "common.notes.defaultNotes" . -}}
2 |
--------------------------------------------------------------------------------
/charts/stable/nitter/templates/configmap.yaml:
--------------------------------------------------------------------------------
1 | {{- include "common.values.setup" . -}}
2 | ---
3 | apiVersion: v1
4 | kind: ConfigMap
5 | metadata:
6 | name: {{ include "common.names.fullname" . }}-config
7 | labels:
8 | {{- include "common.labels" . | nindent 4 }}
9 | data:
10 | nitter.conf: |
11 | {{- .Values.config | nindent 4 }}
12 |
--------------------------------------------------------------------------------
/charts/stable/node-red/README_CONFIG.md.gotmpl:
--------------------------------------------------------------------------------
1 | {{- define "custom.custom.configuration.header" -}}
2 | ## Custom configuration
3 | {{- end -}}
4 |
5 | {{- define "custom.custom.configuration" -}}
6 | {{ template "custom.custom.configuration.header" . }}
7 |
8 | N/A
9 | {{- end -}}
10 |
--------------------------------------------------------------------------------
/charts/stable/node-red/templates/NOTES.txt:
--------------------------------------------------------------------------------
1 | {{- include "common.notes.defaultNotes" . -}}
2 |
--------------------------------------------------------------------------------
/charts/stable/node-red/templates/common.yaml:
--------------------------------------------------------------------------------
1 | {{ include "common.all" . }}
2 |
--------------------------------------------------------------------------------
/charts/stable/ntfy/README_CONFIG.md.gotmpl:
--------------------------------------------------------------------------------
1 | {{- define "custom.custom.configuration.header" -}}
2 | ## Custom configuration
3 | {{- end -}}
4 |
5 | {{- define "custom.custom.configuration" -}}
6 | {{ template "custom.custom.configuration.header" . }}
7 |
8 | N/A
9 | {{- end -}}
10 |
--------------------------------------------------------------------------------
/charts/stable/ntfy/templates/NOTES.txt:
--------------------------------------------------------------------------------
1 | {{- include "common.notes.defaultNotes" . -}}
2 |
--------------------------------------------------------------------------------
/charts/stable/ntfy/templates/common.yaml:
--------------------------------------------------------------------------------
1 | {{ include "common.all" . }}
2 |
--------------------------------------------------------------------------------
/charts/stable/nullserv/README_CONFIG.md.gotmpl:
--------------------------------------------------------------------------------
1 | {{- define "custom.custom.configuration.header" -}}
2 | ## Custom configuration
3 | {{- end -}}
4 |
5 | {{- define "custom.custom.configuration" -}}
6 | {{ template "custom.custom.configuration.header" . }}
7 |
8 | N/A
9 | {{- end -}}
10 |
--------------------------------------------------------------------------------
/charts/stable/nullserv/templates/NOTES.txt:
--------------------------------------------------------------------------------
1 | {{- include "common.notes.defaultNotes" . -}}
2 |
--------------------------------------------------------------------------------
/charts/stable/nullserv/templates/common.yaml:
--------------------------------------------------------------------------------
1 | {{ include "common.all" . }}
2 |
--------------------------------------------------------------------------------
/charts/stable/nzbget/README_CONFIG.md.gotmpl:
--------------------------------------------------------------------------------
1 | {{- define "custom.custom.configuration.header" -}}
2 | ## Custom configuration
3 | {{- end -}}
4 |
5 | {{- define "custom.custom.configuration" -}}
6 | {{ template "custom.custom.configuration.header" . }}
7 |
8 | The default login details (change ASAP) are:
9 |
10 | * login:nzbget
11 | * password:tegbzn6789
12 | {{- end -}}
13 |
--------------------------------------------------------------------------------
/charts/stable/nzbget/templates/NOTES.txt:
--------------------------------------------------------------------------------
1 | {{- include "common.notes.defaultNotes" . -}}
2 |
--------------------------------------------------------------------------------
/charts/stable/nzbget/templates/common.yaml:
--------------------------------------------------------------------------------
1 | {{ include "common.all" . }}
2 |
--------------------------------------------------------------------------------
/charts/stable/nzbhydra2/README_CONFIG.md.gotmpl:
--------------------------------------------------------------------------------
1 | {{- define "custom.custom.configuration.header" -}}
2 | ## Custom configuration
3 | {{- end -}}
4 |
5 | {{- define "custom.custom.configuration" -}}
6 | {{ template "custom.custom.configuration.header" . }}
7 |
8 | N/A
9 | {{- end -}}
10 |
--------------------------------------------------------------------------------
/charts/stable/nzbhydra2/templates/NOTES.txt:
--------------------------------------------------------------------------------
1 | {{- include "common.notes.defaultNotes" . -}}
2 |
--------------------------------------------------------------------------------
/charts/stable/nzbhydra2/templates/common.yaml:
--------------------------------------------------------------------------------
1 | {{ include "common.all" . }}
2 |
--------------------------------------------------------------------------------
/charts/stable/octoprint/README_CONFIG.md.gotmpl:
--------------------------------------------------------------------------------
1 | {{- define "custom.custom.configuration.header" -}}
2 | ## Custom configuration
3 | {{- end -}}
4 |
5 | {{- define "custom.custom.configuration" -}}
6 | {{ template "custom.custom.configuration.header" . }}
7 |
8 | N/A
9 | {{- end -}}
10 |
--------------------------------------------------------------------------------
/charts/stable/octoprint/templates/NOTES.txt:
--------------------------------------------------------------------------------
1 | {{- include "common.notes.defaultNotes" . -}}
2 |
--------------------------------------------------------------------------------
/charts/stable/octoprint/templates/common.yaml:
--------------------------------------------------------------------------------
1 | {{ include "common.all" . }}
2 |
--------------------------------------------------------------------------------
/charts/stable/omada-controller/README_CONFIG.md.gotmpl:
--------------------------------------------------------------------------------
1 | {{- define "custom.custom.configuration.header" -}}
2 | ## Custom configuration
3 | {{- end -}}
4 |
5 | {{- define "custom.custom.configuration" -}}
6 | {{ template "custom.custom.configuration.header" . }}
7 |
8 | N/A
9 | {{- end -}}
10 |
--------------------------------------------------------------------------------
/charts/stable/omada-controller/templates/NOTES.txt:
--------------------------------------------------------------------------------
1 | {{- include "common.notes.defaultNotes" . -}}
2 |
--------------------------------------------------------------------------------
/charts/stable/omada-controller/templates/common.yaml:
--------------------------------------------------------------------------------
1 | {{ include "common.all" . }}
2 |
--------------------------------------------------------------------------------
/charts/stable/ombi/README_CONFIG.md.gotmpl:
--------------------------------------------------------------------------------
1 | {{- define "custom.custom.configuration.header" -}}
2 | ## Custom configuration
3 | {{- end -}}
4 |
5 | {{- define "custom.custom.configuration" -}}
6 | {{ template "custom.custom.configuration.header" . }}
7 |
8 | N/A
9 | {{- end -}}
10 |
--------------------------------------------------------------------------------
/charts/stable/ombi/templates/NOTES.txt:
--------------------------------------------------------------------------------
1 | {{- include "common.notes.defaultNotes" . -}}
2 |
--------------------------------------------------------------------------------
/charts/stable/ombi/templates/common.yaml:
--------------------------------------------------------------------------------
1 | {{ include "common.all" . }}
2 |
--------------------------------------------------------------------------------
/charts/stable/onedrive/ci/ct-values.yaml:
--------------------------------------------------------------------------------
1 | env:
2 | ONEDRIVE_AUTHFILES: "/onedrive/conf/auth-request:/onedrive/conf/auth-response"
3 |
--------------------------------------------------------------------------------
/charts/stable/onedrive/templates/NOTES.txt:
--------------------------------------------------------------------------------
1 | {{- include "common.notes.defaultNotes" . -}}
2 |
--------------------------------------------------------------------------------
/charts/stable/onedrive/templates/configmap.yaml:
--------------------------------------------------------------------------------
1 | {{- include "common.values.setup" . -}}
2 | ---
3 | apiVersion: v1
4 | kind: ConfigMap
5 | metadata:
6 | name: {{ template "common.names.fullname" . }}-config
7 | labels:
8 | {{- include "common.labels" . | nindent 4 }}
9 | data:
10 | config: |
11 | {{ .Values.config | indent 4 }}
12 |
--------------------------------------------------------------------------------
/charts/stable/openemr/README_CONFIG.md.gotmpl:
--------------------------------------------------------------------------------
1 | {{- define "custom.custom.configuration.header" -}}
2 | ## Custom configuration
3 | {{- end -}}
4 |
5 | {{- define "custom.custom.configuration" -}}
6 | {{ template "custom.custom.configuration.header" . }}
7 |
8 | N/A
9 | {{- end -}}
10 |
--------------------------------------------------------------------------------
/charts/stable/openemr/templates/NOTES.txt:
--------------------------------------------------------------------------------
1 | {{- include "common.notes.defaultNotes" . -}}
2 |
--------------------------------------------------------------------------------
/charts/stable/openemr/templates/common.yaml:
--------------------------------------------------------------------------------
1 | {{ include "common.all" . }}
2 |
--------------------------------------------------------------------------------
/charts/stable/openkm/README_CONFIG.md.gotmpl:
--------------------------------------------------------------------------------
1 | {{- define "custom.custom.configuration.header" -}}
2 | ## Custom configuration
3 | {{- end -}}
4 |
5 | {{- define "custom.custom.configuration" -}}
6 | {{ template "custom.custom.configuration.header" . }}
7 |
8 | N/A
9 | {{- end -}}
10 |
--------------------------------------------------------------------------------
/charts/stable/openkm/templates/NOTES.txt:
--------------------------------------------------------------------------------
1 | {{- include "common.notes.defaultNotes" . -}}
2 |
--------------------------------------------------------------------------------
/charts/stable/openkm/templates/common.yaml:
--------------------------------------------------------------------------------
1 | {{ include "common.all" . }}
2 |
--------------------------------------------------------------------------------
/charts/stable/organizr/README_CONFIG.md.gotmpl:
--------------------------------------------------------------------------------
1 | {{- define "custom.custom.configuration.header" -}}
2 | ## Custom configuration
3 | {{- end -}}
4 |
5 | {{- define "custom.custom.configuration" -}}
6 | {{ template "custom.custom.configuration.header" . }}
7 |
8 | N/A
9 | {{- end -}}
10 |
--------------------------------------------------------------------------------
/charts/stable/organizr/templates/NOTES.txt:
--------------------------------------------------------------------------------
1 | {{- include "common.notes.defaultNotes" . -}}
2 |
--------------------------------------------------------------------------------
/charts/stable/organizr/templates/common.yaml:
--------------------------------------------------------------------------------
1 | {{ include "common.all" . }}
2 |
--------------------------------------------------------------------------------
/charts/stable/otel-collector/templates/NOTES.txt:
--------------------------------------------------------------------------------
1 | Send telemetry to this pod via the clusterIP:
2 |
3 | 1. http://{{ include "common.names.fullname" . }}.{{ .Release.Namespace }}:{{ .Values.service.otlpports.ports.otlpgrpc.port }}
4 | 2. GRPC to {{ include "common.names.fullname" . }}.{{ .Release.Namespace }}:{{ .Values.service.otlpports.ports.otlphttp.port }}
5 |
6 | It will then be processed and sent to exporters based on the configFile or configFileSecret.
7 |
--------------------------------------------------------------------------------
/charts/stable/otel-collector/templates/secret.yaml:
--------------------------------------------------------------------------------
1 | {{- if and .Values.configFile (not .Values.configFileSecret) }}
2 | {{- include "common.values.setup" . -}}
3 | ---
4 | apiVersion: v1
5 | kind: Secret
6 | metadata:
7 | name: {{ include "common.names.fullname" . }}-otelconfig
8 | labels:
9 | configsecret: otelcollector
10 | {{- include "common.labels" $ | nindent 4 }}
11 | stringData:
12 | {{- with .Values.configFile }}
13 | otelConfigFile: |-
14 | {{- . | nindent 4}}
15 | {{- end }}
16 | {{- end -}}
17 |
--------------------------------------------------------------------------------
/charts/stable/overleaf/README_CONFIG.md.gotmpl:
--------------------------------------------------------------------------------
1 | {{- define "custom.custom.configuration.header" -}}
2 | ## Custom configuration
3 | {{- end -}}
4 |
5 | {{- define "custom.custom.configuration" -}}
6 | {{ template "custom.custom.configuration.header" . }}
7 |
8 | N/A
9 | {{- end -}}
10 |
--------------------------------------------------------------------------------
/charts/stable/overleaf/ci/ct-values.yaml:
--------------------------------------------------------------------------------
1 | ---
2 | env:
3 | SHARELATEX_REDIS_HOST: overleaf-redis-master
4 | REDIS_HOST: overleaf-redis-master
5 | SHARELATEX_MONGO_URL: mongodb://overleaf-mongodb:27017/sharelatex
6 |
7 | redis:
8 | enabled: true
9 | fullnameOverride: overleaf-redis
10 | replica:
11 | replicaCount: 1
12 |
13 | mongodb:
14 | enabled: true
15 | fullnameOverride: overleaf-mongodb
16 |
--------------------------------------------------------------------------------
/charts/stable/overleaf/templates/NOTES.txt:
--------------------------------------------------------------------------------
1 | {{- include "common.notes.defaultNotes" . -}}
2 |
--------------------------------------------------------------------------------
/charts/stable/overleaf/templates/common.yaml:
--------------------------------------------------------------------------------
1 | {{ include "common.all" . }}
2 |
--------------------------------------------------------------------------------
/charts/stable/overseerr/README_CONFIG.md.gotmpl:
--------------------------------------------------------------------------------
1 | {{- define "custom.custom.configuration.header" -}}
2 | ## Custom configuration
3 | {{- end -}}
4 |
5 | {{- define "custom.custom.configuration" -}}
6 | {{ template "custom.custom.configuration.header" . }}
7 |
8 | N/A
9 | {{- end -}}
10 |
--------------------------------------------------------------------------------
/charts/stable/overseerr/templates/NOTES.txt:
--------------------------------------------------------------------------------
1 | {{- include "common.notes.defaultNotes" . -}}
2 |
--------------------------------------------------------------------------------
/charts/stable/overseerr/templates/common.yaml:
--------------------------------------------------------------------------------
1 | {{ include "common.all" . }}
2 |
--------------------------------------------------------------------------------
/charts/stable/owncast/README_CONFIG.md.gotmpl:
--------------------------------------------------------------------------------
1 | {{- define "custom.custom.configuration.header" -}}
2 | ## Custom configuration
3 | {{- end -}}
4 |
5 | {{- define "custom.custom.configuration" -}}
6 | {{ template "custom.custom.configuration.header" . }}
7 |
8 | For information on how to configure this application, please refer to https://owncast.online/docs/configuration/.
9 | {{- end -}}
10 |
--------------------------------------------------------------------------------
/charts/stable/owncast/templates/NOTES.txt:
--------------------------------------------------------------------------------
1 | {{- include "common.notes.defaultNotes" . -}}
2 |
--------------------------------------------------------------------------------
/charts/stable/owncast/templates/common.yaml:
--------------------------------------------------------------------------------
1 | {{ include "common.all" . }}
2 |
--------------------------------------------------------------------------------
/charts/stable/owncloud-ocis/README_CONFIG.md.gotmpl:
--------------------------------------------------------------------------------
1 | {{- define "custom.custom.configuration.header" -}}
2 | ## Custom configuration
3 | {{- end -}}
4 |
5 | {{- define "custom.custom.configuration" -}}
6 | {{ template "custom.custom.configuration.header" . }}
7 |
8 | N/A
9 | {{- end -}}
10 |
--------------------------------------------------------------------------------
/charts/stable/owncloud-ocis/templates/NOTES.txt:
--------------------------------------------------------------------------------
1 | {{- include "common.notes.defaultNotes" . -}}
2 |
--------------------------------------------------------------------------------
/charts/stable/owncloud-ocis/templates/common.yaml:
--------------------------------------------------------------------------------
1 | {{ include "common.all" . }}
2 |
--------------------------------------------------------------------------------
/charts/stable/paperless/README_CONFIG.md.gotmpl:
--------------------------------------------------------------------------------
1 | {{- define "custom.custom.configuration.header" -}}
2 | ## Custom configuration
3 | {{- end -}}
4 |
5 | {{- define "custom.custom.configuration" -}}
6 | {{ template "custom.custom.configuration.header" . }}
7 | N/A
8 | {{- end -}}
9 |
--------------------------------------------------------------------------------
/charts/stable/paperless/templates/NOTES.txt:
--------------------------------------------------------------------------------
1 | {{- include "common.notes.defaultNotes" . }}
2 | 2. Create a super user by running the command:
3 | export POD_NAME=$(kubectl get pods --namespace {{ .Release.Namespace }} -l "app.kubernetes.io/name={{ include "common.names.name" . }},app.kubernetes.io/instance={{ .Release.Name }}" -o jsonpath="{.items[0].metadata.name}")
4 | kubectl exec -it --namespace {{ .Release.Namespace }} $POD_NAME -- bash -c "python manage.py createsuperuser"
--------------------------------------------------------------------------------
/charts/stable/paperless/templates/common.yaml:
--------------------------------------------------------------------------------
1 | {{/* Make sure all variables are set properly */}}
2 | {{- include "common.values.setup" . }}
3 |
4 | {{/* Append the hardcoded settings */}}
5 | {{- define "paperless.harcodedValues" -}}
6 | env:
7 | PAPERLESS_URL: http{{if ne ( len .Values.ingress.main.tls ) 0 }}s{{end}}://{{ (first .Values.ingress.main.hosts).host }}
8 | {{- end -}}
9 | {{- $_ := merge .Values (include "paperless.harcodedValues" . | fromYaml) -}}
10 |
11 | {{ include "common.all" . }}
12 |
--------------------------------------------------------------------------------
/charts/stable/photoprism/README_CONFIG.md.gotmpl:
--------------------------------------------------------------------------------
1 | {{- define "custom.custom.configuration.header" -}}
2 | ## Custom configuration
3 | {{- end -}}
4 |
5 | {{- define "custom.custom.configuration" -}}
6 | {{ template "custom.custom.configuration.header" . }}
7 |
8 | N/A
9 | {{- end -}}
10 |
--------------------------------------------------------------------------------
/charts/stable/photoprism/templates/NOTES.txt:
--------------------------------------------------------------------------------
1 | {{- include "common.notes.defaultNotes" . -}}
2 |
--------------------------------------------------------------------------------
/charts/stable/photoprism/templates/common.yaml:
--------------------------------------------------------------------------------
1 | {{ include "common.all" . }}
2 |
--------------------------------------------------------------------------------
/charts/stable/plex/README_CONFIG.md.gotmpl:
--------------------------------------------------------------------------------
1 | {{- define "custom.custom.configuration.header" -}}
2 | ## Custom configuration
3 | {{- end -}}
4 |
5 | {{- define "custom.custom.configuration" -}}
6 | {{ template "custom.custom.configuration.header" . }}
7 |
8 | N/A
9 | {{- end -}}
10 |
--------------------------------------------------------------------------------
/charts/stable/plex/templates/NOTES.txt:
--------------------------------------------------------------------------------
1 | {{- include "common.notes.defaultNotes" . -}}
2 |
--------------------------------------------------------------------------------
/charts/stable/plex/templates/common.yaml:
--------------------------------------------------------------------------------
1 | {{ include "common.all" . }}
2 |
--------------------------------------------------------------------------------
/charts/stable/pod-gateway/templates/NOTES.txt:
--------------------------------------------------------------------------------
1 | {{- include "common.notes.defaultNotes" . -}}
2 |
--------------------------------------------------------------------------------
/charts/stable/pod-gateway/templates/webhook-service.yaml:
--------------------------------------------------------------------------------
1 | {{- include "common.values.setup" . -}}
2 | ---
3 | apiVersion: v1
4 | kind: Service
5 | metadata:
6 | name: {{ include "common.names.fullname" . }}-webhook
7 | labels:
8 | {{- include "common.labels" . | nindent 4 }}
9 | spec:
10 | type: ClusterIP
11 | ports:
12 | - name: http
13 | protocol: TCP
14 | port: {{ include "pod-gateway.webhookPort" . }}
15 | targetPort: http
16 | selector:
17 | {{- include "pod-gateway.labels.selectorLabels" . | nindent 4 }}
18 |
--------------------------------------------------------------------------------
/charts/stable/powerdns-admin/README_CONFIG.md.gotmpl:
--------------------------------------------------------------------------------
1 | {{- define "custom.custom.configuration.header" -}}
2 | ## Custom configuration
3 | {{- end -}}
4 |
5 | {{- define "custom.custom.configuration" -}}
6 | {{ template "custom.custom.configuration.header" . }}
7 |
8 | N/A
9 | {{- end -}}
10 |
--------------------------------------------------------------------------------
/charts/stable/powerdns-admin/templates/NOTES.txt:
--------------------------------------------------------------------------------
1 | {{- include "common.notes.defaultNotes" . -}}
2 |
--------------------------------------------------------------------------------
/charts/stable/powerdns-admin/templates/common.yaml:
--------------------------------------------------------------------------------
1 | {{ include "common.all" . }}
2 |
--------------------------------------------------------------------------------
/charts/stable/pretend-youre-xyzzy/README_CONFIG.md.gotmpl:
--------------------------------------------------------------------------------
1 | {{- define "custom.custom.configuration.header" -}}
2 | ## Custom configuration
3 | {{- end -}}
4 |
5 | {{- define "custom.custom.configuration" -}}
6 | {{ template "custom.custom.configuration.header" . }}
7 |
8 | N/A
9 | {{- end -}}
10 |
--------------------------------------------------------------------------------
/charts/stable/pretend-youre-xyzzy/templates/NOTES.txt:
--------------------------------------------------------------------------------
1 | {{- include "common.notes.defaultNotes" . -}}
2 |
--------------------------------------------------------------------------------
/charts/stable/pretend-youre-xyzzy/templates/common.yaml:
--------------------------------------------------------------------------------
1 | {{ include "common.all" . }}
2 |
--------------------------------------------------------------------------------
/charts/stable/privatebin/README_CONFIG.md.gotmpl:
--------------------------------------------------------------------------------
1 | {{- define "custom.custom.configuration.header" -}}
2 | ## Custom configuration
3 | {{- end -}}
4 |
5 | {{- define "custom.custom.configuration" -}}
6 | {{ template "custom.custom.configuration.header" . }}
7 |
8 | N/A
9 | {{- end -}}
10 |
--------------------------------------------------------------------------------
/charts/stable/privatebin/templates/NOTES.txt:
--------------------------------------------------------------------------------
1 | {{- include "common.notes.defaultNotes" . -}}
2 |
--------------------------------------------------------------------------------
/charts/stable/promcord/README_CONFIG.md.gotmpl:
--------------------------------------------------------------------------------
1 | {{- define "custom.custom.configuration.header" -}}
2 | ## Custom configuration
3 | {{- end -}}
4 |
5 | {{- define "custom.custom.configuration" -}}
6 | {{ template "custom.custom.configuration.header" . }}
7 |
8 | N/A
9 | {{- end -}}
10 |
--------------------------------------------------------------------------------
/charts/stable/promcord/templates/NOTES.txt:
--------------------------------------------------------------------------------
1 | {{- include "common.notes.defaultNotes" . -}}
2 |
--------------------------------------------------------------------------------
/charts/stable/promcord/templates/common.yaml:
--------------------------------------------------------------------------------
1 | {{/* Make sure all variables are set properly */}}
2 | {{- include "common.values.setup" . }}
3 |
4 | {{/* Render the templates */}}
5 | {{ include "common.all" . }}
6 |
--------------------------------------------------------------------------------
/charts/stable/prometheus-nut-exporter/README_CONFIG.md.gotmpl:
--------------------------------------------------------------------------------
1 | {{- define "custom.custom.configuration.header" -}}
2 | ## Custom configuration
3 | {{- end -}}
4 |
5 | {{- define "custom.custom.configuration" -}}
6 | {{ template "custom.custom.configuration.header" . }}
7 |
8 | N/A
9 | {{- end -}}
10 |
--------------------------------------------------------------------------------
/charts/stable/prometheus-nut-exporter/templates/NOTES.txt:
--------------------------------------------------------------------------------
1 | {{- include "common.notes.defaultNotes" . -}}
2 |
--------------------------------------------------------------------------------
/charts/stable/protonmail-bridge/templates/NOTES.txt:
--------------------------------------------------------------------------------
1 | {{- include "common.notes.defaultNotes" . -}}
--------------------------------------------------------------------------------
/charts/stable/protonmail-bridge/templates/common.yaml:
--------------------------------------------------------------------------------
1 | {{ include "common.all" . }}
--------------------------------------------------------------------------------
/charts/stable/prowlarr/README_CONFIG.md.gotmpl:
--------------------------------------------------------------------------------
1 | {{- define "custom.custom.configuration.header" -}}
2 | ## Custom configuration
3 | {{- end -}}
4 |
5 | {{- define "custom.custom.configuration" -}}
6 | {{ template "custom.custom.configuration.header" . }}
7 |
8 | N/A
9 | {{- end -}}
10 |
--------------------------------------------------------------------------------
/charts/stable/prowlarr/templates/NOTES.txt:
--------------------------------------------------------------------------------
1 | {{- include "common.notes.defaultNotes" . -}}
2 |
--------------------------------------------------------------------------------
/charts/stable/prowlarr/templates/common.yaml:
--------------------------------------------------------------------------------
1 | {{ include "common.all" . }}
2 |
--------------------------------------------------------------------------------
/charts/stable/puppeteer/templates/NOTES.txt:
--------------------------------------------------------------------------------
1 | {{- include "common.notes.defaultNotes" . -}}
2 |
--------------------------------------------------------------------------------
/charts/stable/pyload/README_CONFIG.md.gotmpl:
--------------------------------------------------------------------------------
1 | {{- define "custom.custom.configuration.header" -}}
2 | ## Custom configuration
3 | {{- end -}}
4 |
5 | {{- define "custom.custom.configuration" -}}
6 | {{ template "custom.custom.configuration.header" . }}
7 |
8 | N/A
9 | {{- end -}}
10 |
--------------------------------------------------------------------------------
/charts/stable/pyload/templates/NOTES.txt:
--------------------------------------------------------------------------------
1 | {{- include "common.notes.defaultNotes" . -}}
2 |
--------------------------------------------------------------------------------
/charts/stable/pyload/templates/common.yaml:
--------------------------------------------------------------------------------
1 | {{ include "common.all" . }}
2 |
--------------------------------------------------------------------------------
/charts/stable/qbittorrent/README_CONFIG.md.gotmpl:
--------------------------------------------------------------------------------
1 | {{- define "custom.custom.configuration.header" -}}
2 | ## Custom configuration
3 | {{- end -}}
4 |
5 | {{- define "custom.custom.configuration" -}}
6 | {{ template "custom.custom.configuration.header" . }}
7 |
8 | N/A
9 | {{- end -}}
10 |
--------------------------------------------------------------------------------
/charts/stable/qbittorrent/templates/NOTES.txt:
--------------------------------------------------------------------------------
1 | {{- include "common.notes.defaultNotes" . -}}
2 |
--------------------------------------------------------------------------------
/charts/stable/radarr/README_CONFIG.md.gotmpl:
--------------------------------------------------------------------------------
1 | {{- define "custom.custom.configuration.header" -}}
2 | ## Custom configuration
3 | {{- end -}}
4 |
5 | {{- define "custom.custom.configuration" -}}
6 | {{ template "custom.custom.configuration.header" . }}
7 |
8 | N/A
9 | {{- end -}}
10 |
--------------------------------------------------------------------------------
/charts/stable/radarr/templates/NOTES.txt:
--------------------------------------------------------------------------------
1 | {{- include "common.notes.defaultNotes" . -}}
2 |
--------------------------------------------------------------------------------
/charts/stable/radicale/README_CONFIG.md.gotmpl:
--------------------------------------------------------------------------------
1 | {{- define "custom.custom.configuration.header" -}}
2 | ## Custom configuration
3 | {{- end -}}
4 |
5 | {{- define "custom.custom.configuration" -}}
6 | {{ template "custom.custom.configuration.header" . }}
7 |
8 | N/A
9 | {{- end -}}
10 |
--------------------------------------------------------------------------------
/charts/stable/radicale/ci/ct-values.yaml:
--------------------------------------------------------------------------------
1 | configmap:
2 | config:
3 | enabled: true
4 |
--------------------------------------------------------------------------------
/charts/stable/radicale/templates/NOTES.txt:
--------------------------------------------------------------------------------
1 | {{- include "common.notes.defaultNotes" . -}}
2 |
--------------------------------------------------------------------------------
/charts/stable/readarr/templates/NOTES.txt:
--------------------------------------------------------------------------------
1 | {{- include "common.notes.defaultNotes" . -}}
2 |
--------------------------------------------------------------------------------
/charts/stable/readarr/templates/common.yaml:
--------------------------------------------------------------------------------
1 | {{ include "common.all" . }}
2 |
--------------------------------------------------------------------------------
/charts/stable/recipes/README_CONFIG.md.gotmpl:
--------------------------------------------------------------------------------
1 | {{- define "custom.custom.configuration.header" -}}
2 | ## Custom configuration
3 | {{- end -}}
4 |
5 | {{- define "custom.custom.configuration" -}}
6 | {{ template "custom.custom.configuration.header" . }}
7 |
8 | N/A
9 | {{- end -}}
10 |
--------------------------------------------------------------------------------
/charts/stable/recipes/templates/NOTES.txt:
--------------------------------------------------------------------------------
1 | {{- include "common.notes.defaultNotes" . -}}
2 |
--------------------------------------------------------------------------------
/charts/stable/resilio-sync/README_CONFIG.md.gotmpl:
--------------------------------------------------------------------------------
1 | {{- define "custom.custom.configuration.header" -}}
2 | ## Custom configuration
3 | {{- end -}}
4 |
5 | {{- define "custom.custom.configuration" -}}
6 | {{ template "custom.custom.configuration.header" . }}
7 |
8 | N/A
9 | {{- end -}}
10 |
--------------------------------------------------------------------------------
/charts/stable/resilio-sync/templates/NOTES.txt:
--------------------------------------------------------------------------------
1 | {{- include "common.notes.defaultNotes" . -}}
2 |
--------------------------------------------------------------------------------
/charts/stable/resilio-sync/templates/common.yaml:
--------------------------------------------------------------------------------
1 | {{ include "common.all" . }}
2 |
--------------------------------------------------------------------------------
/charts/stable/reverse-proxy/README_CONFIG.md.gotmpl:
--------------------------------------------------------------------------------
1 | {{- define "custom.custom.configuration.header" -}}
2 | ## Custom configuration
3 | {{- end -}}
4 |
5 | {{- define "custom.custom.configuration" -}}
6 | {{ template "custom.custom.configuration.header" . }}
7 |
8 | N/A
9 | {{- end -}}
10 |
--------------------------------------------------------------------------------
/charts/stable/rhasspy/README_CONFIG.md.gotmpl:
--------------------------------------------------------------------------------
1 | {{- define "custom.custom.configuration.header" -}}
2 | ## Custom configuration
3 | {{- end -}}
4 |
5 | {{- define "custom.custom.configuration" -}}
6 | {{ template "custom.custom.configuration.header" . }}
7 |
8 | N/A
9 | {{- end -}}
10 |
--------------------------------------------------------------------------------
/charts/stable/rhasspy/templates/NOTES.txt:
--------------------------------------------------------------------------------
1 | {{- include "common.notes.defaultNotes" . -}}
2 |
--------------------------------------------------------------------------------
/charts/stable/rhasspy/templates/common.yaml:
--------------------------------------------------------------------------------
1 | {{ include "common.all" . }}
2 |
--------------------------------------------------------------------------------
/charts/stable/rtorrent-flood/README_CONFIG.md.gotmpl:
--------------------------------------------------------------------------------
1 | {{- define "custom.custom.configuration.header" -}}
2 | ## Custom configuration
3 | {{- end -}}
4 |
5 | {{- define "custom.custom.configuration" -}}
6 | {{ template "custom.custom.configuration.header" . }}
7 |
8 | N/A
9 | {{- end -}}
10 |
--------------------------------------------------------------------------------
/charts/stable/rtorrent-flood/ci/ct-values.yaml:
--------------------------------------------------------------------------------
1 | persistence:
2 | config:
3 | enabled: true
4 | type: emptyDir
5 | downloads:
6 | enabled: true
7 | type: emptyDir
8 |
--------------------------------------------------------------------------------
/charts/stable/rtorrent-flood/templates/NOTES.txt:
--------------------------------------------------------------------------------
1 | {{- include "common.notes.defaultNotes" . -}}
2 |
--------------------------------------------------------------------------------
/charts/stable/rtorrent-flood/templates/configmap.yaml:
--------------------------------------------------------------------------------
1 | {{- include "common.values.setup" . -}}
2 | ---
3 | apiVersion: v1
4 | kind: ConfigMap
5 | metadata:
6 | name: {{ include "common.names.fullname" . }}-config
7 | labels:
8 | {{- include "common.labels" . | nindent 4 }}
9 | data:
10 | .rtorrent.rc: |
11 | {{- .Values.config | nindent 4 }}
12 |
--------------------------------------------------------------------------------
/charts/stable/rtorrent-rutorrent/README_CONFIG.md.gotmpl:
--------------------------------------------------------------------------------
1 | {{- define "custom.custom.configuration.header" -}}
2 | ## Custom configuration
3 | {{- end -}}
4 |
5 | {{- define "custom.custom.configuration" -}}
6 | {{ template "custom.custom.configuration.header" . }}
7 |
8 | N/A
9 | {{- end -}}
10 |
--------------------------------------------------------------------------------
/charts/stable/rtorrent-rutorrent/templates/NOTES.txt:
--------------------------------------------------------------------------------
1 | {{- include "common.notes.defaultNotes" . -}}
2 |
--------------------------------------------------------------------------------
/charts/stable/rtorrent-rutorrent/templates/common.yaml:
--------------------------------------------------------------------------------
1 | {{ include "common.all" . }}
2 |
--------------------------------------------------------------------------------
/charts/stable/rtsp-to-web/README_CONFIG.md.gotmpl:
--------------------------------------------------------------------------------
1 | {{- define "custom.custom.configuration.header" -}}
2 | ## Custom configuration
3 | {{- end -}}
4 |
5 | {{- define "custom.custom.configuration" -}}
6 | {{ template "custom.custom.configuration.header" . }}
7 |
8 | N/A
9 | {{- end -}}
10 |
--------------------------------------------------------------------------------
/charts/stable/rtsp-to-web/templates/NOTES.txt:
--------------------------------------------------------------------------------
1 | {{- include "common.notes.defaultNotes" . -}}
2 |
--------------------------------------------------------------------------------
/charts/stable/rtsp-to-web/templates/common.yaml:
--------------------------------------------------------------------------------
1 | {{ include "common.all" . }}
2 |
--------------------------------------------------------------------------------
/charts/stable/sabnzbd/templates/NOTES.txt:
--------------------------------------------------------------------------------
1 | {{- include "common.notes.defaultNotes" . -}}
2 |
--------------------------------------------------------------------------------
/charts/stable/sabnzbd/templates/common.yaml:
--------------------------------------------------------------------------------
1 | {{ include "common.all" . }}
2 |
--------------------------------------------------------------------------------
/charts/stable/samba/README_CONFIG.md.gotmpl:
--------------------------------------------------------------------------------
1 | {{- define "custom.custom.configuration.header" -}}
2 | ## Custom configuration
3 | {{- end -}}
4 |
5 | {{- define "custom.custom.configuration" -}}
6 | {{ template "custom.custom.configuration.header" . }}
7 |
8 | N/A
9 | {{- end -}}
10 |
--------------------------------------------------------------------------------
/charts/stable/samba/templates/NOTES.txt:
--------------------------------------------------------------------------------
1 | {{- include "common.notes.defaultNotes" . -}}
2 |
--------------------------------------------------------------------------------
/charts/stable/satisfactory/README_CONFIG.md.gotmpl:
--------------------------------------------------------------------------------
1 | {{- define "custom.custom.configuration.header" -}}
2 | ## Custom configuration
3 | {{- end -}}
4 |
5 | {{- define "custom.custom.configuration" -}}
6 | {{ template "custom.custom.configuration.header" . }}
7 |
8 | N/A
9 | {{- end -}}
10 |
--------------------------------------------------------------------------------
/charts/stable/satisfactory/templates/NOTES.txt:
--------------------------------------------------------------------------------
1 | {{- include "common.notes.defaultNotes" . -}}
2 |
--------------------------------------------------------------------------------
/charts/stable/satisfactory/templates/common.yaml:
--------------------------------------------------------------------------------
1 | {{ include "common.all" . }}
2 |
--------------------------------------------------------------------------------
/charts/stable/seafile/README_CONFIG.md.gotmpl:
--------------------------------------------------------------------------------
1 | {{- define "custom.custom.configuration.header" -}}
2 | ## Custom configuration
3 | {{- end -}}
4 |
5 | {{- define "custom.custom.configuration" -}}
6 | {{ template "custom.custom.configuration.header" . }}
7 |
8 | N/A
9 | {{- end -}}
10 |
--------------------------------------------------------------------------------
/charts/stable/seafile/templates/NOTES.txt:
--------------------------------------------------------------------------------
1 | {{- include "common.notes.defaultNotes" . -}}
2 |
--------------------------------------------------------------------------------
/charts/stable/seafile/templates/common.yaml:
--------------------------------------------------------------------------------
1 | {{ include "common.all" . }}
2 |
--------------------------------------------------------------------------------
/charts/stable/searx/README_CONFIG.md.gotmpl:
--------------------------------------------------------------------------------
1 | {{- define "custom.custom.configuration.header" -}}
2 | ## Custom configuration
3 | {{- end -}}
4 |
5 | {{- define "custom.custom.configuration" -}}
6 | {{ template "custom.custom.configuration.header" . }}
7 |
8 | N/A
9 | {{- end -}}
10 |
--------------------------------------------------------------------------------
/charts/stable/searx/ci/ct-values.yaml:
--------------------------------------------------------------------------------
1 | ingress:
2 | main:
3 | enabled: true
4 |
--------------------------------------------------------------------------------
/charts/stable/searx/templates/NOTES.txt:
--------------------------------------------------------------------------------
1 | {{- include "common.notes.defaultNotes" . -}}
2 |
--------------------------------------------------------------------------------
/charts/stable/searx/templates/secrets.yaml:
--------------------------------------------------------------------------------
1 | {{- include "common.values.setup" . -}}
2 | {{- if not .Values.searx.existingSecret }}
3 | ---
4 | apiVersion: v1
5 | kind: Secret
6 | metadata:
7 | name: {{ include "common.names.fullname" . }}-config
8 | labels:
9 | {{- include "common.labels" . | nindent 4 }}
10 | stringData:
11 | BIND_ADDRESS: "0.0.0.0:8080"
12 | BASE_URL: {{ .Values.searx.baseUrl }}
13 | MORTY_URL: {{ print .Values.searx.baseUrl "/morty/" }}
14 | MORTY_KEY: {{ .Values.searx.mortyKey }}
15 | {{- end }}
16 |
--------------------------------------------------------------------------------
/charts/stable/send/README_CONFIG.md.gotmpl:
--------------------------------------------------------------------------------
1 | {{- define "custom.custom.configuration.header" -}}
2 | ## Custom configuration
3 | {{- end -}}
4 |
5 | {{- define "custom.custom.configuration" -}}
6 | {{ template "custom.custom.configuration.header" . }}
7 |
8 | N/A
9 | {{- end -}}
10 |
--------------------------------------------------------------------------------
/charts/stable/send/templates/NOTES.txt:
--------------------------------------------------------------------------------
1 | {{- include "common.notes.defaultNotes" . -}}
2 |
--------------------------------------------------------------------------------
/charts/stable/send/templates/common.yaml:
--------------------------------------------------------------------------------
1 | {{ include "common.all" . }}
2 |
--------------------------------------------------------------------------------
/charts/stable/ser2sock/templates/NOTES.txt:
--------------------------------------------------------------------------------
1 | {{- include "common.notes.defaultNotes" . -}}
2 |
--------------------------------------------------------------------------------
/charts/stable/ser2sock/templates/common.yaml:
--------------------------------------------------------------------------------
1 | {{ include "common.all" . }}
2 |
--------------------------------------------------------------------------------
/charts/stable/sharry/.helmignore:
--------------------------------------------------------------------------------
1 | # Patterns to ignore when building packages.
2 | # This supports shell glob matching, relative path matching, and
3 | # negation (prefixed with !). Only one pattern per line.
4 | .DS_Store
5 | # Common VCS dirs
6 | .git/
7 | .gitignore
8 | .bzr/
9 | .bzrignore
10 | .hg/
11 | .hgignore
12 | .svn/
13 | # Common backup files
14 | *.swp
15 | *.bak
16 | *.tmp
17 | *~
18 | # Various IDEs
19 | .project
20 | .idea/
21 | *.tmproj
22 | .vscode/
23 | # OWNERS file for Kubernetes
24 | OWNERS
25 | # helm-docs templates
26 | *.gotmpl
--------------------------------------------------------------------------------
/charts/stable/sharry/README_CONFIG.md.gotmpl:
--------------------------------------------------------------------------------
1 | {{- define "custom.custom.configuration.header" -}}
2 | ## Custom configuration
3 | {{- end -}}
4 |
5 | {{- define "custom.custom.configuration" -}}
6 | {{ template "custom.custom.configuration.header" . }}
7 |
8 | N/A
9 | {{- end -}}
10 |
--------------------------------------------------------------------------------
/charts/stable/sharry/templates/NOTES.txt:
--------------------------------------------------------------------------------
1 | {{- include "common.notes.defaultNotes" . -}}
2 |
--------------------------------------------------------------------------------
/charts/stable/sharry/templates/configmap.yaml:
--------------------------------------------------------------------------------
1 | {{- include "common.values.setup" . -}}
2 | ---
3 | apiVersion: v1
4 | kind: ConfigMap
5 | metadata:
6 | name: {{ include "common.names.fullname" . }}-config
7 | labels:
8 | {{- include "common.labels" . | nindent 4 }}
9 | data:
10 | sharry.conf: |
11 | {{- tpl .Values.config $| nindent 4 }}
12 |
--------------------------------------------------------------------------------
/charts/stable/shinobi/README_CONFIG.md.gotmpl:
--------------------------------------------------------------------------------
1 | {{- define "custom.custom.configuration.header" -}}
2 | ## Custom configuration
3 | {{- end -}}
4 |
5 | {{- define "custom.custom.configuration" -}}
6 | {{ template "custom.custom.configuration.header" . }}
7 |
8 | N/A
9 | {{- end -}}
10 |
--------------------------------------------------------------------------------
/charts/stable/shinobi/templates/NOTES.txt:
--------------------------------------------------------------------------------
1 | {{- include "common.notes.defaultNotes" . -}}
2 |
--------------------------------------------------------------------------------
/charts/stable/shinobi/templates/common.yaml:
--------------------------------------------------------------------------------
1 | {{ include "common.all" . }}
2 |
--------------------------------------------------------------------------------
/charts/stable/shlink/README_CONFIG.md.gotmpl:
--------------------------------------------------------------------------------
1 | {{- define "custom.custom.configuration.header" -}}
2 | ## Custom configuration
3 | {{- end -}}
4 |
5 | {{- define "custom.custom.configuration" -}}
6 | {{ template "custom.custom.configuration.header" . }}
7 |
8 | N/A
9 | {{- end -}}
10 |
--------------------------------------------------------------------------------
/charts/stable/shlink/templates/NOTES.txt:
--------------------------------------------------------------------------------
1 | {{- include "common.notes.defaultNotes" . -}}
2 |
--------------------------------------------------------------------------------
/charts/stable/shlink/templates/common.yaml:
--------------------------------------------------------------------------------
1 | {{ include "common.all" . }}
2 |
--------------------------------------------------------------------------------
/charts/stable/skypilot/.gitignore:
--------------------------------------------------------------------------------
1 | Chart.lock
2 | charts/
3 |
--------------------------------------------------------------------------------
/charts/stable/skypilot/.helmignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/geek-cookbook/charts/8b4cb4d87ff9be0c3019948c60c32ae46e288e78/charts/stable/skypilot/.helmignore
--------------------------------------------------------------------------------
/charts/stable/skypilot/Chart.yaml:
--------------------------------------------------------------------------------
1 | apiVersion: v2
2 | name: skypilot
3 | description: A Helm chart for deploying SkyPilot API server on Kubernetes
4 | type: application
5 | version: 0.0.1-pre-07
6 | appVersion: "0.0"
7 | dependencies:
8 | - name: ingress-nginx
9 | version: 4.11.3
10 | repository: https://kubernetes.github.io/ingress-nginx
11 | condition: ingress-nginx.enabled
12 |
--------------------------------------------------------------------------------
/charts/stable/skypilot/templates/NOTES.txt:
--------------------------------------------------------------------------------
1 | {{- if not .Values.apiService.skipResourceCheck }}
2 | {{- include "skypilot.checkResources" . }}
3 | {{- end }}
4 |
--------------------------------------------------------------------------------
/charts/stable/skypilot/templates/api-configmap.yaml:
--------------------------------------------------------------------------------
1 | {{- if .Values.apiService.config }}
2 | apiVersion: v1
3 | kind: ConfigMap
4 | metadata:
5 | name: {{ .Release.Name }}-config
6 | namespace: {{ .Release.Namespace }}
7 | data:
8 | config.yaml: |
9 | {{ .Values.apiService.config | indent 4 }}
10 | {{- end }}
11 |
--------------------------------------------------------------------------------
/charts/stable/skypilot/templates/api-service.yaml:
--------------------------------------------------------------------------------
1 | apiVersion: v1
2 | kind: Service
3 | metadata:
4 | name: {{ .Release.Name }}-api-service
5 | namespace: {{ .Release.Namespace }}
6 | spec:
7 | type: ClusterIP # Use clusterIP to allow ingress to authenticate
8 | ports:
9 | - port: 80
10 | targetPort: 46580 # Assuming your container listens on port 46580
11 | protocol: TCP
12 | selector:
13 | app: {{ .Release.Name }}-api
14 |
--------------------------------------------------------------------------------
/charts/stable/skypilot/templates/auth.yaml:
--------------------------------------------------------------------------------
1 | {{- if and (not .Values.ingress.authSecret) .Values.ingress.authCredentials }}
2 | apiVersion: v1
3 | kind: Secret
4 | metadata:
5 | name: {{ .Release.Name }}-basic-auth
6 | namespace: {{ .Release.Namespace }}
7 | type: Opaque
8 | stringData:
9 | auth: {{ .Values.ingress.authCredentials | quote }}
10 | {{- end }}
11 |
--------------------------------------------------------------------------------
/charts/stable/smarter-device-manager/templates/configmap.yaml:
--------------------------------------------------------------------------------
1 | {{- include "common.values.setup" . -}}
2 | ---
3 | apiVersion: v1
4 | kind: ConfigMap
5 | metadata:
6 | name: {{ include "common.names.fullname" . }}-config
7 | labels:
8 | {{- include "common.labels" . | nindent 4 }}
9 | data:
10 | conf.yaml: |
11 | {{- .Values.config | nindent 4 }}
12 |
--------------------------------------------------------------------------------
/charts/stable/sonarr/README_CONFIG.md.gotmpl:
--------------------------------------------------------------------------------
1 | {{- define "custom.custom.configuration.header" -}}
2 | ## Custom configuration
3 | {{- end -}}
4 |
5 | {{- define "custom.custom.configuration" -}}
6 | {{ template "custom.custom.configuration.header" . }}
7 |
8 | N/A
9 | {{- end -}}
10 |
--------------------------------------------------------------------------------
/charts/stable/sonarr/templates/NOTES.txt:
--------------------------------------------------------------------------------
1 | {{- include "common.notes.defaultNotes" . -}}
2 |
--------------------------------------------------------------------------------
/charts/stable/speedtest-exporter/README_CONFIG.md.gotmpl:
--------------------------------------------------------------------------------
1 | {{- define "custom.custom.configuration.header" -}}
2 | ## Custom configuration
3 | {{- end -}}
4 |
5 | {{- define "custom.custom.configuration" -}}
6 | {{ template "custom.custom.configuration.header" . }}
7 |
8 | N/A
9 | {{- end -}}
10 |
--------------------------------------------------------------------------------
/charts/stable/speedtest-exporter/templates/NOTES.txt:
--------------------------------------------------------------------------------
1 | {{- include "common.notes.defaultNotes" . -}}
2 |
--------------------------------------------------------------------------------
/charts/stable/speedtest-exporter/templates/common.yaml:
--------------------------------------------------------------------------------
1 | {{ include "common.all" . }}
2 |
--------------------------------------------------------------------------------
/charts/stable/stash/README_CONFIG.md.gotmpl:
--------------------------------------------------------------------------------
1 | {{- define "custom.custom.configuration.header" -}}
2 | ## Custom configuration
3 | {{- end -}}
4 |
5 | {{- define "custom.custom.configuration" -}}
6 | {{ template "custom.custom.configuration.header" . }}
7 |
8 | N/A
9 | {{- end -}}
10 |
--------------------------------------------------------------------------------
/charts/stable/stash/ci/ct-values.yaml:
--------------------------------------------------------------------------------
1 | env:
2 | STASH_PORT: 9999
3 | STASH_STASH: "/media"
4 | STASH_GENERATED: "/root/.stash/generated"
5 | STASH_METADATA: "/root/.stash/metadata"
6 | STASH_CACHE: "/root/.stash/cache"
7 | persistence:
8 | config:
9 | enabled: true
10 | type: emptyDir
11 | mountPath: /root/.stash
12 | media:
13 | enabled: true
14 | type: emptyDir
15 | mountPath: /media
16 |
--------------------------------------------------------------------------------
/charts/stable/stash/templates/NOTES.txt:
--------------------------------------------------------------------------------
1 | {{- include "common.notes.defaultNotes" . -}}
2 |
--------------------------------------------------------------------------------
/charts/stable/stash/templates/common.yaml:
--------------------------------------------------------------------------------
1 | {{ include "common.all" . }}
2 |
--------------------------------------------------------------------------------
/charts/stable/statping/README_CONFIG.md.gotmpl:
--------------------------------------------------------------------------------
1 | {{- define "custom.custom.configuration.header" -}}
2 | ## Custom configuration
3 | {{- end -}}
4 |
5 | {{- define "custom.custom.configuration" -}}
6 | {{ template "custom.custom.configuration.header" . }}
7 |
8 | N/A
9 | {{- end -}}
10 |
--------------------------------------------------------------------------------
/charts/stable/statping/templates/NOTES.txt:
--------------------------------------------------------------------------------
1 | {{- include "common.notes.defaultNotes" . -}}
2 |
--------------------------------------------------------------------------------
/charts/stable/statping/templates/common.yaml:
--------------------------------------------------------------------------------
1 | {{/* Make sure all variables are set properly */}}
2 | {{- include "common.values.setup" . }}
3 |
4 | {{/* Append the hardcoded settings */}}
5 | {{- define "statping.hardcodedValues" -}}
6 | env:
7 | VIRTUAL_PORT: {{ .Values.service.main.ports.http.port }}
8 | {{- end -}}
9 | {{- $_ := mergeOverwrite .Values (include "statping.hardcodedValues" . | fromYaml) -}}
10 |
11 | {{/* Render the templates */}}
12 | {{ include "common.all" . }}
13 |
--------------------------------------------------------------------------------
/charts/stable/syncthing/README_CONFIG.md.gotmpl:
--------------------------------------------------------------------------------
1 | {{- define "custom.custom.configuration.header" -}}
2 | ## Custom configuration
3 | {{- end -}}
4 |
5 | {{- define "custom.custom.configuration" -}}
6 | {{ template "custom.custom.configuration.header" . }}
7 |
8 | N/A
9 | {{- end -}}
10 |
--------------------------------------------------------------------------------
/charts/stable/syncthing/templates/NOTES.txt:
--------------------------------------------------------------------------------
1 | {{- include "common.notes.defaultNotes" . -}}
2 |
--------------------------------------------------------------------------------
/charts/stable/syncthing/templates/common.yaml:
--------------------------------------------------------------------------------
1 | {{ include "common.all" . }}
2 |
--------------------------------------------------------------------------------
/charts/stable/syslog-ng/README_CONFIG.md.gotmpl:
--------------------------------------------------------------------------------
1 | {{- define "custom.custom.configuration.header" -}}
2 | ## Custom configuration
3 | {{- end -}}
4 |
5 | {{- define "custom.custom.configuration" -}}
6 | {{ template "custom.custom.configuration.header" . }}
7 |
8 | N/A
9 | {{- end -}}
10 |
--------------------------------------------------------------------------------
/charts/stable/syslog-ng/templates/NOTES.txt:
--------------------------------------------------------------------------------
1 | {{- include "common.notes.defaultNotes" . -}}
2 |
--------------------------------------------------------------------------------
/charts/stable/syslog-ng/templates/common.yaml:
--------------------------------------------------------------------------------
1 | {{ include "common.all" . }}
2 |
--------------------------------------------------------------------------------
/charts/stable/tautulli/README_CONFIG.md.gotmpl:
--------------------------------------------------------------------------------
1 | {{- define "custom.custom.configuration.header" -}}
2 | ## Custom configuration
3 | {{- end -}}
4 |
5 | {{- define "custom.custom.configuration" -}}
6 | {{ template "custom.custom.configuration.header" . }}
7 |
8 | N/A
9 | {{- end -}}
10 |
--------------------------------------------------------------------------------
/charts/stable/tautulli/templates/NOTES.txt:
--------------------------------------------------------------------------------
1 | {{- include "common.notes.defaultNotes" . -}}
2 |
--------------------------------------------------------------------------------
/charts/stable/tautulli/templates/common.yaml:
--------------------------------------------------------------------------------
1 | {{ include "common.all" . }}
2 |
--------------------------------------------------------------------------------
/charts/stable/tdarr/.helmignore:
--------------------------------------------------------------------------------
1 | # Patterns to ignore when building packages.
2 | # This supports shell glob matching, relative path matching, and
3 | # negation (prefixed with !). Only one pattern per line.
4 | .DS_Store
5 | # Common VCS dirs
6 | .git/
7 | .gitignore
8 | .bzr/
9 | .bzrignore
10 | .hg/
11 | .hgignore
12 | .svn/
13 | # Common backup files
14 | *.swp
15 | *.bak
16 | *.tmp
17 | *~
18 | # Various IDEs
19 | .project
20 | .idea/
21 | *.tmproj
22 | .vscode/
23 | # OWNERS file for Kubernetes
24 | OWNERS
25 | # helm-docs templates
26 | *.gotmpl
--------------------------------------------------------------------------------
/charts/stable/tdarr/README_CONFIG.md.gotmpl:
--------------------------------------------------------------------------------
1 | {{- define "custom.custom.configuration.header" -}}
2 | ## Custom configuration
3 | {{- end -}}
4 |
5 | {{- define "custom.custom.configuration" -}}
6 | {{ template "custom.custom.configuration.header" . }}
7 |
8 | N/A
9 | {{- end -}}
10 |
--------------------------------------------------------------------------------
/charts/stable/tdarr/templates/NOTES.txt:
--------------------------------------------------------------------------------
1 | {{- include "common.notes.defaultNotes" . -}}
2 |
--------------------------------------------------------------------------------
/charts/stable/teedy/README_CONFIG.md.gotmpl:
--------------------------------------------------------------------------------
1 | {{- define "custom.custom.configuration.header" -}}
2 | ## Custom configuration
3 | {{- end -}}
4 |
5 | {{- define "custom.custom.configuration" -}}
6 | {{ template "custom.custom.configuration.header" . }}
7 |
8 | N/A
9 | {{- end -}}
10 |
--------------------------------------------------------------------------------
/charts/stable/teedy/templates/NOTES.txt:
--------------------------------------------------------------------------------
1 | {{- include "common.notes.defaultNotes" . -}}
2 |
--------------------------------------------------------------------------------
/charts/stable/teedy/templates/common.yaml:
--------------------------------------------------------------------------------
1 | {{ include "common.all" . }}
2 |
--------------------------------------------------------------------------------
/charts/stable/teslamate/.helmignore:
--------------------------------------------------------------------------------
1 | # Patterns to ignore when building packages.
2 | # This supports shell glob matching, relative path matching, and
3 | # negation (prefixed with !). Only one pattern per line.
4 | .DS_Store
5 | # Common VCS dirs
6 | .git/
7 | .gitignore
8 | .bzr/
9 | .bzrignore
10 | .hg/
11 | .hgignore
12 | .svn/
13 | # Common backup files
14 | *.swp
15 | *.bak
16 | *.tmp
17 | *~
18 | # Various IDEs
19 | .project
20 | .idea/
21 | *.tmproj
22 | .vscode/
23 | # OWNERS file for Kubernetes
24 | OWNERS
25 |
--------------------------------------------------------------------------------
/charts/stable/teslamate/README_CONFIG.md.gotmpl:
--------------------------------------------------------------------------------
1 | {{- define "custom.custom.configuration.header" -}}
2 | ## Custom configuration
3 | {{- end -}}
4 |
5 | {{- define "custom.custom.configuration" -}}
6 | {{ template "custom.custom.configuration.header" . }}
7 |
8 | N/A
9 | {{- end -}}
10 |
--------------------------------------------------------------------------------
/charts/stable/teslamate/ci/ct-values.yaml:
--------------------------------------------------------------------------------
1 | ---
2 | env:
3 | DISABLE_MQTT: "true"
4 |
5 | postgresql:
6 | enabled: true
7 |
--------------------------------------------------------------------------------
/charts/stable/teslamate/templates/NOTES.txt:
--------------------------------------------------------------------------------
1 | {{- include "common.notes.defaultNotes" . -}}
2 |
--------------------------------------------------------------------------------
/charts/stable/teslamate/templates/common.yaml:
--------------------------------------------------------------------------------
1 | {{ include "common.all" . }}
2 |
--------------------------------------------------------------------------------
/charts/stable/thelounge/README_CONFIG.md.gotmpl:
--------------------------------------------------------------------------------
1 | {{- define "custom.custom.configuration.header" -}}
2 | ## Custom configuration
3 | {{- end -}}
4 |
5 | {{- define "custom.custom.configuration" -}}
6 | {{ template "custom.custom.configuration.header" . }}
7 |
8 | N/A
9 | {{- end -}}
10 |
--------------------------------------------------------------------------------
/charts/stable/thelounge/ci/ct-values.yaml:
--------------------------------------------------------------------------------
1 | persistence:
2 | config:
3 | enabled: true
4 |
--------------------------------------------------------------------------------
/charts/stable/thelounge/templates/NOTES.txt:
--------------------------------------------------------------------------------
1 | {{- include "common.notes.defaultNotes" . -}}
2 |
--------------------------------------------------------------------------------
/charts/stable/thelounge/templates/common.yaml:
--------------------------------------------------------------------------------
1 | {{ include "common.all" . }}
2 |
--------------------------------------------------------------------------------
/charts/stable/theme-park/README_CONFIG.md.gotmpl:
--------------------------------------------------------------------------------
1 | {{- define "custom.custom.configuration.header" -}}
2 | ## Custom configuration
3 | {{- end -}}
4 |
5 | {{- define "custom.custom.configuration" -}}
6 | {{ template "custom.custom.configuration.header" . }}
7 |
8 | Note that this helm uses the k@h container image, not the developers image. The k@h container is a non-s6-overlay and rootless build, aimed for a k8s cluster.
9 | {{- end -}}
10 |
--------------------------------------------------------------------------------
/charts/stable/theme-park/templates/NOTES.txt:
--------------------------------------------------------------------------------
1 | {{- include "common.notes.defaultNotes" . -}}
2 |
--------------------------------------------------------------------------------
/charts/stable/theme-park/templates/common.yaml:
--------------------------------------------------------------------------------
1 | {{ include "common.all" . }}
2 |
--------------------------------------------------------------------------------
/charts/stable/traefik-forward-auth/.helmignore:
--------------------------------------------------------------------------------
1 | # Patterns to ignore when building packages.
2 | # This supports shell glob matching, relative path matching, and
3 | # negation (prefixed with !). Only one pattern per line.
4 | .DS_Store
5 | # Common VCS dirs
6 | .git/
7 | .gitignore
8 | .bzr/
9 | .bzrignore
10 | .hg/
11 | .hgignore
12 | .svn/
13 | # Common backup files
14 | *.swp
15 | *.bak
16 | *.tmp
17 | *.orig
18 | *~
19 | # Various IDEs
20 | .project
21 | .idea/
22 | *.tmproj
23 | .vscode/
24 |
25 | README.md.gotmpl
--------------------------------------------------------------------------------
/charts/stable/traefik-forward-auth/README_CONFIG.md.gotmpl:
--------------------------------------------------------------------------------
1 | {{- define "custom.custom.configuration.header" -}}
2 | ## Custom configuration
3 | {{- end -}}
4 |
5 | {{- define "custom.custom.configuration" -}}
6 | {{ template "custom.custom.configuration.header" . }}
7 |
8 | N/A
9 | {{- end -}}
10 |
--------------------------------------------------------------------------------
/charts/stable/traefik-forward-auth/ci/ct-values.yaml:
--------------------------------------------------------------------------------
1 | env:
2 | PROVIDERS_GOOGLE_CLIENT_ID: fakeclientid
3 | PROVIDERS_GOOGLE_CLIENT_SECRET: fakeclientsecret
4 |
5 | middleware:
6 | enabled: false
7 |
--------------------------------------------------------------------------------
/charts/stable/traefik-forward-auth/templates/NOTES.txt:
--------------------------------------------------------------------------------
1 | {{- include "common.notes.defaultNotes" . -}}
2 |
--------------------------------------------------------------------------------
/charts/stable/traefik-forward-auth/templates/secret.yaml:
--------------------------------------------------------------------------------
1 | {{- include "common.values.setup" . -}}
2 | {{- if not .Values.env.SECRET }}
3 | ---
4 | apiVersion: v1
5 | kind: Secret
6 | metadata:
7 | name: {{ template "common.names.fullname" . }}
8 | labels:
9 | {{- include "common.labels" . | nindent 4 }}
10 | type: Opaque
11 | data:
12 | secret: {{ template "traefik-forward-auth.secret" . }}
13 | {{- end }}
14 |
--------------------------------------------------------------------------------
/charts/stable/transmission/README_CONFIG.md.gotmpl:
--------------------------------------------------------------------------------
1 | {{- define "custom.custom.configuration.header" -}}
2 | ## Custom configuration
3 | {{- end -}}
4 |
5 | {{- define "custom.custom.configuration" -}}
6 | {{ template "custom.custom.configuration.header" . }}
7 |
8 | To view more environment variables [see here](https://github.com/geek-cookbook/container-images/tree/main/apps/transmission/settings.json.tmpl)
9 | {{- end -}}
10 |
--------------------------------------------------------------------------------
/charts/stable/transmission/templates/NOTES.txt:
--------------------------------------------------------------------------------
1 | {{- include "common.notes.defaultNotes" . -}}
2 |
--------------------------------------------------------------------------------
/charts/stable/transmission/templates/common.yaml:
--------------------------------------------------------------------------------
1 | {{ include "common.all" . }}
2 |
--------------------------------------------------------------------------------
/charts/stable/tt-rss/README_CONFIG.md.gotmpl:
--------------------------------------------------------------------------------
1 | {{- define "custom.custom.configuration.header" -}}
2 | ## Custom configuration
3 | {{- end -}}
4 |
5 | {{- define "custom.custom.configuration" -}}
6 | {{ template "custom.custom.configuration.header" . }}
7 |
8 | N/A
9 | {{- end -}}
10 |
--------------------------------------------------------------------------------
/charts/stable/tt-rss/templates/NOTES.txt:
--------------------------------------------------------------------------------
1 | {{- include "common.notes.defaultNotes" . -}}
2 |
--------------------------------------------------------------------------------
/charts/stable/tt-rss/templates/common.yaml:
--------------------------------------------------------------------------------
1 | {{ include "common.all" . }}
2 |
--------------------------------------------------------------------------------
/charts/stable/tvheadend/README_CONFIG.md.gotmpl:
--------------------------------------------------------------------------------
1 | {{- define "custom.custom.configuration.header" -}}
2 | ## Custom configuration
3 | {{- end -}}
4 |
5 | {{- define "custom.custom.configuration" -}}
6 | {{ template "custom.custom.configuration.header" . }}
7 |
8 | N/A
9 | {{- end -}}
10 |
--------------------------------------------------------------------------------
/charts/stable/tvheadend/templates/NOTES.txt:
--------------------------------------------------------------------------------
1 | {{- include "common.notes.defaultNotes" . -}}
--------------------------------------------------------------------------------
/charts/stable/tvheadend/templates/common.yaml:
--------------------------------------------------------------------------------
1 | {{ include "common.all" . }}
2 |
--------------------------------------------------------------------------------
/charts/stable/unifi-poller/README_CONFIG.md.gotmpl:
--------------------------------------------------------------------------------
1 | {{- define "custom.custom.configuration.header" -}}
2 | ## Custom configuration
3 | {{- end -}}
4 |
5 | {{- define "custom.custom.configuration" -}}
6 | {{ template "custom.custom.configuration.header" . }}
7 |
8 | N/A
9 | {{- end -}}
10 |
--------------------------------------------------------------------------------
/charts/stable/unifi-poller/templates/NOTES.txt:
--------------------------------------------------------------------------------
1 | {{- include "common.notes.defaultNotes" . -}}
2 |
--------------------------------------------------------------------------------
/charts/stable/unifi-poller/templates/common.yaml:
--------------------------------------------------------------------------------
1 | {{ include "common.all" . }}
2 |
--------------------------------------------------------------------------------
/charts/stable/unifi/ci/ct-values.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/geek-cookbook/charts/8b4cb4d87ff9be0c3019948c60c32ae46e288e78/charts/stable/unifi/ci/ct-values.yaml
--------------------------------------------------------------------------------
/charts/stable/unifi/ci/mongo-values.yaml:
--------------------------------------------------------------------------------
1 | mongodb:
2 | enabled: true
3 |
--------------------------------------------------------------------------------
/charts/stable/unifi/templates/NOTES.txt:
--------------------------------------------------------------------------------
1 | {{- include "common.notes.defaultNotes" . -}}
2 |
--------------------------------------------------------------------------------
/charts/stable/unpackerr/README_CONFIG.md.gotmpl:
--------------------------------------------------------------------------------
1 | {{- define "custom.custom.configuration.header" -}}
2 | ## Custom configuration
3 | {{- end -}}
4 |
5 | {{- define "custom.custom.configuration" -}}
6 | {{ template "custom.custom.configuration.header" . }}
7 |
8 | N/A
9 | {{- end -}}
10 |
--------------------------------------------------------------------------------
/charts/stable/unpackerr/templates/NOTES.txt:
--------------------------------------------------------------------------------
1 | {{- include "common.notes.defaultNotes" . -}}
2 |
--------------------------------------------------------------------------------
/charts/stable/unpackerr/templates/common.yaml:
--------------------------------------------------------------------------------
1 | {{ include "common.all" . }}
2 |
--------------------------------------------------------------------------------
/charts/stable/uptime-kuma/README_CONFIG.md.gotmpl:
--------------------------------------------------------------------------------
1 | {{- define "custom.custom.configuration.header" -}}
2 | ## Custom configuration
3 | {{- end -}}
4 |
5 | {{- define "custom.custom.configuration" -}}
6 | {{ template "custom.custom.configuration.header" . }}
7 |
8 | N/A
9 | {{- end -}}
10 |
--------------------------------------------------------------------------------
/charts/stable/uptime-kuma/templates/NOTES.txt:
--------------------------------------------------------------------------------
1 | {{- include "common.notes.defaultNotes" . -}}
2 |
--------------------------------------------------------------------------------
/charts/stable/uptime-kuma/templates/common.yaml:
--------------------------------------------------------------------------------
1 | {{/* Make sure all variables are set properly */}}
2 | {{- include "common.values.setup" . }}
3 |
4 | {{/* Append the hardcoded settings */}}
5 | {{- define "uptime-kuma.hardcodedValues" -}}
6 | env:
7 | UPTIME_KUMA_PORT: {{ .Values.service.main.ports.http.port }}
8 | {{- end -}}
9 | {{- $_ := mergeOverwrite .Values (include "uptime-kuma.hardcodedValues" . | fromYaml) -}}
10 |
11 | {{/* Render the templates */}}
12 | {{ include "common.all" . }}
13 |
--------------------------------------------------------------------------------
/charts/stable/uptimerobot-prometheus/.helmignore:
--------------------------------------------------------------------------------
1 | # Patterns to ignore when building packages.
2 | # This supports shell glob matching, relative path matching, and
3 | # negation (prefixed with !). Only one pattern per line.
4 | .DS_Store
5 | # Common VCS dirs
6 | .git/
7 | .gitignore
8 | .bzr/
9 | .bzrignore
10 | .hg/
11 | .hgignore
12 | .svn/
13 | # Common backup files
14 | *.swp
15 | *.bak
16 | *.tmp
17 | *~
18 | # Various IDEs
19 | .project
20 | .idea/
21 | *.tmproj
22 | # OWNERS file for Kubernetes
23 | OWNERS
--------------------------------------------------------------------------------
/charts/stable/uptimerobot-prometheus/README_CONFIG.md.gotmpl:
--------------------------------------------------------------------------------
1 | {{- define "custom.custom.configuration.header" -}}
2 | ## Custom configuration
3 | {{- end -}}
4 |
5 | {{- define "custom.custom.configuration" -}}
6 | {{ template "custom.custom.configuration.header" . }}
7 |
8 | ### Grafana Dashboard
9 |
10 | You can find an [example grafana dashboard](https://github.com/lekpamartin/uptimerobot_exporter/blob/master/dashboards/grafana.json) as shown in the screenshot above.
11 | {{- end -}}
12 |
--------------------------------------------------------------------------------
/charts/stable/uptimerobot-prometheus/templates/NOTES.txt:
--------------------------------------------------------------------------------
1 | {{- include "common.notes.defaultNotes" . -}}
2 |
--------------------------------------------------------------------------------
/charts/stable/uptimerobot-prometheus/templates/common.yaml:
--------------------------------------------------------------------------------
1 | {{ include "common.all" . }}
2 |
--------------------------------------------------------------------------------
/charts/stable/uptimerobot/.helmignore:
--------------------------------------------------------------------------------
1 | # Patterns to ignore when building packages.
2 | # This supports shell glob matching, relative path matching, and
3 | # negation (prefixed with !). Only one pattern per line.
4 | .DS_Store
5 | # Common VCS dirs
6 | .git/
7 | .gitignore
8 | .bzr/
9 | .bzrignore
10 | .hg/
11 | .hgignore
12 | .svn/
13 | # Common backup files
14 | *.swp
15 | *.bak
16 | *.tmp
17 | *~
18 | # Various IDEs
19 | .project
20 | .idea/
21 | *.tmproj
22 | # OWNERS file for Kubernetes
23 | OWNERS
--------------------------------------------------------------------------------
/charts/stable/uptimerobot/README_CONFIG.md.gotmpl:
--------------------------------------------------------------------------------
1 | {{- define "custom.custom.configuration.header" -}}
2 | ## Custom configuration
3 | {{- end -}}
4 |
5 | {{- define "custom.custom.configuration" -}}
6 | {{ template "custom.custom.configuration.header" . }}
7 |
8 | N/A
9 | {{- end -}}
10 |
--------------------------------------------------------------------------------
/charts/stable/valheim/.helmignore:
--------------------------------------------------------------------------------
1 | # Patterns to ignore when building packages.
2 | # This supports shell glob matching, relative path matching, and
3 | # negation (prefixed with !). Only one pattern per line.
4 | .DS_Store
5 | # Common VCS dirs
6 | .git/
7 | .gitignore
8 | .bzr/
9 | .bzrignore
10 | .hg/
11 | .hgignore
12 | .svn/
13 | # Common backup files
14 | *.swp
15 | *.bak
16 | *.tmp
17 | *~
18 | # Various IDEs
19 | .project
20 | .idea/
21 | *.tmproj
22 | .vscode/
23 | # OWNERS file for Kubernetes
24 | OWNERS
25 |
--------------------------------------------------------------------------------
/charts/stable/valheim/README_CONFIG.md.gotmpl:
--------------------------------------------------------------------------------
1 | {{- define "custom.custom.configuration.header" -}}
2 | ## Custom configuration
3 | {{- end -}}
4 |
5 | {{- define "custom.custom.configuration" -}}
6 | {{ template "custom.custom.configuration.header" . }}
7 |
8 | N/A
9 | {{- end -}}
10 |
--------------------------------------------------------------------------------
/charts/stable/valheim/templates/NOTES.txt:
--------------------------------------------------------------------------------
1 | {{- include "common.notes.defaultNotes" . -}}
2 |
--------------------------------------------------------------------------------
/charts/stable/valheim/templates/common.yaml:
--------------------------------------------------------------------------------
1 | {{- include "common.values.setup" . }}
2 |
3 | {{/* Append the hardcoded settings */}}
4 | {{- define "valheim.hardcodedValues" -}}
5 | probes:
6 | liveness:
7 | enabled: false
8 | readiness:
9 | enabled: false
10 | startup:
11 | enabled: false
12 | {{- end -}}
13 | {{- $_ := mergeOverwrite .Values (include "valheim.hardcodedValues" . | fromYaml) -}}
14 |
15 | {{/* Render the templates */}}
16 | {{ include "common.all" . }}
17 |
--------------------------------------------------------------------------------
/charts/stable/vaultwarden/ci/ct-values.yaml:
--------------------------------------------------------------------------------
1 | persistence:
2 | config:
3 | enabled: true
4 | type: emptyDir
5 |
--------------------------------------------------------------------------------
/charts/stable/vaultwarden/templates/NOTES.txt:
--------------------------------------------------------------------------------
1 | {{- include "common.notes.defaultNotes" . -}}
2 |
--------------------------------------------------------------------------------
/charts/stable/vaultwarden/templates/common.yaml:
--------------------------------------------------------------------------------
1 | {{ include "common.all" . }}
2 |
--------------------------------------------------------------------------------
/charts/stable/vikunja/.helmignore:
--------------------------------------------------------------------------------
1 | # Patterns to ignore when building packages.
2 | # This supports shell glob matching, relative path matching, and
3 | # negation (prefixed with !). Only one pattern per line.
4 | .DS_Store
5 | # Common VCS dirs
6 | .git/
7 | .gitignore
8 | .bzr/
9 | .bzrignore
10 | .hg/
11 | .hgignore
12 | .svn/
13 | # Common backup files
14 | *.swp
15 | *.bak
16 | *.tmp
17 | *~
18 | # Various IDEs
19 | .project
20 | .idea/
21 | *.tmproj
22 | .vscode/
23 | # OWNERS file for Kubernetes
24 | OWNERS
25 | # helm-docs templates
26 | *.gotmpl
--------------------------------------------------------------------------------
/charts/stable/vikunja/README_CONFIG.md.gotmpl:
--------------------------------------------------------------------------------
1 | {{- define "custom.custom.configuration.header" -}}
2 | ## Custom configuration
3 | {{- end -}}
4 |
5 | {{- define "custom.custom.configuration" -}}
6 | {{ template "custom.custom.configuration.header" . }}
7 |
8 | N/A
9 | {{- end -}}
10 |
--------------------------------------------------------------------------------
/charts/stable/vikunja/templates/NOTES.txt:
--------------------------------------------------------------------------------
1 | {{- include "common.notes.defaultNotes" . -}}
2 |
--------------------------------------------------------------------------------
/charts/stable/wallabag/README_CONFIG.md.gotmpl:
--------------------------------------------------------------------------------
1 | {{- define "custom.custom.configuration.header" -}}
2 | ## Custom configuration
3 | {{- end -}}
4 |
5 | {{- define "custom.custom.configuration" -}}
6 | {{ template "custom.custom.configuration.header" . }}
7 |
8 | Default login is `wallabag:wallabag`.
9 | {{- end -}}
10 |
--------------------------------------------------------------------------------
/charts/stable/wallabag/templates/NOTES.txt:
--------------------------------------------------------------------------------
1 | {{- include "common.notes.defaultNotes" . -}}
2 |
--------------------------------------------------------------------------------
/charts/stable/wallabag/templates/common.yaml:
--------------------------------------------------------------------------------
1 | {{ include "common.all" . }}
2 |
--------------------------------------------------------------------------------
/charts/stable/webhook-receiver/README_CONFIG.md.gotmpl:
--------------------------------------------------------------------------------
1 | {{- define "custom.custom.configuration.header" -}}
2 | ## Custom configuration
3 | {{- end -}}
4 |
5 | {{- define "custom.custom.configuration" -}}
6 | {{ template "custom.custom.configuration.header" . }}
7 |
8 | N/A
9 | {{- end -}}
10 |
--------------------------------------------------------------------------------
/charts/stable/webhook-receiver/templates/NOTES.txt:
--------------------------------------------------------------------------------
1 | {{- include "common.notes.defaultNotes" . -}}
2 |
--------------------------------------------------------------------------------
/charts/stable/webhook-receiver/templates/configmap.yaml:
--------------------------------------------------------------------------------
1 | {{- include "common.values.setup" . -}}
2 | ---
3 | apiVersion: v1
4 | kind: ConfigMap
5 | metadata:
6 | name: {{ include "common.names.fullname" . }}-config
7 | labels:
8 | {{- include "common.labels" . | nindent 4 }}
9 | data:
10 | hooks.yaml: |
11 | {{- .Values.config | nindent 4 }}
12 |
--------------------------------------------------------------------------------
/charts/stable/webtrees/README_CONFIG.md.gotmpl:
--------------------------------------------------------------------------------
1 | {{- define "custom.custom.configuration.header" -}}
2 | ## Custom configuration
3 | {{- end -}}
4 |
5 | {{- define "custom.custom.configuration" -}}
6 | {{ template "custom.custom.configuration.header" . }}
7 |
8 | N/A
9 | {{- end -}}
10 |
--------------------------------------------------------------------------------
/charts/stable/webtrees/ci/ct-values.yaml:
--------------------------------------------------------------------------------
1 | env:
2 | BASE_URL: https://webtrees.geek-cookbook.com
3 | DB_HOST: webtrees-mariadb
4 | DB_NAME: webtrees
5 | DB_USER: webtrees
6 | DB_PASS: webtreespass
7 | WT_USER: admin
8 | WT_NAME: Admin
9 | WT_PASS: adminpass
10 | WT_EMAIL: admin@geek-cookbook.com
11 |
12 |
13 | ingress:
14 | main:
15 | enabled: true
16 |
17 | fullnameOverride: webtrees
18 |
19 | mariadb:
20 | enabled: true
21 | fullnameOverride: webtrees-mariadb
22 |
--------------------------------------------------------------------------------
/charts/stable/webtrees/templates/NOTES.txt:
--------------------------------------------------------------------------------
1 | {{- include "common.notes.defaultNotes" . -}}
2 |
--------------------------------------------------------------------------------
/charts/stable/webtrees/templates/common.yaml:
--------------------------------------------------------------------------------
1 | {{ include "common.all" . }}
2 |
--------------------------------------------------------------------------------
/charts/stable/whoogle/README_CONFIG.md.gotmpl:
--------------------------------------------------------------------------------
1 | {{- define "custom.custom.configuration.header" -}}
2 | ## Custom configuration
3 | {{- end -}}
4 |
5 | {{- define "custom.custom.configuration" -}}
6 | {{ template "custom.custom.configuration.header" . }}
7 |
8 | N/A
9 | {{- end -}}
10 |
--------------------------------------------------------------------------------
/charts/stable/whoogle/templates/NOTES.txt:
--------------------------------------------------------------------------------
1 | {{- include "common.notes.defaultNotes" . -}}
2 |
--------------------------------------------------------------------------------
/charts/stable/whoogle/templates/common.yaml:
--------------------------------------------------------------------------------
1 | {{ include "common.all" . }}
2 |
--------------------------------------------------------------------------------
/charts/stable/wikijs/README_CONFIG.md.gotmpl:
--------------------------------------------------------------------------------
1 | {{- define "custom.custom.configuration.header" -}}
2 | ## Custom configuration
3 | {{- end -}}
4 |
5 | {{- define "custom.custom.configuration" -}}
6 | {{ template "custom.custom.configuration.header" . }}
7 |
8 | N/A
9 | {{- end -}}
10 |
--------------------------------------------------------------------------------
/charts/stable/wikijs/templates/NOTES.txt:
--------------------------------------------------------------------------------
1 | {{- include "common.notes.defaultNotes" . -}}
2 |
--------------------------------------------------------------------------------
/charts/stable/wikijs/templates/common.yaml:
--------------------------------------------------------------------------------
1 | ---
2 |
3 | {{ include "common.all" . }}
4 |
--------------------------------------------------------------------------------
/charts/stable/wireguard/README_CONFIG.md.gotmpl:
--------------------------------------------------------------------------------
1 | {{- define "custom.custom.configuration.header" -}}
2 | ## Custom configuration
3 | {{- end -}}
4 |
5 | {{- define "custom.custom.configuration" -}}
6 | {{ template "custom.custom.configuration.header" . }}
7 |
8 | The container in this chart requires the wg0.conf to be in /etc/wireguard
9 | for it to run. Either add it under configSecret or under persistence.
10 | {{- end -}}
11 |
--------------------------------------------------------------------------------
/charts/stable/wireguard/templates/NOTES.txt:
--------------------------------------------------------------------------------
1 | {{- include "common.notes.defaultNotes" . -}}
2 |
--------------------------------------------------------------------------------
/charts/stable/wireguard/templates/secret.yaml:
--------------------------------------------------------------------------------
1 | {{- if .Values.configSecret.enabled -}}
2 | {{- include "common.values.setup" . -}}
3 | ---
4 | apiVersion: v1
5 | kind: Secret
6 | metadata:
7 | name: {{ template "common.names.fullname" . }}-config
8 | labels:
9 | {{- include "common.labels" . | nindent 4 }}
10 | type: Opaque
11 | data:
12 | wg0.conf: |
13 | {{ .Values.configSecret.config | indent 4 }}
14 | {{- end }}
15 |
--------------------------------------------------------------------------------
/charts/stable/wmbusmeters/templates/NOTES.txt:
--------------------------------------------------------------------------------
1 | {{- include "common.notes.defaultNotes" . -}}
2 |
--------------------------------------------------------------------------------
/charts/stable/xbackbone/README_CONFIG.md.gotmpl:
--------------------------------------------------------------------------------
1 | {{- define "custom.custom.configuration.header" -}}
2 | ## Custom configuration
3 | {{- end -}}
4 |
5 | {{- define "custom.custom.configuration" -}}
6 | {{ template "custom.custom.configuration.header" . }}
7 |
8 | N/A
9 | {{- end -}}
10 |
--------------------------------------------------------------------------------
/charts/stable/xbackbone/templates/NOTES.txt:
--------------------------------------------------------------------------------
1 | {{- include "common.notes.defaultNotes" . -}}
2 |
--------------------------------------------------------------------------------
/charts/stable/xbackbone/templates/common.yaml:
--------------------------------------------------------------------------------
1 | {{ include "common.all" . }}
2 |
--------------------------------------------------------------------------------
/charts/stable/xbvr/README_CONFIG.md.gotmpl:
--------------------------------------------------------------------------------
1 | {{- define "custom.custom.configuration.header" -}}
2 | ## Custom configuration
3 | {{- end -}}
4 |
5 | {{- define "custom.custom.configuration" -}}
6 | {{ template "custom.custom.configuration.header" . }}
7 |
8 | N/A
9 | {{- end -}}
10 |
--------------------------------------------------------------------------------
/charts/stable/xbvr/templates/NOTES.txt:
--------------------------------------------------------------------------------
1 | {{- include "common.notes.defaultNotes" . -}}
2 |
--------------------------------------------------------------------------------
/charts/stable/xbvr/templates/common.yaml:
--------------------------------------------------------------------------------
1 | {{ include "common.all" . }}
2 |
--------------------------------------------------------------------------------
/charts/stable/xteve/README_CONFIG.md.gotmpl:
--------------------------------------------------------------------------------
1 | {{- define "custom.custom.configuration.header" -}}
2 | ## Custom configuration
3 | {{- end -}}
4 |
5 | {{- define "custom.custom.configuration" -}}
6 | {{ template "custom.custom.configuration.header" . }}
7 |
8 | N/A
9 | {{- end -}}
10 |
--------------------------------------------------------------------------------
/charts/stable/xteve/templates/NOTES.txt:
--------------------------------------------------------------------------------
1 | {{- include "common.notes.defaultNotes" . -}}
2 |
--------------------------------------------------------------------------------
/charts/stable/xteve/templates/common.yaml:
--------------------------------------------------------------------------------
1 | {{ include "common.all" . }}
2 |
--------------------------------------------------------------------------------
/charts/stable/youtubedl-material/README_CONFIG.md.gotmpl:
--------------------------------------------------------------------------------
1 | {{- define "custom.custom.configuration.header" -}}
2 | ## Custom configuration
3 | {{- end -}}
4 |
5 | {{- define "custom.custom.configuration" -}}
6 | {{ template "custom.custom.configuration.header" . }}
7 |
8 | N/A
9 | {{- end -}}
10 |
--------------------------------------------------------------------------------
/charts/stable/youtubedl-material/templates/NOTES.txt:
--------------------------------------------------------------------------------
1 | {{- include "common.notes.defaultNotes" . -}}
2 |
--------------------------------------------------------------------------------
/charts/stable/youtubedl-material/templates/common.yaml:
--------------------------------------------------------------------------------
1 | {{ include "common.all" . }}
2 |
--------------------------------------------------------------------------------
/charts/stable/zalando-postgres-cluster/.helmignore:
--------------------------------------------------------------------------------
1 | # Patterns to ignore when building packages.
2 | # This supports shell glob matching, relative path matching, and
3 | # negation (prefixed with !). Only one pattern per line.
4 | .DS_Store
5 | # Common VCS dirs
6 | .git/
7 | .gitignore
8 | .bzr/
9 | .bzrignore
10 | .hg/
11 | .hgignore
12 | .svn/
13 | # Common backup files
14 | *.swp
15 | *.bak
16 | *.tmp
17 | *~
18 | # Various IDEs
19 | .project
20 | .idea/
21 | *.tmproj
22 | .vscode/
23 | # OWNERS file for Kubernetes
24 | OWNERS
25 |
--------------------------------------------------------------------------------
/charts/stable/zalando-postgres-cluster/CHANGELOG.md:
--------------------------------------------------------------------------------
1 | # Changelog
2 | All notable changes to this project will be documented in this file.
3 |
4 | The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
5 | and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
6 |
7 | ## [2.2.0]
8 |
9 | ### Changed
10 |
11 | - Support for persistence volume settings in dumpBackup
12 | ## [1.0.0]
13 |
14 | ### Changed
15 |
16 | - Initial version
17 |
--------------------------------------------------------------------------------
/charts/stable/zalando-postgres-cluster/templates/storageClass.yaml:
--------------------------------------------------------------------------------
1 | {{- include "common.values.setup" . -}}
2 | ---
3 | apiVersion: storage.k8s.io/v1
4 | kind: StorageClass
5 | metadata:
6 | name: {{ include "zalando-postgres-cluster.storageClass" . }}
7 | labels:
8 | {{- include "common.labels" . | nindent 4 }}
9 | annotations:
10 | provisioner: kubernetes.io/no-provisioner
11 | reclaimPolicy: Delete
12 | volumeBindingMode: WaitForFirstConsumer
13 |
--------------------------------------------------------------------------------
/charts/stable/zigbee2mqtt/ci/ct-values.yaml:
--------------------------------------------------------------------------------
1 | ingress:
2 | main:
3 | enabled: true
4 |
5 | persistence:
6 | data:
7 | enabled: true
8 | type: emptyDir
9 | mountPath: /data
10 |
--------------------------------------------------------------------------------
/charts/stable/zigbee2mqtt/templates/NOTES.txt:
--------------------------------------------------------------------------------
1 | {{- include "common.notes.defaultNotes" . -}}
2 |
--------------------------------------------------------------------------------
/charts/stable/zigbee2mqtt/templates/configmap.yaml:
--------------------------------------------------------------------------------
1 | {{- include "common.values.setup" . -}}
2 | ---
3 | apiVersion: v1
4 | kind: ConfigMap
5 | metadata:
6 | name: {{ template "common.names.fullname" . }}-settings
7 | labels:
8 | {{- include "common.labels" . | nindent 4 }}
9 | data:
10 | configuration.yaml: |
11 | {{- with .Values.config }}
12 | {{- toYaml . | nindent 4 }}
13 | {{- end }}
14 |
--------------------------------------------------------------------------------
/charts/stable/zwavejs2mqtt/templates/NOTES.txt:
--------------------------------------------------------------------------------
1 | {{- include "common.notes.defaultNotes" . -}}
2 |
--------------------------------------------------------------------------------
/charts/stable/zwavejs2mqtt/templates/common.yaml:
--------------------------------------------------------------------------------
1 | {{ include "common.all" . }}
2 |
--------------------------------------------------------------------------------
/hack/bump-common-charts.sh:
--------------------------------------------------------------------------------
1 | #!/usr/bin/env bash
2 | set -eu
3 |
4 | find charts/stable/ -name "Chart.yaml" -exec grep -q -l "\- name\: common" {} \; -print0 | xargs -0 sed -i '' -r -e "s|^version: ([0-9]+\.[0-9]+)\.[0-9]+$|version: \1.1|"
5 |
--------------------------------------------------------------------------------
/hack/gen-helmdocsignore.sh:
--------------------------------------------------------------------------------
1 | #!/usr/bin/env bash
2 | set -eu
3 |
4 | #
5 | # Generate .helmdocsignore for excluding non-common based helm charts
6 | #
7 |
8 | # shellcheck disable=SC2155
9 | export REPO_ROOT=$(git rev-parse --show-toplevel)
10 |
11 | grep -L -r "\- name\: common" ./charts/**/Chart.yaml \
12 | | sed 's|\.\/\(.*\)/Chart.yaml|\1|' \
13 | | grep -v "common" \
14 | > .helmdocsignore
15 |
16 | echo "charts/common-test" >> .helmdocsignore
17 |
--------------------------------------------------------------------------------
/hack/templates/.helmignore:
--------------------------------------------------------------------------------
1 | # Patterns to ignore when building packages.
2 | # This supports shell glob matching, relative path matching, and
3 | # negation (prefixed with !). Only one pattern per line.
4 | .DS_Store
5 | # Common VCS dirs
6 | .git/
7 | .gitignore
8 | .bzr/
9 | .bzrignore
10 | .hg/
11 | .hgignore
12 | .svn/
13 | # Common backup files
14 | *.swp
15 | *.bak
16 | *.tmp
17 | *~
18 | # Various IDEs
19 | .project
20 | .idea/
21 | *.tmproj
22 | .vscode/
23 | # OWNERS file for Kubernetes
24 | OWNERS
25 | # helm-docs templates
26 | *.gotmpl
27 |
--------------------------------------------------------------------------------
/hack/templates/README_CONFIG.md.gotmpl:
--------------------------------------------------------------------------------
1 | {{- define "custom.custom.configuration.header" -}}
2 | ## Custom configuration
3 | {{- end -}}
4 |
5 | {{- define "custom.custom.configuration" -}}
6 | {{ template "custom.custom.configuration.header" . }}
7 |
8 | N/A
9 | {{- end -}}
10 |
--------------------------------------------------------------------------------
/templates/chart/.helmignore:
--------------------------------------------------------------------------------
1 | # Patterns to ignore when building packages.
2 | # This supports shell glob matching, relative path matching, and
3 | # negation (prefixed with !). Only one pattern per line.
4 | .DS_Store
5 | # Common VCS dirs
6 | .git/
7 | .gitignore
8 | .bzr/
9 | .bzrignore
10 | .hg/
11 | .hgignore
12 | .svn/
13 | # Common backup files
14 | *.swp
15 | *.bak
16 | *.tmp
17 | *~
18 | # Various IDEs
19 | .project
20 | .idea/
21 | *.tmproj
22 | .vscode/
23 | # OWNERS file for Kubernetes
24 | OWNERS
25 | # helm-docs templates
26 | *.gotmpl
27 |
--------------------------------------------------------------------------------
/templates/chart/README_CONFIG.md.gotmpl:
--------------------------------------------------------------------------------
1 | {{- define "custom.custom.configuration.header" -}}
2 | ## Custom configuration
3 | {{- end -}}
4 |
5 | {{- define "custom.custom.configuration" -}}
6 | {{ template "custom.custom.configuration.header" . }}
7 |
8 | N/A
9 | {{- end -}}
10 |
--------------------------------------------------------------------------------
/templates/chart/templates/NOTES.txt:
--------------------------------------------------------------------------------
1 | {{- include "common.notes.defaultNotes" . -}}
2 |
--------------------------------------------------------------------------------
/templates/chart/templates/common.yaml:
--------------------------------------------------------------------------------
1 | {{ include "common.all" . }}
2 |
--------------------------------------------------------------------------------
/test/incubator/.gitkeep:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/geek-cookbook/charts/8b4cb4d87ff9be0c3019948c60c32ae46e288e78/test/incubator/.gitkeep
--------------------------------------------------------------------------------
/test/stable/.gitkeep:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/geek-cookbook/charts/8b4cb4d87ff9be0c3019948c60c32ae46e288e78/test/stable/.gitkeep
--------------------------------------------------------------------------------