mirror of
https://github.com/auricom/home-cluster.git
synced 2025-09-28 13:05:26 +02:00

| datasource | package | from | to | | ---------- | --------------------------- | --------------- | --------------- | | docker | ghcr.io/linuxserver/calibre | version-v6.16.0 | version-v6.17.0 |
82 lines
1.8 KiB
YAML
82 lines
1.8 KiB
YAML
---
|
|
# yaml-language-server: $schema=https://kubernetes-schemas.devbu.io/helmrelease_v2beta1.json
|
|
apiVersion: helm.toolkit.fluxcd.io/v2beta1
|
|
kind: HelmRelease
|
|
metadata:
|
|
name: &app calibre
|
|
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:
|
|
image:
|
|
repository: ghcr.io/linuxserver/calibre
|
|
tag: version-v6.17.0
|
|
env:
|
|
TZ: "${TIMEZONE}"
|
|
PUID: "1026"
|
|
PGID: "1000"
|
|
persistence:
|
|
config:
|
|
enabled: true
|
|
existingClaim: calibre-config
|
|
books:
|
|
enabled: true
|
|
type: nfs
|
|
server: "${LOCAL_LAN_TRUENAS}"
|
|
path: /mnt/storage/home/claude/books
|
|
mountPath: /mnt/storage/home/claude/books
|
|
service:
|
|
main:
|
|
ports:
|
|
http:
|
|
port: 8080
|
|
webserver:
|
|
enabled: true
|
|
ports:
|
|
webserver:
|
|
enabled: true
|
|
port: 8081
|
|
protocol: TCP
|
|
targetPort: 8081
|
|
type: ClusterIP
|
|
ingress:
|
|
main:
|
|
enabled: true
|
|
ingressClassName: "nginx"
|
|
annotations:
|
|
auth.home.arpa/enabled: "true"
|
|
hajimari.io/icon: mdi:bookshelf
|
|
hosts:
|
|
- host: &host "{{ .Release.Name }}.${SECRET_CLUSTER_DOMAIN}"
|
|
paths:
|
|
- path: /
|
|
pathType: Prefix
|
|
tls:
|
|
- hosts:
|
|
- *host
|
|
resources:
|
|
requests:
|
|
cpu: 15m
|
|
memory: 324M
|
|
limits:
|
|
memory: 604M
|