Commit new Chart releases for TrueCharts

Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
This commit is contained in:
TrueCharts-Bot
2024-01-04 09:02:17 +00:00
parent d46586df03
commit 464add8407
12 changed files with 3516 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
---
title: Changelog
---
**Important:**
*for the complete changelog, please refer to the website*
## [tandoor-recipes-14.0.0]tandoor-recipes-14.0.0 (2024-01-04)
### Fix
- change to new common and move to incubator ([#16864](https://github.com/truecharts/charts/issues/16864))

View File

@@ -0,0 +1,37 @@
kubeVersion: ">=1.24.0-0"
apiVersion: v2
name: tandoor-recipes
version: 14.0.0
appVersion: 1.5.10
description: Tandoor Recipes is a Django application to manage, tag and search recipes using either built in models or external storage providers hosting PDF's, Images or other files.
home: https://truecharts.org/charts/incubator/tandoor-recipes
icon: https://truecharts.org/img/hotlink-ok/chart-icons/tandoor-recipes.png
deprecated: false
sources:
- https://github.com/vabene1111/recipes
- https://github.com/truecharts/charts/tree/master/charts/incubator/tandoor-recipes
maintainers:
- name: TrueCharts
email: info@truecharts.org
url: https://truecharts.org
keywords:
- tandoor
- recipes
- cooking
dependencies:
- name: common
version: 17.2.21
repository: oci://tccr.io/truecharts
condition: ""
alias: ""
tags: []
import-values: []
annotations:
max_scale_version: 23.10.2
min_scale_version: 23.10.0
truecharts.org/SCALE-support: "true"
truecharts.org/category: media
truecharts.org/max_helm_version: "3.13"
truecharts.org/min_helm_version: "3.12"
truecharts.org/train: incubator
type: application

View File

@@ -0,0 +1,28 @@
---
title: 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/unstable/recipes)
**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,9 @@
## [tandoor-recipes-14.0.0]tandoor-recipes-14.0.0 (2024-01-04)
### Fix
- change to new common and move to incubator ([#16864](https://github.com/truecharts/charts/issues/16864))

View File

@@ -0,0 +1,8 @@
Tandoor Recipes is a Django application to manage, tag and search recipes using either built in models or external storage providers hosting PDF's, Images or other files.
This App is supplied by TrueCharts, for more information visit the manual: [https://truecharts.org/charts/incubator/tandoor-recipes](https://truecharts.org/charts/incubator/tandoor-recipes)
---
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!

View File

@@ -0,0 +1,62 @@
image:
repository: vabene1111/recipes
pullPolicy: IfNotPresent
tag: 1.5.10@sha256:07fe5a05de3a8a746b4bfe778f9c7a5ec80a0710123d5067efec5c4dc6d807cb
securityContext:
container:
readOnlyRootFilesystem: false
runAsNonRoot: false
runAsGroup: 0
runAsUser: 0
workload:
main:
podSpec:
containers:
main:
env:
DB_ENGINE: django.db.backends.postgresql
POSTGRES_HOST:
secretKeyRef:
name: cnpg-main-urls
key: host
POSTGRES_PORT: 5432
POSTGRES_USER: "{{ .Values.cnpg.main.user }}"
POSTGRES_PASSWORD:
secretKeyRef:
name: cnpg-main-user
key: password
POSTGRES_DB: "{{ .Values.cnpg.main.database }}"
TANDOOR_PORT: "{{ .Values.service.main.ports.main.port }}"
ALLOWED_HOSTS: "*"
COMMENT_PREF_DEFAULT: 1
CSRF_TRUSTED_ORIGINS: ""
DEBUG: 0
FRACTION_PREF_DEFAULT: 0
GUNICORN_MEDIA: 1
SECRET_KEY:
secretKeyRef:
key: SECRET_KEY
name: recipes-secrets
SHOPPING_MIN_AUTOSYNC_INTERVAL: 5
TIMEZONE: "{{ .Values.TZ }}"
service:
main:
ports:
main:
port: 10029
persistence:
media:
enabled: true
mountPath: /opt/recipes/mediafiles
static:
enabled: true
mountPath: /opt/recipes/staticfiles
type: emptyDir
cnpg:
main:
enabled: true
user: recipes
database: recipes
portal:
open:
enabled: true

File diff suppressed because it is too large Load Diff

View File

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

View File

@@ -0,0 +1,10 @@
{{- include "tc.v1.common.loader.init" . }}
{{/* Render secrets for recipes */}}
{{- $secrets := include "recipes.secrets" . | fromYaml -}}
{{- if $secrets -}}
{{- $_ := set .Values.secret "recipes-secrets" $secrets -}}
{{- end -}}
{{/* Render the templates */}}
{{ include "tc.v1.common.loader.apply" . }}

View File

@@ -0,0 +1,4 @@
icon_url: https://truecharts.org/img/hotlink-ok/chart-icons/tandoor-recipes.png
categories:
- media
screenshots: []