Commit new Chart releases for TrueCharts

Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
This commit is contained in:
TrueCharts-Bot 2022-08-23 11:42:45 +00:00
parent 4d79aea998
commit 0f2cf5394f
11 changed files with 81 additions and 26 deletions

View File

@ -2,6 +2,15 @@
## [etherpad-8.0.29](https://github.com/truecharts/charts/compare/etherpad-8.0.28...etherpad-8.0.29) (2022-08-23)
### Chore
- expose some env-vars ([#3550](https://github.com/truecharts/charts/issues/3550))
## [etherpad-8.0.28](https://github.com/truecharts/charts/compare/etherpad-8.0.27...etherpad-8.0.28) (2022-08-17)
### Chore
@ -88,12 +97,3 @@
### Chore
- update helm general non-major helm releases ([#3274](https://github.com/truecharts/apps/issues/3274))
## [etherpad-8.0.21](https://github.com/truecharts/apps/compare/etherpad-8.0.19...etherpad-8.0.21) (2022-07-22)
### Chore

View File

@ -6,4 +6,4 @@ dependencies:
repository: https://charts.truecharts.org/
version: 8.0.56
digest: sha256:097eb1bdd62beead090a77b403231f4722578ef6f4e8cd6238749d5657208181
generated: "2022-08-17T18:33:44.139001109Z"
generated: "2022-08-23T11:36:00.071490097Z"

View File

@ -1,6 +1,6 @@
apiVersion: v2
appVersion: "1.8.14"
version: 8.0.28
version: 8.0.29
kubeVersion: ">=1.16.0-0"
name: etherpad
description: A real-time collaborative editor scalable to thousands of simultaneous real time users.

View File

@ -1,6 +1,6 @@
# etherpad
![Version: 8.0.28](https://img.shields.io/badge/Version-8.0.28-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 1.8.14](https://img.shields.io/badge/AppVersion-1.8.14-informational?style=flat-square)
![Version: 8.0.29](https://img.shields.io/badge/Version-8.0.29-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 1.8.14](https://img.shields.io/badge/AppVersion-1.8.14-informational?style=flat-square)
A real-time collaborative editor scalable to thousands of simultaneous real time users.

View File

@ -3,6 +3,10 @@ image:
pullPolicy: IfNotPresent
tag: version-1.8.14@sha256:4900f0e787ca22cf93090ae44ecceb5689d4427c739e1eb637a6e3a913161bf8
secretEnv:
ADMIN_PASSWORD: "adminpass"
USER_PASSWORD: "firstuserpass"
env:
DB_TYPE: "postgres"
DB_NAME: "{{ .Values.postgresql.postgresqlDatabase }}"
@ -16,6 +20,10 @@ env:
secretKeyRef:
name: dbcreds
key: plainhost
# User Defined
TITLE: "Etherpad"
FAVICON: "favicon.ico"
DEFAULT_PAD_TEXT: "Welcome to Etherpad! This pad text is synchronized as you type, so that everyone viewing this page sees the same text. This allows you to collaborate seamlessly on documents! Get involved with Etherpad at https://etherpad.org"
securityContext:
readOnlyRootFilesystem: false

View File

@ -164,6 +164,52 @@ questions:
label: Arg
schema:
type: string
- variable: secretEnv
group: "Container Configuration"
label: "Image Secrets"
schema:
additional_attrs: true
type: dict
attrs:
- variable: ADMIN_PASSWORD
label: "Admin Password"
description: "The password for the admin user (leave unspecified if you do not want to create it)"
schema:
type: string
private: true
default: ""
- variable: USER_PASSWORD
label: "User Password"
description: "The password for the first user user (leave unspecified if you do not want to create it)"
schema:
type: string
private: true
default: ""
- variable: env
group: "Container Configuration"
label: "Image Environment"
schema:
additional_attrs: true
type: dict
attrs:
- variable: TITLE
label: "Title"
description: "The name of the instance"
schema:
type: string
default: "Etherpad"
- variable: FAVICON
label: "Favicon"
description: "Favicon default name, or a fully specified URL to your own favicon"
schema:
type: string
default: "favicon.ico"
- variable: DEFAULT_PAD_TEXT
label: "Default Pad Text"
description: "The default text of a pad"
schema:
type: string
default: "Welcome to Etherpad! This pad text is synchronized as you type, so that everyone viewing this page sees the same text. This allows you to collaborate seamlessly on documents! Get involved with Etherpad at https://etherpad.org"
- variable: TZ
label: Timezone
group: Container Configuration
@ -2579,25 +2625,26 @@ questions:
required: true
- variable: docs
group: Documentation
label: 'Please read the documentation at https://truecharts.org'
label: "Please read the documentation at https://truecharts.org"
schema:
additional_attrs: true
type: dict
attrs:
- variable: confirmDocs
label: 'I have checked the documentation'
label: I have checked the documentation
schema:
type: boolean
default: true
# - variable: donate
# group: Documentation
# label: 'Please consider supporting TrueCharts, see: https://truecharts.org/docs/about/sponsor'
# schema:
# additional_attrs: true
# type: dict
# attrs:
# - variable: confirmDonate
# label: 'I have considered supporting the project'
# schema:
# type: boolean
# default: true
- variable: donate
group: Documentation
label: "Please consider supporting TrueCharts, see: https://truecharts.org/docs/about/sponsor"
schema:
additional_attrs: true
type: dict
attrs:
- variable: confirmDonate
label: I have considered donating
schema:
type: boolean
default: true
hidden: true