Commit new Chart releases for TrueCharts

Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
This commit is contained in:
TrueCharts-Bot 2023-05-28 09:20:07 +00:00
parent abda10b1da
commit 669a56f0e9
14 changed files with 2121 additions and 0 deletions

View File

@ -0,0 +1,8 @@
**Important:**
*for the complete changelog, please refer to the website*
## [servas-0.0.1]servas-0.0.1 (2023-05-28)

View File

@ -0,0 +1,32 @@
apiVersion: v2
appVersion: "0.0.5"
dependencies:
- name: common
repository: https://library-charts.truecharts.org
version: 12.9.2
- condition: mariadb.enabled
name: mariadb
repository: https://deps.truecharts.org/
version: 7.0.29
deprecated: false
description: A self-hosted bookmark management tool.
home: https://truecharts.org/charts/incubator/servas
icon: https://truecharts.org/img/hotlink-ok/chart-icons/servas.png
keywords:
- servas
- bookmarks
kubeVersion: ">=1.16.0-0"
maintainers:
- email: info@truecharts.org
name: TrueCharts
url: https://truecharts.org
name: servas
sources:
- https://github.com/truecharts/charts/tree/master/charts/incubator/servas
- https://github.com/beromir/Servas
type: application
version: 0.0.1
annotations:
truecharts.org/catagories: |
- bookmarks
truecharts.org/SCALE-support: "true"

View File

@ -0,0 +1 @@
# README

View File

@ -0,0 +1,4 @@
## [servas-0.0.1]servas-0.0.1 (2023-05-28)

View File

@ -0,0 +1,8 @@
A self-hosted bookmark management tool.
This App is supplied by TrueCharts, for more information visit the manual: [https://truecharts.org/charts/incubator/servas](https://truecharts.org/charts/incubator/servas)
---
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.

Binary file not shown.

View File

@ -0,0 +1,74 @@
image:
repository: tccr.io/truecharts/servas
pullPolicy: IfNotPresent
tag: v0.0.5@sha256:a319facfecb2582b501fb67f1e68dd3a00e6b5d0e0a8842cf58b9aefaf2b2b23
securityContext:
container:
runAsNonRoot: false
readOnlyRootFilesystem: false
runAsUser: 0
runAsGroup: 0
fsGroup: 568
workload:
main:
podSpec:
containers:
main:
probes:
liveness:
path: "/"
type: http
readiness:
path: "/"
type: http
startup:
path: "/"
type: http
env:
APP_NAME: Servas
APP_KEY:
secretKeyRef:
name: secrets
key: APP_KEY
APP_ENV: production
APP_DEBUG: true
# APP_URL: "http://localhost:{{ .Values.service.main.ports.main.port }}"
SERVAS_ENABLE_REGISTRATION: true
DB_CONNECTION: mysql
DB_HOST:
secretKeyRef:
expandObjectName: false
name: '{{ printf "%s-%s" .Release.Name "mariadbcreds" }}'
key: plainhost
DB_PORT: 3306
DB_DATABASE: "{{ .Values.mariadb.mariadbDatabase }}"
DB_USERNAME: "{{ .Values.mariadb.mariadbUsername }}"
DB_PASSWORD:
secretKeyRef:
expandObjectName: false
name: '{{ printf "%s-%s" .Release.Name "mariadbcreds" }}'
key: mariadb-password
service:
main:
ports:
main:
protocol: http
targetPort: 80
port: 11080
persistence:
nginx:
enabled: true
mountPath: /var/run/nginx
portal:
open:
enabled: true
mariadb:
enabled: true
mariadbUsername: servas
mariadbDatabase: servas

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1 @@
{{- include "tc.v1.common.lib.chart.notes" $ -}}

View File

@ -0,0 +1,11 @@
{{/* Define the secrets */}}
{{- define "servas.secrets" -}}
{{- $secretName := (printf "%s-servas-secrets" (include "tc.v1.common.lib.chart.names.fullname" $)) -}}
{{- $key := randAlphaNum 32 -}}
{{- with (lookup "v1" "Secret" .Release.Namespace $secretName) -}}
{{- $key = index .data "APP_KEY" | b64dec -}}
{{- end }}
enabled: true
data:
APP_KEY: {{ $key }}
{{- end -}}

View File

@ -0,0 +1,11 @@
{{/* Make sure all variables are set properly */}}
{{- include "tc.v1.common.loader.init" . }}
{{/* Render secrets for servas */}}
{{- $secrets := include "servas.secrets" . | fromYaml -}}
{{- if $secrets -}}
{{- $_ := set .Values.secret "secrets" $secrets -}}
{{- end -}}
{{/* Render the templates */}}
{{ include "tc.v1.common.loader.apply" . }}

View File

View File

@ -0,0 +1,4 @@
icon_url: https://truecharts.org/img/hotlink-ok/chart-icons/servas.png
categories:
- bookmarks