Commit new Chart releases for TrueCharts
Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
This commit is contained in:
parent
881a854710
commit
a3b1eeee89
|
@ -0,0 +1,8 @@
|
|||
**Important:**
|
||||
*for the complete changelog, please refer to the website*
|
||||
|
||||
|
||||
|
||||
|
||||
## [gamevault-backend-0.0.1]gamevault-backend-0.0.1 (2023-07-18)
|
||||
|
|
@ -0,0 +1,28 @@
|
|||
apiVersion: v2
|
||||
appVersion: "2.0.0"
|
||||
dependencies:
|
||||
- name: common
|
||||
repository: https://library-charts.truecharts.org
|
||||
version: 12.14.6
|
||||
deprecated: false
|
||||
description: the self-hosted gaming platform for alternatively obtained games.
|
||||
home: https://truecharts.org/charts/stable/gamevault-backend
|
||||
icon: https://truecharts.org/img/hotlink-ok/chart-icons/gamevault-backend.png
|
||||
keywords:
|
||||
- gamevault-backend
|
||||
- games
|
||||
kubeVersion: ">=1.16.0-0"
|
||||
maintainers:
|
||||
- email: info@truecharts.org
|
||||
name: TrueCharts
|
||||
url: https://truecharts.org
|
||||
name: gamevault-backend
|
||||
sources:
|
||||
- https://github.com/truecharts/charts/tree/master/charts/stable/gamevault-backend
|
||||
- https://github.com/Phalcode/gamevault-backend
|
||||
type: application
|
||||
version: 0.0.1
|
||||
annotations:
|
||||
truecharts.org/catagories: |
|
||||
- games
|
||||
truecharts.org/SCALE-support: "true"
|
|
@ -0,0 +1 @@
|
|||
# README
|
|
@ -0,0 +1,4 @@
|
|||
|
||||
|
||||
## [gamevault-backend-0.0.1]gamevault-backend-0.0.1 (2023-07-18)
|
||||
|
|
@ -0,0 +1,8 @@
|
|||
the self-hosted gaming platform for alternatively obtained games.
|
||||
|
||||
This App is supplied by TrueCharts, for more information visit the manual: [https://truecharts.org/charts/incubator/gamevault-backend](https://truecharts.org/charts/incubator/gamevault-backend)
|
||||
|
||||
---
|
||||
|
||||
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,91 @@
|
|||
image:
|
||||
repository: tccr.io/truecharts/gamevault-backend
|
||||
pullPolicy: IfNotPresent
|
||||
tag: 2.0.0@sha256:1cde674b30dc9abc8ff5958f1cd0bce4382ba65f64bb33fdce35c5a8c12641f6
|
||||
|
||||
securityContext:
|
||||
container:
|
||||
runAsNonRoot: false
|
||||
readOnlyRootFilesystem: false
|
||||
runAsUser: 0
|
||||
runAsGroup: 0
|
||||
|
||||
service:
|
||||
main:
|
||||
ports:
|
||||
main:
|
||||
protocol: http
|
||||
port: 8080
|
||||
|
||||
workload:
|
||||
main:
|
||||
podSpec:
|
||||
containers:
|
||||
main:
|
||||
probes:
|
||||
liveness:
|
||||
path: /api/v1/health
|
||||
type: http
|
||||
readiness:
|
||||
path: /api/v1/health
|
||||
type: http
|
||||
startup:
|
||||
path: /api/v1/health
|
||||
type: http
|
||||
env:
|
||||
SERVER_PORT: "{{ .Values.service.main.ports.main.port }}"
|
||||
# manually set and change to /games so its easy for users to know where to place their game files.
|
||||
VOLUMES_FILES: /games
|
||||
VOLUMES_IMAGES: /images
|
||||
VOLUMES_LOG: /logs
|
||||
# DB
|
||||
DB_SYSTEM: POSTGRESQL
|
||||
DB_PORT: 5432
|
||||
DB_HOST:
|
||||
secretKeyRef:
|
||||
name: cnpg-main-urls
|
||||
key: host
|
||||
DB_DATABASE: "{{ .Values.cnpg.main.database }}"
|
||||
DB_USERNAME: "{{ .Values.cnpg.main.user }}"
|
||||
DB_PASSWORD:
|
||||
secretKeyRef:
|
||||
name: cnpg-main-user
|
||||
key: password
|
||||
# ADMIN
|
||||
SERVER_ADMIN_USERNAME: "admin"
|
||||
SERVER_ADMIN_PASSWORD: "password"
|
||||
SERVER_REGISTRATION_DISABLED: true
|
||||
SERVER_ACCOUNT_ACTIVATION_DISABLED: false
|
||||
# SERVER
|
||||
SERVER_LOG_LEVEL: info
|
||||
SERVER_CORS_ALLOWED_ORIGINS: "*"
|
||||
# GAMES
|
||||
GAMES_INDEX_INTERVAL_IN_MINUTES: 5
|
||||
# IMAGES
|
||||
IMAGE_GC_KEEP_DAYS: 30
|
||||
IMAGE_GC_INTERVAL_MINUTES: 60
|
||||
# RAWG
|
||||
RAWG_API_URL: https://api.rawg.io/api
|
||||
RAWG_API_CACHE_DAYS: 7
|
||||
# RAWG_API_KEY: ""
|
||||
|
||||
persistence:
|
||||
logs:
|
||||
enabled: true
|
||||
mountPath: /logs
|
||||
images:
|
||||
enabled: true
|
||||
mountPath: /images
|
||||
games:
|
||||
enabled: true
|
||||
mountPath: /games
|
||||
|
||||
cnpg:
|
||||
main:
|
||||
enabled: true
|
||||
user: gamevault
|
||||
database: gamevault
|
||||
|
||||
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" . }}
|
|
@ -0,0 +1,5 @@
|
|||
icon_url: https://truecharts.org/img/hotlink-ok/chart-icons/gamevault-backend.png
|
||||
categories:
|
||||
- games
|
||||
|
||||
screenshots: []
|
Loading…
Reference in New Issue