TrueChartsClone/charts/stable/bitmagnet/values.yaml

111 lines
2.9 KiB
YAML
Raw Normal View History

image:
repository: ghcr.io/bitmagnet-io/bitmagnet
chore(deps): update container image ghcr.io/bitmagnet-io/bitmagnet to v0.7.7@45784df by renovate (#18619) This PR contains the following updates: | Package | Update | Change | |---|---|---| | [ghcr.io/bitmagnet-io/bitmagnet](https://togithub.com/bitmagnet-io/bitmagnet) | patch | `0.7.5` -> `0.7.7` | --- > [!WARNING] > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. --- ### Release Notes <details> <summary>bitmagnet-io/bitmagnet (ghcr.io/bitmagnet-io/bitmagnet)</summary> ### [`v0.7.7`](https://togithub.com/bitmagnet-io/bitmagnet/releases/tag/v0.7.7) [Compare Source](https://togithub.com/bitmagnet-io/bitmagnet/compare/v0.7.5...v0.7.7) 2 small but impactful changes in this release: ##### Files theshold changes - When file count is over the `dht_crawler.save_files_threshold`, files are saved up to the threshold, instead of discarding all files - The default threshold has been increased from 50 to 100 - The `torrents` table now stores the total files count - Increasing the threshold will re-crawl torrents that have missing files info according to the new threshold ##### WebUI optimisations A few tweaks that *significantly* improve performance of the web app. **Note:** skipping a version number due to issues in aborted v0.7.6 release #### What's Changed - Fix typos on docsite by [@&#8203;mgdigital](https://togithub.com/mgdigital) in [https://github.com/bitmagnet-io/bitmagnet/pull/175](https://togithub.com/bitmagnet-io/bitmagnet/pull/175) - dht_crawler.save_files_threshold changes by [@&#8203;mgdigital](https://togithub.com/mgdigital) in [https://github.com/bitmagnet-io/bitmagnet/pull/176](https://togithub.com/bitmagnet-io/bitmagnet/pull/176) - WebUI optimisations and improvements by [@&#8203;mgdigital](https://togithub.com/mgdigital) in [https://github.com/bitmagnet-io/bitmagnet/pull/177](https://togithub.com/bitmagnet-io/bitmagnet/pull/177) - Select missing field by [@&#8203;mgdigital](https://togithub.com/mgdigital) in [https://github.com/bitmagnet-io/bitmagnet/pull/178](https://togithub.com/bitmagnet-io/bitmagnet/pull/178) - Add missing file by [@&#8203;mgdigital](https://togithub.com/mgdigital) in [https://github.com/bitmagnet-io/bitmagnet/pull/179](https://togithub.com/bitmagnet-io/bitmagnet/pull/179) **Full Changelog**: https://github.com/bitmagnet-io/bitmagnet/compare/v0.7.5...v0.7.7 </details> --- ### Configuration 📅 **Schedule**: Branch creation - "before 10pm on monday" in timezone Europe/Amsterdam, Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://togithub.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4yMTQuMCIsInVwZGF0ZWRJblZlciI6IjM3LjIxNC4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIn0=-->
2024-02-26 00:40:08 +00:00
tag: 0.7.7@sha256:45784df41956eede054a09553cc6f89139b228f94e9ea69837d95d6e559caadd
pullPolicy: IfNotPresent
service:
main:
ports:
main:
port: 3333
targetPort: 3333
torrent:
enabled: true
ports:
tcp:
enabled: true
port: 3334
targetPort: 3334
protocol: tcp
udp:
enabled: true
port: "{{ .Values.service.torrent.ports.tcp.port }}"
targetPort: "{{ .Values.service.torrent.ports.tcp.targetPort }}"
protocol: udp
cnpg:
main:
enabled: true
user: bitmagnet
database: bitmagnet
portal:
open:
enabled: true
workload:
main:
podSpec:
containers:
main:
env:
POSTGRES_NAME: "{{ .Values.cnpg.main.database }}"
POSTGRES_USER: "{{ .Values.cnpg.main.user }}"
POSTGRES_PASSWORD:
secretKeyRef:
name: cnpg-main-user
key: password
POSTGRES_HOST:
secretKeyRef:
name: cnpg-main-urls
key: host
TMDB_API_KEY: ""
2024-02-27 18:37:43 +00:00
DHT_CRAWLER_SAVE_FILES_THRESHOLD: "100"
args:
- worker
- run
- --all
probes:
readiness:
enabled: true
type: http
path: /status
liveness:
enabled: true
type: http
path: /status
startup:
enabled: true
type: http
path: /status
metrics:
main:
enabled: true
type: "servicemonitor"
endpoints:
- port: main
path: /metrics
targetSelector: main
prometheusRule:
enabled: false
configmap:
dashboard:
enabled: true
labels:
grafana_dashboard: "1"
data:
bitmagnet.json: >-
{{ .Files.Get "dashboard.json" | indent 8 }}
datasource:
enabled: true
labels:
grafana_datasources: "1"
data:
bitmagnetpsql.yaml: |-
apiVersion: 1
datasources:
- name: BitmagnetPostgres
type: postgres
uid: bitmagnetpostgres
url: {{ printf "%s.%s:5432" (.Values.cnpg.main.creds.host | trimAll "\"") .Release.Namespace }}
access: proxy
user: {{ .Values.cnpg.main.user }}
secureJsonData:
password: {{ .Values.cnpg.main.creds.password | default "na" }}
jsonData:
database: {{ .Values.cnpg.main.database }}
sslmode: 'disable' # disable/require/verify-ca/verify-full
maxOpenConns: 100 # Grafana v5.4+
maxIdleConns: 100 # Grafana v5.4+
maxIdleConnsAuto: true # Grafana v9.5.1+
connMaxLifetime: 14400 # Grafana v5.4+
postgresVersion: 1500 # 903=9.3, 904=9.4, 905=9.5, 906=9.6, 1000=10
timescaledb: false