this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Deploy Autobrr

+136
+5
cluster/apps/media/autobrr/app/configs/config.toml
··· 1 + host = "0.0.0.0" 2 + port = 7474 3 + logLevel = "INFO" 4 + checkForUpdates = false 5 + sessionSecret = "secret-session-key"
+82
cluster/apps/media/autobrr/app/helm-release.yaml
··· 1 + --- 2 + apiVersion: helm.toolkit.fluxcd.io/v2beta1 3 + kind: HelmRelease 4 + metadata: 5 + name: autobrr 6 + namespace: media 7 + spec: 8 + interval: 30m 9 + chart: 10 + spec: 11 + chart: app-template 12 + version: 1.5.0 13 + sourceRef: 14 + kind: HelmRepository 15 + name: bjw-s-charts 16 + namespace: flux-system 17 + maxHistory: 3 18 + install: 19 + createNamespace: true 20 + remediation: 21 + retries: 3 22 + upgrade: 23 + cleanupOnFail: true 24 + remediation: 25 + retries: 3 26 + uninstall: 27 + keepHistory: false 28 + values: 29 + controller: 30 + annotations: 31 + reloader.stakater.com/auto: "true" 32 + image: 33 + repository: ghcr.io/autobrr/autobrr 34 + tag: v1.26.2 35 + env: 36 + TZ: "Europe/Helsinki" 37 + service: 38 + main: 39 + ports: 40 + http: 41 + port: 7474 42 + ingress: 43 + main: 44 + enabled: true 45 + ingressClassName: nginx 46 + annotations: 47 + hajimari.io/icon: mdi:bunny 48 + hosts: 49 + - host: &host autobrr.skylab.fi 50 + paths: 51 + - path: / 52 + pathType: Prefix 53 + tls: 54 + - hosts: 55 + - *host 56 + podSecurityContext: 57 + runAsUser: 568 58 + runAsGroup: 568 59 + fsGroup: 568 60 + fsGroupChangePolicy: OnRootMismatch 61 + supplementalGroups: [10000] 62 + 63 + podAnnotations: 64 + setGateway: "true" 65 + 66 + persistence: 67 + config: 68 + enabled: true 69 + existingClaim: autobrr-config 70 + config-file: 71 + enabled: true 72 + type: configMap 73 + name: autobrr-configmap 74 + mountPath: /config/config.toml 75 + subPath: config.toml 76 + readOnly: true 77 + resources: 78 + requests: 79 + memory: 250Mi 80 + cpu: 10m 81 + limits: 82 + memory: 500Mi
+17
cluster/apps/media/autobrr/app/kustomization.yaml
··· 1 + --- 2 + apiVersion: kustomize.config.k8s.io/v1beta1 3 + kind: Kustomization 4 + namespace: media 5 + resources: 6 + - ./pvc.yaml 7 + - ./helm-release.yaml 8 + configMapGenerator: 9 + - name: autobrr-configmap 10 + files: 11 + - ./configs/config.toml 12 + generatorOptions: 13 + disableNameSuffixHash: true 14 + labels: 15 + - pairs: 16 + app.kubernetes.io/name: autobrr 17 + app.kubernetes.io/instance: autobrr
+13
cluster/apps/media/autobrr/app/pvc.yaml
··· 1 + --- 2 + apiVersion: v1 3 + kind: PersistentVolumeClaim 4 + metadata: 5 + name: autobrr-config 6 + namespace: media 7 + spec: 8 + accessModes: 9 + - ReadWriteOnce 10 + resources: 11 + requests: 12 + storage: 2Gi 13 + storageClassName: longhorn
+18
cluster/apps/media/autobrr/ks.yaml
··· 1 + --- 2 + apiVersion: kustomize.toolkit.fluxcd.io/v1 3 + kind: Kustomization 4 + metadata: 5 + name: cluster-apps-autobrr 6 + namespace: flux-system 7 + spec: 8 + dependsOn: 9 + - name: apps-vpn-gateway 10 + path: ./cluster/apps/media/autobrr/app 11 + prune: true 12 + sourceRef: 13 + kind: GitRepository 14 + name: cluster 15 + wait: true 16 + interval: 30m 17 + retryInterval: 1m 18 + timeout: 5m
+1
cluster/apps/media/kustomization.yaml
··· 10 10 - recyclarr/ks.yaml 11 11 - prowlarr/ks.yaml 12 12 - unpackerr/ks.yaml 13 + - autobrr/ks.yaml 13 14 # - flaresolverr/ks.yaml 14 15 # - netshoot.yaml