Files
auricom-home-cluster/kubernetes/apps/default/music-transcode/app/helm-release.yaml
feisar-bot 7d1c1de22e ⬆️ Update chart app-template to 1.4.0
| datasource | package      | from  | to    |
| ---------- | ------------ | ----- | ----- |
| helm       | app-template | 1.3.2 | 1.4.0 |
2023-04-15 13:03:19 +02:00

88 lines
2.0 KiB
YAML

---
# yaml-language-server: $schema=https://kubernetes-schemas.devbu.io/helmrelease_v2beta1.json
apiVersion: helm.toolkit.fluxcd.io/v2beta1
kind: HelmRelease
metadata:
name: music-transcode
namespace: default
spec:
interval: 15m
chart:
spec:
chart: app-template
version: 1.4.0
sourceRef:
kind: HelmRepository
name: bjw-s
namespace: flux-system
maxHistory: 3
install:
createNamespace: true
remediation:
retries: 3
upgrade:
cleanupOnFail: true
remediation:
retries: 3
uninstall:
keepHistory: false
values:
controller:
type: cronjob
cronjob:
concurrencyPolicy: Forbid
schedule: "@daily"
restartPolicy: OnFailure
image:
repository: ghcr.io/auricom/freac
tag: 1.1.7@sha256:94c8f09bc20ac852a9748f1ffcfc3d13efa2b9779ecb0735b7af20d5d2774abe
command:
- "/bin/bash"
- "-c"
- |
#!/bin/bash
set -o errexit
set -o nounset
cd /app
/app/transcode.sh -c
/app/transcode.sh -r
env:
TRANSCODE_INPUT_DIR: /mnt/music/
TRANSCODE_OUTPUT_DIR: /mnt/music_transcoded/
TRANSCODE_FREAC_BIN: /app/freaccmd
service:
main:
enabled: false
persistence:
scripts:
enabled: true
type: configMap
name: music-transcode-configmap
subPath: transcode.sh
mountPath: /app/transcode.sh
defaultMode: 0775
readOnly: true
exclude:
enabled: true
type: configMap
name: music-transcode-configmap
subPath: transcode_exclude.cfg
mountPath: /app/transcode_exclude.cfg
defaultMode: 0775
readOnly: true
music:
enabled: true
type: nfs
mountPath: /mnt/music
path: /mnt/storage/music
server: ${LOCAL_LAN_TRUENAS}
music-transcoded:
enabled: true
type: nfs
mountPath: /mnt/music_transcoded
path: /mnt/storage/music_transcoded
server: ${LOCAL_LAN_TRUENAS}