Commit new Chart releases for TrueCharts
Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
This commit is contained in:
parent
cfde80e61b
commit
80563f21b0
|
@ -0,0 +1,8 @@
|
|||
**Important:**
|
||||
*for the complete changelog, please refer to the website*
|
||||
|
||||
|
||||
|
||||
|
||||
## [mc-router-0.0.2](https://github.com/truecharts/charts/compare/mc-router-0.0.1...mc-router-0.0.2) (2023-06-29)
|
||||
|
|
@ -0,0 +1,28 @@
|
|||
apiVersion: v2
|
||||
appVersion: "1.18.1"
|
||||
dependencies:
|
||||
- name: common
|
||||
repository: https://library-charts.truecharts.org
|
||||
version: 12.14.6
|
||||
deprecated: false
|
||||
description: Lightweight multiplexer/proxy for Minecraft-Java servers.
|
||||
home: https://truecharts.org/charts/incubator/mc-router
|
||||
icon: https://truecharts.org/img/hotlink-ok/chart-icons/mc-router.png
|
||||
keywords:
|
||||
- mc-router
|
||||
- minecraft
|
||||
kubeVersion: ">=1.16.0-0"
|
||||
maintainers:
|
||||
- email: info@truecharts.org
|
||||
name: TrueCharts
|
||||
url: https://truecharts.org
|
||||
name: mc-router
|
||||
sources:
|
||||
- https://github.com/truecharts/charts/tree/master/charts/incubator/mc-router
|
||||
- https://github.com/itzg/mc-router
|
||||
type: application
|
||||
version: 0.0.2
|
||||
annotations:
|
||||
truecharts.org/catagories: |
|
||||
- minecraft
|
||||
truecharts.org/SCALE-support: "true"
|
|
@ -0,0 +1,27 @@
|
|||
# README
|
||||
|
||||
## General Info
|
||||
|
||||
TrueCharts can be installed as both *normal* Helm Charts or as Apps on TrueNAS SCALE.
|
||||
However only installations using the TrueNAS SCALE Apps system are supported.
|
||||
|
||||
For more information about this App, please check the docs on the TrueCharts [website](https://truecharts.org/charts/incubator/)
|
||||
|
||||
**This chart is not maintained by the upstream project and any issues with the chart should be raised [here](https://github.com/truecharts/charts/issues/new/choose)**
|
||||
|
||||
|
||||
## Support
|
||||
|
||||
- Please check our [quick-start guides for TrueNAS SCALE](https://truecharts.org/manual/SCALE/guides/scale-intro).
|
||||
- See the [Website](https://truecharts.org)
|
||||
- Check our [Discord](https://discord.gg/tVsPTHWTtr)
|
||||
- Open a [issue](https://github.com/truecharts/charts/issues/new/choose)
|
||||
|
||||
---
|
||||
|
||||
## Sponsor TrueCharts
|
||||
|
||||
TrueCharts can only exist due to the incredible effort of our staff.
|
||||
Please consider making a [donation](https://truecharts.org/sponsor) or contributing back to the project any way you can!
|
||||
|
||||
*All Rights Reserved - The TrueCharts Project*
|
|
@ -0,0 +1,4 @@
|
|||
|
||||
|
||||
## [mc-router-0.0.2](https://github.com/truecharts/charts/compare/mc-router-0.0.1...mc-router-0.0.2) (2023-06-29)
|
||||
|
|
@ -0,0 +1,8 @@
|
|||
Lightweight multiplexer/proxy for Minecraft-Java servers.
|
||||
|
||||
This App is supplied by TrueCharts, for more information visit the manual: [https://truecharts.org/charts/stable/mc-router](https://truecharts.org/charts/stable/mc-router)
|
||||
|
||||
---
|
||||
|
||||
TrueCharts can only exist due to the incredible effort of our staff.
|
||||
Please consider making a [donation](https://truecharts.org/sponsor) or contributing back to the project any way you can!
|
Binary file not shown.
|
@ -0,0 +1,43 @@
|
|||
image:
|
||||
repository: tccr.io/truecharts/mc-router
|
||||
pullPolicy: IfNotPresent
|
||||
tag: v1.18.1@sha256:24c0c3e65c62a54eabf1a461ad8d0789d444f9b93c130d5720c249b703dafc23
|
||||
|
||||
service:
|
||||
main:
|
||||
ports:
|
||||
main:
|
||||
port: 25564
|
||||
minecraft:
|
||||
enabled: true
|
||||
ports:
|
||||
minecraft:
|
||||
enabled: true
|
||||
port: 25565
|
||||
|
||||
mcrouter:
|
||||
host_minecraft: []
|
||||
# - "minecraft.local=minecraft-java.ix-minecraft-java.svc.cluster.local:25565"
|
||||
|
||||
workload:
|
||||
main:
|
||||
podSpec:
|
||||
containers:
|
||||
main:
|
||||
probes:
|
||||
liveness:
|
||||
enabled: false
|
||||
readiness:
|
||||
enabled: false
|
||||
startup:
|
||||
enabled: false
|
||||
envFrom:
|
||||
- secretRef:
|
||||
name: "secrets"
|
||||
env:
|
||||
API_BINDING: ":{{ .Values.service.main.ports.main.port }}"
|
||||
PORT: "{{ .Values.service.minecraft.ports.minecraft.port }}"
|
||||
|
||||
portal:
|
||||
open:
|
||||
enabled: false
|
File diff suppressed because it is too large
Load Diff
|
@ -0,0 +1 @@
|
|||
{{- include "tc.v1.common.lib.chart.notes" $ -}}
|
|
@ -0,0 +1,8 @@
|
|||
{{/* Define the secrets */}}
|
||||
{{- define "mcrouter.secrets" -}}
|
||||
{{- $mcrouter := .Values.mcrouter }}
|
||||
|
||||
enabled: true
|
||||
data:
|
||||
MAPPING: {{ join "," $mcrouter.host_minecraft }}
|
||||
{{- end -}}
|
|
@ -0,0 +1,11 @@
|
|||
{{/* Make sure all variables are set properly */}}
|
||||
{{- include "tc.v1.common.loader.init" . }}
|
||||
|
||||
{{/* Render secrets for mcrouter */}}
|
||||
{{- $secrets := include "mcrouter.secrets" . | fromYaml -}}
|
||||
{{- if $secrets -}}
|
||||
{{- $_ := set .Values.secret "secrets" $secrets -}}
|
||||
{{- end -}}
|
||||
|
||||
{{/* Render the templates */}}
|
||||
{{ include "tc.v1.common.loader.apply" . }}
|
|
@ -0,0 +1,5 @@
|
|||
icon_url: https://truecharts.org/img/hotlink-ok/chart-icons/mc-router.png
|
||||
categories:
|
||||
- minecraft
|
||||
|
||||
screenshots: []
|
|
@ -0,0 +1,99 @@
|
|||
**Important:**
|
||||
*for the complete changelog, please refer to the website*
|
||||
|
||||
|
||||
|
||||
|
||||
## [navidrome-15.1.0](https://github.com/truecharts/charts/compare/navidrome-15.0.22...navidrome-15.1.0) (2023-06-29)
|
||||
|
||||
### Feat
|
||||
|
||||
- Fix env vars + add questions ([#9969](https://github.com/truecharts/charts/issues/9969))
|
||||
|
||||
|
||||
|
||||
|
||||
## [navidrome-15.0.22](https://github.com/truecharts/charts/compare/navidrome-15.0.21...navidrome-15.0.22) (2023-06-13)
|
||||
|
||||
### Chore
|
||||
|
||||
- update helm chart common to 12.14.2 ([#9599](https://github.com/truecharts/charts/issues/9599))
|
||||
|
||||
|
||||
|
||||
|
||||
## [navidrome-15.0.21](https://github.com/truecharts/charts/compare/navidrome-15.0.20...navidrome-15.0.21) (2023-06-11)
|
||||
|
||||
### Chore
|
||||
|
||||
- update helm general non-major ([#9558](https://github.com/truecharts/charts/issues/9558))
|
||||
|
||||
|
||||
|
||||
|
||||
## [navidrome-15.0.20](https://github.com/truecharts/charts/compare/navidrome-15.0.19...navidrome-15.0.20) (2023-06-07)
|
||||
|
||||
### Chore
|
||||
|
||||
- update helm general non-major ([#9457](https://github.com/truecharts/charts/issues/9457))
|
||||
|
||||
|
||||
|
||||
|
||||
## [navidrome-15.0.19](https://github.com/truecharts/charts/compare/navidrome-15.0.18...navidrome-15.0.19) (2023-06-07)
|
||||
|
||||
### Chore
|
||||
|
||||
- update helm general non-major ([#9423](https://github.com/truecharts/charts/issues/9423))
|
||||
|
||||
|
||||
|
||||
|
||||
## [navidrome-15.0.18](https://github.com/truecharts/charts/compare/navidrome-15.0.17...navidrome-15.0.18) (2023-06-04)
|
||||
|
||||
### Chore
|
||||
|
||||
- update helm general non-major ([#9393](https://github.com/truecharts/charts/issues/9393))
|
||||
|
||||
### Feat
|
||||
|
||||
- hide advanced ingress options behind checbox ([#9203](https://github.com/truecharts/charts/issues/9203))
|
||||
|
||||
|
||||
|
||||
|
||||
## [navidrome-15.0.17](https://github.com/truecharts/charts/compare/navidrome-15.0.16...navidrome-15.0.17) (2023-05-27)
|
||||
|
||||
### Chore
|
||||
|
||||
- update helm general non-major ([#9197](https://github.com/truecharts/charts/issues/9197))
|
||||
|
||||
|
||||
|
||||
|
||||
## [navidrome-15.0.16](https://github.com/truecharts/charts/compare/navidrome-15.0.15...navidrome-15.0.16) (2023-05-26)
|
||||
|
||||
### Chore
|
||||
|
||||
- update helm general non-major ([#9156](https://github.com/truecharts/charts/issues/9156))
|
||||
|
||||
|
||||
|
||||
|
||||
## [navidrome-15.0.15](https://github.com/truecharts/charts/compare/navidrome-15.0.14...navidrome-15.0.15) (2023-05-24)
|
||||
|
||||
### Chore
|
||||
|
||||
- update helm general non-major ([#9125](https://github.com/truecharts/charts/issues/9125))
|
||||
|
||||
|
||||
|
||||
|
||||
## [navidrome-15.0.14](https://github.com/truecharts/charts/compare/navidrome-15.0.13...navidrome-15.0.14) (2023-05-22)
|
||||
|
||||
### Chore
|
||||
|
||||
- update helm general non-major ([#9089](https://github.com/truecharts/charts/issues/9089))
|
||||
|
||||
|
||||
|
|
@ -0,0 +1,29 @@
|
|||
apiVersion: v2
|
||||
appVersion: "0.49.3"
|
||||
dependencies:
|
||||
- name: common
|
||||
repository: https://library-charts.truecharts.org
|
||||
version: 12.14.2
|
||||
deprecated: false
|
||||
description: Navidrome is an open source web-based music collection server and streamer
|
||||
home: https://truecharts.org/charts/stable/navidrome
|
||||
icon: https://truecharts.org/img/hotlink-ok/chart-icons/navidrome.png
|
||||
keywords:
|
||||
- navidrome
|
||||
- music
|
||||
- streaming
|
||||
kubeVersion: ">=1.16.0-0"
|
||||
maintainers:
|
||||
- email: info@truecharts.org
|
||||
name: TrueCharts
|
||||
url: https://truecharts.org
|
||||
name: navidrome
|
||||
sources:
|
||||
- https://github.com/truecharts/charts/tree/master/charts/stable/navidrome
|
||||
- https://github.com/deluan/navidrome
|
||||
type: application
|
||||
version: 15.1.0
|
||||
annotations:
|
||||
truecharts.org/catagories: |
|
||||
- media
|
||||
truecharts.org/SCALE-support: "true"
|
|
@ -0,0 +1,27 @@
|
|||
# README
|
||||
|
||||
## General Info
|
||||
|
||||
TrueCharts can be installed as both *normal* Helm Charts or as Apps on TrueNAS SCALE.
|
||||
However only installations using the TrueNAS SCALE Apps system are supported.
|
||||
|
||||
For more information about this App, please check the docs on the TrueCharts [website](https://truecharts.org/charts/stable/)
|
||||
|
||||
**This chart is not maintained by the upstream project and any issues with the chart should be raised [here](https://github.com/truecharts/charts/issues/new/choose)**
|
||||
|
||||
|
||||
## Support
|
||||
|
||||
- Please check our [quick-start guides for TrueNAS SCALE](https://truecharts.org/manual/SCALE/guides/scale-intro).
|
||||
- See the [Website](https://truecharts.org)
|
||||
- Check our [Discord](https://discord.gg/tVsPTHWTtr)
|
||||
- Open a [issue](https://github.com/truecharts/charts/issues/new/choose)
|
||||
|
||||
---
|
||||
|
||||
## Sponsor TrueCharts
|
||||
|
||||
TrueCharts can only exist due to the incredible effort of our staff.
|
||||
Please consider making a [donation](https://truecharts.org/sponsor) or contributing back to the project any way you can!
|
||||
|
||||
*All Rights Reserved - The TrueCharts Project*
|
|
@ -0,0 +1,9 @@
|
|||
|
||||
|
||||
## [navidrome-15.1.0](https://github.com/truecharts/charts/compare/navidrome-15.0.22...navidrome-15.1.0) (2023-06-29)
|
||||
|
||||
### Feat
|
||||
|
||||
- Fix env vars + add questions ([#9969](https://github.com/truecharts/charts/issues/9969))
|
||||
|
||||
|
|
@ -0,0 +1,8 @@
|
|||
Navidrome is an open source web-based music collection server and streamer
|
||||
|
||||
This App is supplied by TrueCharts, for more information visit the manual: [https://truecharts.org/charts/stable/navidrome](https://truecharts.org/charts/stable/navidrome)
|
||||
|
||||
---
|
||||
|
||||
TrueCharts can only exist due to the incredible effort of our staff.
|
||||
Please consider making a [donation](https://truecharts.org/sponsor) or contributing back to the project any way you can!
|
Binary file not shown.
|
@ -0,0 +1,35 @@
|
|||
image:
|
||||
repository: tccr.io/truecharts/navidrome
|
||||
pullPolicy: IfNotPresent
|
||||
tag: 0.49.3@sha256:8a415419867682cd91a202131e728404d51662fc3b084565e143a4f121da9851
|
||||
|
||||
workload:
|
||||
main:
|
||||
podSpec:
|
||||
containers:
|
||||
main:
|
||||
env:
|
||||
ND_MUSICFOLDER: /music
|
||||
ND_SCANSCHEDULE: "@every 15m"
|
||||
ND_LOGLEVEL: info
|
||||
ND_SESSIONTIMEOUT: 24h
|
||||
ND_ENABLETRANSCODINGCONFIG: false
|
||||
|
||||
service:
|
||||
main:
|
||||
ports:
|
||||
main:
|
||||
port: 4533
|
||||
targetPort: 4533
|
||||
|
||||
persistence:
|
||||
data:
|
||||
enabled: true
|
||||
mountPath: /data
|
||||
music:
|
||||
enabled: true
|
||||
mountPath: /music
|
||||
|
||||
portal:
|
||||
open:
|
||||
enabled: true
|
File diff suppressed because it is too large
Load Diff
|
@ -0,0 +1 @@
|
|||
{{- include "tc.v1.common.lib.chart.notes" $ -}}
|
|
@ -0,0 +1 @@
|
|||
{{ include "tc.v1.common.loader.all" . }}
|
|
@ -2,3 +2,4 @@ icon_url: https://truecharts.org/img/hotlink-ok/chart-icons/navidrome.png
|
|||
categories:
|
||||
- media
|
||||
|
||||
screenshots: []
|
||||
|
|
Loading…
Reference in New Issue