Commit new Chart releases for TrueCharts
Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
This commit is contained in:
parent
62e746e8cd
commit
c1b0510186
|
@ -2,6 +2,19 @@
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
## [joplin-server-8.1.0](https://github.com/truecharts/charts/compare/joplin-server-8.0.42...joplin-server-8.1.0) (2022-10-08)
|
||||||
|
|
||||||
|
### Chore
|
||||||
|
|
||||||
|
- Auto-update chart README [skip ci]
|
||||||
|
|
||||||
|
### Feat
|
||||||
|
|
||||||
|
- Add Email config for users ([#4036](https://github.com/truecharts/charts/issues/4036))
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
## [joplin-server-8.0.42](https://github.com/truecharts/charts/compare/joplin-server-8.0.41...joplin-server-8.0.42) (2022-10-07)
|
## [joplin-server-8.0.42](https://github.com/truecharts/charts/compare/joplin-server-8.0.41...joplin-server-8.0.42) (2022-10-07)
|
||||||
|
|
||||||
### Chore
|
### Chore
|
||||||
|
@ -84,16 +97,3 @@
|
||||||
- Auto-update chart README [skip ci]
|
- Auto-update chart README [skip ci]
|
||||||
- Auto-update chart README [skip ci]
|
- Auto-update chart README [skip ci]
|
||||||
- Auto-update chart README [skip ci]
|
- Auto-update chart README [skip ci]
|
||||||
- Auto-update chart README [skip ci]
|
|
||||||
- Auto-update chart README [skip ci]
|
|
||||||
- Auto-update chart README [skip ci]
|
|
||||||
- Auto-update chart README [skip ci]
|
|
||||||
- Auto-update chart README [skip ci]
|
|
||||||
- Auto-update chart README [skip ci]
|
|
||||||
- Auto-update chart README [skip ci]
|
|
||||||
- Auto-update chart README [skip ci]
|
|
||||||
- Auto-update chart README [skip ci]
|
|
||||||
- refactor Services SCALE GUI
|
|
||||||
- update helm general non-major ([#3767](https://github.com/truecharts/charts/issues/3767))
|
|
||||||
- split serviceSelector ([#3751](https://github.com/truecharts/charts/issues/3751))
|
|
||||||
|
|
|
@ -6,4 +6,4 @@ dependencies:
|
||||||
repository: https://charts.truecharts.org/
|
repository: https://charts.truecharts.org/
|
||||||
version: 8.0.95
|
version: 8.0.95
|
||||||
digest: sha256:ce775551232ada9c9ad72d405aa8c2358b9bdd5e17ec19836a5ea1dde0c2af44
|
digest: sha256:ce775551232ada9c9ad72d405aa8c2358b9bdd5e17ec19836a5ea1dde0c2af44
|
||||||
generated: "2022-10-08T10:18:11.136682176Z"
|
generated: "2022-10-08T22:09:07.326377739Z"
|
|
@ -2,7 +2,7 @@ apiVersion: v2
|
||||||
appVersion: "2.7.4"
|
appVersion: "2.7.4"
|
||||||
description: This server allows you to sync any Joplin client
|
description: This server allows you to sync any Joplin client
|
||||||
name: joplin-server
|
name: joplin-server
|
||||||
version: 8.0.42
|
version: 8.1.0
|
||||||
kubeVersion: ">=1.16.0-0"
|
kubeVersion: ">=1.16.0-0"
|
||||||
keywords:
|
keywords:
|
||||||
- joplin
|
- joplin
|
|
@ -26,6 +26,14 @@ env:
|
||||||
secretKeyRef:
|
secretKeyRef:
|
||||||
name: dbcreds
|
name: dbcreds
|
||||||
key: plainhost
|
key: plainhost
|
||||||
|
MAILER_ENABLED: 0
|
||||||
|
MAILER_HOST: ""
|
||||||
|
MAILER_PORT: 465
|
||||||
|
MAILER_SECURE: true
|
||||||
|
MAILER_AUTH_USER: ""
|
||||||
|
MAILER_AUTH_PASSWORD: ""
|
||||||
|
MAILER_NOREPLY_NAME: ""
|
||||||
|
MAILER_NOREPLY_EMAIL: ""
|
||||||
|
|
||||||
probes:
|
probes:
|
||||||
liveness:
|
liveness:
|
|
@ -165,19 +165,77 @@ questions:
|
||||||
schema:
|
schema:
|
||||||
type: string
|
type: string
|
||||||
- variable: env
|
- variable: env
|
||||||
group: "Container Configuration"
|
group: Container Configuration
|
||||||
label: "Image Environment"
|
label: Image Environment
|
||||||
schema:
|
schema:
|
||||||
additional_attrs: true
|
additional_attrs: true
|
||||||
type: dict
|
type: dict
|
||||||
attrs:
|
attrs:
|
||||||
- variable: APP_BASE_URL
|
- variable: APP_BASE_URL
|
||||||
label: "APP_BASE_URL"
|
label: APP_BASE_URL
|
||||||
description: "Sets the APP_BASE_URL env var"
|
description: Sets the APP_BASE_URL env var
|
||||||
schema:
|
schema:
|
||||||
type: string
|
type: string
|
||||||
required: true
|
required: true
|
||||||
default: ""
|
default: ""
|
||||||
|
- variable: MAILER_ENABLED
|
||||||
|
label: MAILER_ENABLED
|
||||||
|
description: Set 1 to enabled and 0 to disable
|
||||||
|
schema:
|
||||||
|
type: int
|
||||||
|
min: 0
|
||||||
|
max: 1
|
||||||
|
default: 0
|
||||||
|
- variable: MAILER_HOST
|
||||||
|
label: Mailer Host
|
||||||
|
description: Sets the MAILER_HOST env var, eg smtp.example.com
|
||||||
|
schema:
|
||||||
|
show_if: [["MAILER_ENABLED", "=", "1"]]
|
||||||
|
type: string
|
||||||
|
default: ""
|
||||||
|
- variable: MAILER_PORT
|
||||||
|
label: Mailer Port
|
||||||
|
description: Sets the MAILER_PORT env var, eg SMTP PORT 465
|
||||||
|
schema:
|
||||||
|
show_if: [["MAILER_ENABLED", "=", "1"]]
|
||||||
|
type: int
|
||||||
|
default: 465
|
||||||
|
- variable: MAILER_SECURE
|
||||||
|
label: Mailer Secure
|
||||||
|
description: Sets the MAILER_SECURE env var, HTTPS for the smtp
|
||||||
|
schema:
|
||||||
|
show_if: [["MAILER_ENABLED", "=", "1"]]
|
||||||
|
type: boolean
|
||||||
|
default: true
|
||||||
|
- variable: MAILER_AUTH_USER
|
||||||
|
label: Mailer Auth User
|
||||||
|
description: Sets the MAILER_AUTH_USER env var, username for Email server
|
||||||
|
schema:
|
||||||
|
show_if: [["MAILER_ENABLED", "=", "1"]]
|
||||||
|
type: string
|
||||||
|
default: ""
|
||||||
|
- variable: MAILER_AUTH_PASSWORD
|
||||||
|
label: Mailer Auth Password
|
||||||
|
description: Sets the MAILER_AUTH_PASSWORD env var, password for Email server
|
||||||
|
schema:
|
||||||
|
show_if: [["MAILER_ENABLED", "=", "1"]]
|
||||||
|
type: string
|
||||||
|
private: true
|
||||||
|
default: ""
|
||||||
|
- variable: MAILER_NOREPLY_NAME
|
||||||
|
label: Mailer No Reply Name
|
||||||
|
description: Sets the MAILER_NOREPLY_NAME env var, No Reply email name
|
||||||
|
schema:
|
||||||
|
show_if: [["MAILER_ENABLED", "=", "1"]]
|
||||||
|
type: string
|
||||||
|
default: ""
|
||||||
|
- variable: MAILER_NOREPLY_EMAIL
|
||||||
|
label: Mailer No Reply Email
|
||||||
|
description: Sets the MAILER_NOREPLY_EMAIL env var, No Reply default email
|
||||||
|
schema:
|
||||||
|
show_if: [["MAILER_ENABLED", "=", "1"]]
|
||||||
|
type: string
|
||||||
|
default: ""
|
||||||
- variable: TZ
|
- variable: TZ
|
||||||
label: Timezone
|
label: Timezone
|
||||||
group: Container Configuration
|
group: Container Configuration
|
||||||
|
@ -292,8 +350,8 @@ questions:
|
||||||
type: dict
|
type: dict
|
||||||
attrs:
|
attrs:
|
||||||
- variable: main
|
- variable: main
|
||||||
label: "Main Service"
|
label: Main Service
|
||||||
description: "The Primary service on which the healthcheck runs, often the webUI"
|
description: The Primary service on which the healthcheck runs, often the webUI
|
||||||
schema:
|
schema:
|
||||||
additional_attrs: true
|
additional_attrs: true
|
||||||
type: dict
|
type: dict
|
||||||
|
@ -373,14 +431,14 @@ questions:
|
||||||
type: dict
|
type: dict
|
||||||
attrs:
|
attrs:
|
||||||
- variable: main
|
- variable: main
|
||||||
label: "Main Service Port Configuration"
|
label: Main Service Port Configuration
|
||||||
schema:
|
schema:
|
||||||
additional_attrs: true
|
additional_attrs: true
|
||||||
type: dict
|
type: dict
|
||||||
attrs:
|
attrs:
|
||||||
- variable: port
|
- variable: port
|
||||||
label: "Port"
|
label: Port
|
||||||
description: "This port exposes the container port on the service"
|
description: This port exposes the container port on the service
|
||||||
schema:
|
schema:
|
||||||
type: int
|
type: int
|
||||||
default: 22300
|
default: 22300
|
||||||
|
@ -420,8 +478,8 @@ questions:
|
||||||
min: 9000
|
min: 9000
|
||||||
max: 65535
|
max: 65535
|
||||||
- variable: targetPort
|
- variable: targetPort
|
||||||
label: "Target Port"
|
label: Target Port
|
||||||
description: "The internal(!) port on the container the Application runs on"
|
description: The internal(!) port on the container the Application runs on
|
||||||
schema:
|
schema:
|
||||||
type: int
|
type: int
|
||||||
default: 22300
|
default: 22300
|
||||||
|
@ -721,8 +779,8 @@ questions:
|
||||||
type: dict
|
type: dict
|
||||||
attrs:
|
attrs:
|
||||||
- variable: config
|
- variable: config
|
||||||
label: "App Config Storage"
|
label: App Config Storage
|
||||||
description: "Stores the Application Configuration."
|
description: Stores the Application Configuration.
|
||||||
schema:
|
schema:
|
||||||
additional_attrs: true
|
additional_attrs: true
|
||||||
type: dict
|
type: dict
|
||||||
|
@ -1107,7 +1165,7 @@ questions:
|
||||||
type: dict
|
type: dict
|
||||||
attrs:
|
attrs:
|
||||||
- variable: main
|
- variable: main
|
||||||
label: "Main Ingress"
|
label: Main Ingress
|
||||||
schema:
|
schema:
|
||||||
additional_attrs: true
|
additional_attrs: true
|
||||||
type: dict
|
type: dict
|
||||||
|
@ -1487,22 +1545,22 @@ questions:
|
||||||
type: dict
|
type: dict
|
||||||
attrs:
|
attrs:
|
||||||
- variable: privileged
|
- variable: privileged
|
||||||
label: "Privileged mode"
|
label: Privileged mode
|
||||||
schema:
|
schema:
|
||||||
type: boolean
|
type: boolean
|
||||||
default: false
|
default: false
|
||||||
- variable: readOnlyRootFilesystem
|
- variable: readOnlyRootFilesystem
|
||||||
label: "ReadOnly Root Filesystem"
|
label: ReadOnly Root Filesystem
|
||||||
schema:
|
schema:
|
||||||
type: boolean
|
type: boolean
|
||||||
default: false
|
default: false
|
||||||
- variable: allowPrivilegeEscalation
|
- variable: allowPrivilegeEscalation
|
||||||
label: "Allow Privilege Escalation"
|
label: Allow Privilege Escalation
|
||||||
schema:
|
schema:
|
||||||
type: boolean
|
type: boolean
|
||||||
default: false
|
default: false
|
||||||
- variable: runAsNonRoot
|
- variable: runAsNonRoot
|
||||||
label: "runAsNonRoot"
|
label: runAsNonRoot
|
||||||
schema:
|
schema:
|
||||||
type: boolean
|
type: boolean
|
||||||
default: false
|
default: false
|
||||||
|
@ -1540,20 +1598,20 @@ questions:
|
||||||
type: dict
|
type: dict
|
||||||
attrs:
|
attrs:
|
||||||
- variable: runAsUser
|
- variable: runAsUser
|
||||||
label: "runAsUser"
|
label: runAsUser
|
||||||
description: "The UserID of the user running the application"
|
description: The UserID of the user running the application
|
||||||
schema:
|
schema:
|
||||||
type: int
|
type: int
|
||||||
default: 0
|
default: 0
|
||||||
- variable: runAsGroup
|
- variable: runAsGroup
|
||||||
label: "runAsGroup"
|
label: runAsGroup
|
||||||
description: "The groupID this App of the user running the application"
|
description: The groupID this App of the user running the application
|
||||||
schema:
|
schema:
|
||||||
type: int
|
type: int
|
||||||
default: 0
|
default: 0
|
||||||
- variable: fsGroup
|
- variable: fsGroup
|
||||||
label: "fsGroup"
|
label: fsGroup
|
||||||
description: "The group that should own ALL storage."
|
description: The group that should own ALL storage.
|
||||||
schema:
|
schema:
|
||||||
type: int
|
type: int
|
||||||
default: 568
|
default: 568
|
Loading…
Reference in New Issue