Commit new Chart releases for TrueCharts

Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
This commit is contained in:
TrueCharts-Bot 2023-08-29 17:16:16 +00:00
parent 198f8175a7
commit fe23690300
15 changed files with 2106 additions and 0 deletions

View File

@ -6,6 +6,7 @@
## [scrypted-1.0.0](https://github.com/truecharts/charts/compare/scrypted-0.0.6...scrypted-1.0.0) (2023-07-31)
### Feat

View File

@ -0,0 +1,8 @@
**Important:**
*for the complete changelog, please refer to the website*
## [servas-0.0.13](https://github.com/truecharts/charts/compare/servas-1.0.0...servas-0.0.13) (2023-08-29)

View File

@ -0,0 +1,32 @@
apiVersion: v2
appVersion: "0.0.5"
dependencies:
- name: common
repository: https://library-charts.truecharts.org
version: 14.0.3
- condition: mariadb.enabled
name: mariadb
repository: https://deps.truecharts.org/
version: 7.0.70
deprecated: false
description: A self-hosted bookmark management tool.
home: https://truecharts.org/charts/stable/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/stable/servas
- https://github.com/beromir/Servas
type: application
version: 0.0.13
annotations:
truecharts.org/catagories: |
- bookmarks
truecharts.org/SCALE-support: "true"

View File

@ -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*

View File

@ -0,0 +1,4 @@
## [servas-0.0.13](https://github.com/truecharts/charts/compare/servas-1.0.0...servas-0.0.13) (2023-08-29)

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/stable/servas](https://truecharts.org/charts/stable/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
service:
main:
ports:
main:
protocol: http
targetPort: 80
port: 11080
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: servas-secrets
key: APP_KEY
APP_ENV: production
APP_DEBUG: false
# 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
persistence:
nginx:
enabled: true
mountPath: "/var/run/nginx"
type: emptyDir
mariadb:
enabled: true
mariadbUsername: servas
mariadbDatabase: servas
portal:
open:
enabled: true

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 "servas-secrets" $secrets -}}
{{- end -}}
{{/* Render the templates */}}
{{ include "tc.v1.common.loader.apply" . }}

View File

5
stable/servas/item.yaml Normal file
View File

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