From 7c12fa3889da162777a0e5fd4fb43feab052c06c Mon Sep 17 00:00:00 2001 From: nold Date: Wed, 5 Jan 2022 21:50:25 +0100 Subject: [PATCH] Removed: navidrome --- projects/navidrome/project.yaml | 11 ---- projects/navidrome/values/navidrome.yaml | 76 ------------------------ 2 files changed, 87 deletions(-) delete mode 100644 projects/navidrome/project.yaml delete mode 100644 projects/navidrome/values/navidrome.yaml diff --git a/projects/navidrome/project.yaml b/projects/navidrome/project.yaml deleted file mode 100644 index 14443f95..00000000 --- a/projects/navidrome/project.yaml +++ /dev/null @@ -1,11 +0,0 @@ -config: - description: Stream Music - syncWave: 100 - repo: k8s-at-home - -apps: -- name: navidrome - chart: navidrome - targetRevision: 6.1.0 - include: - - ingress-internal diff --git a/projects/navidrome/values/navidrome.yaml b/projects/navidrome/values/navidrome.yaml deleted file mode 100644 index cda8833c..00000000 --- a/projects/navidrome/values/navidrome.yaml +++ /dev/null @@ -1,76 +0,0 @@ -image: - # -- image repository - repository: deluan/navidrome - # -- image tag - #tag: 0.43.0 - # -- image pull policy - pullPolicy: IfNotPresent - -# -- environment variables. See [navidrome docs](https://www.navidrome.org/docs/usage/configuration-options/#environment-variables) for more details. -# @default -- See below -env: - # -- Set the container timezone - TZ: UTC - # -- Log level. Useful for troubleshooting. - ND_LOGLEVEL: info - # -- How long Navidrome will wait before closing web ui idle sessions - ND_SESSIONTIMEOUT: 24h - # -- Enables transcoding configuration in the UI - ND_ENABLETRANSCODINGCONFIG: "true" - # -- Folder where your music library is stored. - ND_MUSICFOLDER: /music - # Disable Scanning Scheduling - ND_SCANSCHEDULE: "0" - -podSecurityContext: - runAsUser: 1420 - runAsGroup: 2420 - fsGroup: 2420 - -securityContext: - runAsNonRoot: true - privileged: false - readOnlyRootFilesystem: true - allowPrivilegeEscalation: false - capabilities: - drop: - - ALL - -# -- Configures service settings for the chart. -# @default -- See values.yaml -service: - main: - ports: - http: - port: 4533 - -ingress: - main: - enabled: true - annotations: - cert-manager.io/cluster-issuer: vault-issuer - traefik.ingress.kubernetes.io/router.tls: 'true' - hosts: - - host: music.dc - paths: - - path: / - pathType: Prefix - tls: - - secretName: music-tls - hosts: - - music.dc - -# -- Configure persistence settings for the chart under this key. -# @default -- See values.yaml -persistence: - config: - enabled: true - mountPath: /data - storageClass: local-path - accessMode: ReadWriteOnce - size: 1Gi - music: - enabled: true - mountPath: /music - type: hostPath - hostPath: /data/media/music