Commit new Chart releases for TrueCharts

Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
This commit is contained in:
TrueCharts-Bot 2023-02-06 01:05:45 +00:00
parent 007dea4890
commit 9e09c4276e
25 changed files with 2266 additions and 21 deletions

View File

@ -0,0 +1,99 @@
**Important:**
*for the complete changelog, please refer to the website*
## [recipes-11.0.27](https://github.com/truecharts/charts/compare/recipes-11.0.26...recipes-11.0.27) (2023-02-06)
### Chore
- update container image tccr.io/truecharts/recipes to v1.4.6
## [recipes-11.0.26](https://github.com/truecharts/charts/compare/recipes-11.0.25...recipes-11.0.26) (2023-01-24)
### Chore
- update helm general non-major ([#6689](https://github.com/truecharts/charts/issues/6689))
## [recipes-11.0.25](https://github.com/truecharts/charts/compare/recipes-11.0.24...recipes-11.0.25) (2023-01-23)
### Chore
- update helm general non-major
## [recipes-11.0.24](https://github.com/truecharts/charts/compare/recipes-11.0.23...recipes-11.0.24) (2023-01-18)
### Chore
- update container image tccr.io/truecharts/nginx to 1.23.3
## [recipes-11.0.23](https://github.com/truecharts/charts/compare/recipes-11.0.22...recipes-11.0.23) (2023-01-17)
### Chore
- update helm general non-major ([#6430](https://github.com/truecharts/charts/issues/6430))
## [recipes-11.0.22](https://github.com/truecharts/charts/compare/recipes-11.0.21...recipes-11.0.22) (2023-01-13)
### Chore
- update container image tccr.io/truecharts/nginx to 1.23.3
## [recipes-11.0.21](https://github.com/truecharts/charts/compare/recipes-11.0.20...recipes-11.0.21) (2023-01-07)
### Chore
- update helm general non-major ([#6121](https://github.com/truecharts/charts/issues/6121))
## [recipes-11.0.20](https://github.com/truecharts/charts/compare/recipes-11.0.19...recipes-11.0.20) (2022-12-27)
### Chore
- update helm general non-major ([#5856](https://github.com/truecharts/charts/issues/5856))
## [recipes-11.0.19](https://github.com/truecharts/charts/compare/recipes-11.0.18...recipes-11.0.19) (2022-12-26)
### Chore
- update helm general non-major ([#5839](https://github.com/truecharts/charts/issues/5839))
## [recipes-11.0.18](https://github.com/truecharts/charts/compare/recipes-11.0.17...recipes-11.0.18) (2022-12-25)
### Chore
- update helm general non-major
## [recipes-11.0.17](https://github.com/truecharts/charts/compare/recipes-11.0.16...recipes-11.0.17) (2022-12-25)
### Chore

View File

@ -0,0 +1,32 @@
apiVersion: v2
appVersion: "1.4.6"
description: 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.
name: recipes
version: 11.0.27
kubeVersion: ">=1.16.0-0"
keywords:
- recipes
- cooking
home: https://truecharts.org/charts/stable/recipes
icon: https://truecharts.org/img/hotlink-ok/chart-icons/recipes.png
sources:
- https://github.com/truecharts/charts/tree/master/charts/stable/recipes
- https://hub.docker.com/vabene1111/recipes
- https://github.com/vabene1111/recipes
dependencies:
- name: common
repository: https://library-charts.truecharts.org
version: 11.1.2
- condition: postgresql.enabled
name: postgresql
repository: https://charts.truecharts.org/
version: 11.0.22
maintainers:
- email: info@truecharts.org
name: TrueCharts
url: https://truecharts.org
annotations:
truecharts.org/catagories: |
- media
truecharts.org/SCALE-support: "true"
truecharts.org/grade: U

View File

@ -0,0 +1,9 @@
## [recipes-11.0.27](https://github.com/truecharts/charts/compare/recipes-11.0.26...recipes-11.0.27) (2023-02-06)
### Chore
- update container image tccr.io/truecharts/recipes to v1.4.6

View File

@ -0,0 +1,8 @@
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/stable/recipes](https://truecharts.org/charts/stable/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,123 @@
image:
repository: tccr.io/truecharts/recipes
tag: 1.4.6@sha256:0e56f6b9db1f6210f9a351ee653fc1a0d0af5c81e8a1f72eea4ffa9fd3acfb9a
pullPolicy: IfNotPresent
nginxImage:
repository: tccr.io/truecharts/nginx
tag: 1.23.3@sha256:218715557a16838206fc2c924fb2ce39b76f81e46e5c62379f2c6e7a8d1e221d
securityContext:
readOnlyRootFilesystem: false
runAsNonRoot: false
podSecurityContext:
runAsUser: 0
runAsGroup: 0
configmap:
config:
enabled: true
data:
nginx-config: |-
events {
worker_connections 1024;
}
http {
include /etc/nginx/mime.types;
server {
listen 80;
server_name _;
client_max_body_size 16M;
# serve media files
location /media/ {
alias /media/;
}
# serve static files
location /static/ {
alias /static/;
}
# pass requests for dynamic content to gunicorn
location / {
proxy_set_header Host $http_host;
proxy_pass http://localhost:8080;
proxy_set_header X-Forwarded-Proto $http_x_forwarded_proto;
}
}
}
env:
DEBUG: 0
ALLOWED_HOSTS: "*"
CSRF_TRUSTED_ORIGINS: ""
GUNICORN_MEDIA: 0
FRACTION_PREF_DEFAULT: 0
COMMENT_PREF_DEFAULT: 1
SHOPPING_MIN_AUTOSYNC_INTERVAL: 5
TIMEZONE: "{{ .Values.TZ }}"
DB_ENGINE: "django.db.backends.postgresql"
POSTGRES_DB: "{{ .Values.postgresql.postgresqlDatabase }}"
POSTGRES_USER: "{{ .Values.postgresql.postgresqlUsername }}"
POSTGRES_PORT: "5432"
POSTGRES_PASSWORD:
secretKeyRef:
name: dbcreds
key: postgresql-password
POSTGRES_HOST:
secretKeyRef:
name: dbcreds
key: plainhost
SECRET_KEY:
secretKeyRef:
name: recipes-secrets
key: SECRET_KEY
additionalContainers:
nginx:
name: nginx
image: "{{ .Values.nginxImage.repository }}:{{ .Values.nginxImage.tag }}"
ports:
- containerPort: 80
name: main
volumeMounts:
- name: recipes-config
mountPath: "/etc/nginx/nginx.conf"
subPath: nginx-config
readOnly: true
- name: media
mountPath: "/media"
- name: static
mountPath: "/static"
service:
main:
ports:
main:
port: 10029
targetPort: 80
persistence:
media:
enabled: true
mountPath: "/opt/recipes/mediafiles"
static:
enabled: true
type: emptyDir
mountPath: "/opt/recipes/staticfiles"
recipes-config:
enabled: "true"
mountPath: "/etc/nginx/nginx.conf"
subPath: "nginx.conf"
type: "custom"
volumeSpec:
configMap:
name: '{{ printf "%v-config" (include "tc.common.names.fullname" .) }}'
postgresql:
enabled: true
existingSecret: "dbcreds"
postgresqlUsername: recipes
postgresqlDatabase: recipes
portal:
enabled: true

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,20 @@
{{/* Define the secrets */}}
{{- define "recipes.secrets" -}}
---
apiVersion: v1
kind: Secret
type: Opaque
metadata:
name: recipes-secrets
{{- $recipesprevious := lookup "v1" "Secret" .Release.Namespace "recipes-secrets" }}
{{- $secret_key := "" }}
data:
{{- if $recipesprevious}}
SECRET_KEY: {{ index $recipesprevious.data "SECRET_KEY" }}
{{- else }}
{{- $secret_key := randAlphaNum 50 }}
SECRET_KEY: {{ $secret_key | b64enc | quote }}
{{- end }}
{{- end -}}

View File

@ -0,0 +1,7 @@
{{- include "tc.common.loader.init" . }}
{{/* Render secrets for recipes */}}
{{- include "recipes.secrets" . }}
{{/* Render the templates */}}
{{ include "tc.common.loader.apply" . }}

View File

@ -1,9 +0,0 @@
## [shlink-7.0.22](https://github.com/truecharts/charts/compare/shlink-7.0.21...shlink-7.0.22) (2023-01-31)
### Chore
- update container image tccr.io/truecharts/shlink to v3.5.0

View File

@ -4,6 +4,15 @@
## [shlink-7.0.23](https://github.com/truecharts/charts/compare/shlink-web-client-5.0.12...shlink-7.0.23) (2023-02-06)
### Chore
- update container image tccr.io/truecharts/shlink to v3.5.1
## [shlink-7.0.22](https://github.com/truecharts/charts/compare/shlink-7.0.21...shlink-7.0.22) (2023-01-31)
### Chore
@ -88,12 +97,3 @@
## [shlink-7.0.13](https://github.com/truecharts/charts/compare/shlink-7.0.12...shlink-7.0.13) (2022-12-19)
### Chore
- update helm general non-major
## [shlink-7.0.12](https://github.com/truecharts/charts/compare/shlink-7.0.11...shlink-7.0.12) (2022-12-18)
### Chore

View File

@ -1,5 +1,5 @@
apiVersion: v2
appVersion: "3.5.0"
appVersion: "3.5.1"
dependencies:
- name: common
repository: https://library-charts.truecharts.org
@ -27,9 +27,10 @@ maintainers:
name: shlink
sources:
- https://github.com/truecharts/charts/tree/master/charts/stable/shlink
- https://hub.docker.com/shlinkio/shlink
- https://github.com/shlinkio/shlink
type: application
version: 7.0.22
version: 7.0.23
annotations:
truecharts.org/catagories: |
- utilities

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/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%20Apps/Important-MUST-READ).
- 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 @@
## [shlink-7.0.23](https://github.com/truecharts/charts/compare/shlink-web-client-5.0.12...shlink-7.0.23) (2023-02-06)
### Chore
- update container image tccr.io/truecharts/shlink to v3.5.1

Binary file not shown.

Binary file not shown.

View File

@ -1,7 +1,7 @@
image:
repository: tccr.io/truecharts/shlink
pullPolicy: IfNotPresent
tag: 3.5.0@sha256:b3187d95e8bee1116839b9bd2ccc3105b28603bcd89c228d5031f7ada2a46c0f
tag: 3.5.1@sha256:5e0bf43420b19bd393de9342b944a3f1cb43ba4fa306d5259ca957c1d6b56bd6
securityContext:
runAsNonRoot: false

View File