From f65e42910a7b34e6247877ea3396b9c355aad905 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florian=20Str=C3=B6ger?= Date: Mon, 4 Jul 2022 08:37:22 +0200 Subject: [PATCH] [deemix] Add Deemix chart (#1680) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Florian Ströger --- charts/stable/deemix/.helmignore | 26 ++++++++++ charts/stable/deemix/Chart.yaml | 26 ++++++++++ charts/stable/deemix/README.md | 42 ++++++++++++++++ charts/stable/deemix/README_CONFIG.md.gotmpl | 9 ++++ charts/stable/deemix/templates/NOTES.txt | 1 + charts/stable/deemix/templates/common.yaml | 1 + charts/stable/deemix/values.yaml | 51 ++++++++++++++++++++ 7 files changed, 156 insertions(+) create mode 100644 charts/stable/deemix/.helmignore create mode 100644 charts/stable/deemix/Chart.yaml create mode 100644 charts/stable/deemix/README.md create mode 100644 charts/stable/deemix/README_CONFIG.md.gotmpl create mode 100644 charts/stable/deemix/templates/NOTES.txt create mode 100644 charts/stable/deemix/templates/common.yaml create mode 100644 charts/stable/deemix/values.yaml diff --git a/charts/stable/deemix/.helmignore b/charts/stable/deemix/.helmignore new file mode 100644 index 00000000..4379e2b3 --- /dev/null +++ b/charts/stable/deemix/.helmignore @@ -0,0 +1,26 @@ +# Patterns to ignore when building packages. +# This supports shell glob matching, relative path matching, and +# negation (prefixed with !). Only one pattern per line. +.DS_Store +# Common VCS dirs +.git/ +.gitignore +.bzr/ +.bzrignore +.hg/ +.hgignore +.svn/ +# Common backup files +*.swp +*.bak +*.tmp +*~ +# Various IDEs +.project +.idea/ +*.tmproj +.vscode/ +# OWNERS file for Kubernetes +OWNERS +# helm-docs templates +*.gotmpl diff --git a/charts/stable/deemix/Chart.yaml b/charts/stable/deemix/Chart.yaml new file mode 100644 index 00000000..3bce889b --- /dev/null +++ b/charts/stable/deemix/Chart.yaml @@ -0,0 +1,26 @@ +apiVersion: v2 +appVersion: "2022.5.28-r206.a752a63e0e" +description: "Deemix is a Deezer Download Manager" +name: deemix +version: 1.0.0 +kubeVersion: ">=1.16.0-0" +keywords: + - deemix + - music + - deezer +home: https://github.com/k8s-at-home/charts/tree/master/charts/stable/deemix +icon: https://gitlab.com/RemixDev/deemix-webui/-/raw/e63a8c709c477a8e68e61037f4b82359d23f4a32/src/assets/deemix-icon.svg +sources: + - https://gitlab.com/Bockiii/deemix-docker + - https://gitlab.com/RemixDev/deemix-gui +maintainers: + - name: preisschild + email: florian@florianstroeger.com +dependencies: + - name: common + repository: https://library-charts.k8s-at-home.com + version: 4.4.2 +annotations: + artifacthub.io/changes: | + - kind: added + description: Initial version diff --git a/charts/stable/deemix/README.md b/charts/stable/deemix/README.md new file mode 100644 index 00000000..5fae5b88 --- /dev/null +++ b/charts/stable/deemix/README.md @@ -0,0 +1,42 @@ +# deemix + +![Version: 1.0.0](https://img.shields.io/badge/Version-1.0.0-informational?style=flat-square) ![AppVersion: 2022.5.28-r206.a752a63e0e](https://img.shields.io/badge/AppVersion-2022.5.28--r206.a752a63e0e-informational?style=flat-square) + +Deemix is a Deezer Download Manager + +**Homepage:** + +## Maintainers + +| Name | Email | Url | +| ---- | ------ | --- | +| preisschild | | | + +## Source Code + +* +* + +## Requirements + +Kubernetes: `>=1.16.0-0` + +| Repository | Name | Version | +|------------|------|---------| +| https://library-charts.k8s-at-home.com | common | 4.4.2 | + +## Values + +| Key | Type | Default | Description | +|-----|------|---------|-------------| +| env | object | See below | environment variables. See more environment variables in the [deemix-docker documentation](https://gitlab.com/Bockiii/deemix-docker). | +| env.PGID | string | `"1000"` | Group ID, see PUID | +| env.PUID | string | `"1000"` | User ID of the user you want the container to run as in order to fix folder permission issues | +| env.TZ | string | `"UTC"` | Set the container timezone | +| env.UMASK_SET | string | `"022"` | Default umask for downloaded files | +| image.pullPolicy | string | `"IfNotPresent"` | image pull policy | +| image.repository | string | `"registry.gitlab.com/bockiii/deemix-docker"` | image repository | +| image.tag | string | chart.appVersion | image tag | +| ingress.main | object | See values.yaml | Enable and configure ingress settings for the chart under this key. | +| persistence | object | See values.yaml | Configure persistence settings for the chart under this key. | +| service | object | See values.yaml | Configures service settings for the chart. | diff --git a/charts/stable/deemix/README_CONFIG.md.gotmpl b/charts/stable/deemix/README_CONFIG.md.gotmpl new file mode 100644 index 00000000..e93d80bf --- /dev/null +++ b/charts/stable/deemix/README_CONFIG.md.gotmpl @@ -0,0 +1,9 @@ +{{- define "custom.custom.configuration.header" -}} +## Custom configuration +{{- end -}} + +{{- define "custom.custom.configuration" -}} +{{ template "custom.custom.configuration.header" . }} + +N/A +{{- end -}} diff --git a/charts/stable/deemix/templates/NOTES.txt b/charts/stable/deemix/templates/NOTES.txt new file mode 100644 index 00000000..90f7b653 --- /dev/null +++ b/charts/stable/deemix/templates/NOTES.txt @@ -0,0 +1 @@ +{{- include "common.notes.defaultNotes" . -}} diff --git a/charts/stable/deemix/templates/common.yaml b/charts/stable/deemix/templates/common.yaml new file mode 100644 index 00000000..a6613c2c --- /dev/null +++ b/charts/stable/deemix/templates/common.yaml @@ -0,0 +1 @@ +{{ include "common.all" . }} diff --git a/charts/stable/deemix/values.yaml b/charts/stable/deemix/values.yaml new file mode 100644 index 00000000..100b41fb --- /dev/null +++ b/charts/stable/deemix/values.yaml @@ -0,0 +1,51 @@ +# +# IMPORTANT NOTE +# +# This chart inherits from our common library chart. You can check the default values/options here: +# https://github.com/k8s-at-home/library-charts/tree/main/charts/stable/common/values.yaml +# + +image: + # -- image repository + repository: registry.gitlab.com/bockiii/deemix-docker + # -- image tag + # @default -- chart.appVersion + tag: + # -- image pull policy + pullPolicy: IfNotPresent + +# -- environment variables. See more environment variables in the [deemix-docker documentation](https://gitlab.com/Bockiii/deemix-docker). +# @default -- See below +env: + # -- Set the container timezone + TZ: "UTC" + # -- User ID of the user you want the container to run as in order to fix folder permission issues + PUID: "1000" + # -- Group ID, see PUID + PGID: "1000" + # -- Default umask for downloaded files + UMASK_SET: "022" + +# -- Configures service settings for the chart. +# @default -- See values.yaml +service: + main: + ports: + http: + port: 6595 + +ingress: + # -- Enable and configure ingress settings for the chart under this key. + # @default -- See values.yaml + main: + enabled: false + +# -- Configure persistence settings for the chart under this key. +# @default -- See values.yaml +persistence: + config: + enabled: false + mountPath: /config + downloads: + enabled: false + mountPath: /downloads