Commit new Chart releases for TrueCharts

Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
This commit is contained in:
TrueCharts-Bot 2023-07-14 08:49:25 +00:00
parent 8ae11b94c4
commit 4613c982bc
13 changed files with 181 additions and 51 deletions

View File

@ -1,9 +0,0 @@
## [lldap-1.1.16](https://github.com/truecharts/charts/compare/lldap-1.1.15...lldap-1.1.16) (2023-07-01)
### Chore
- update helm general non-major ([#10069](https://github.com/truecharts/charts/issues/10069))

View File

@ -4,6 +4,11 @@
## [lldap-1.2.0](https://github.com/truecharts/charts/compare/lldap-1.1.16...lldap-1.2.0) (2023-07-14)
## [lldap-1.1.16](https://github.com/truecharts/charts/compare/lldap-1.1.15...lldap-1.1.16) (2023-07-01)
### Chore
@ -92,8 +97,3 @@
## [lldap-1.1.7](https://github.com/truecharts/charts/compare/lldap-1.1.6...lldap-1.1.7) (2023-05-24)
### Chore

View File

@ -23,7 +23,7 @@ sources:
- https://github.com/truecharts/charts/tree/master/charts/stable/lldap
- https://github.com/nitnelave/lldap
type: application
version: 1.1.16
version: 1.2.0
annotations:
truecharts.org/catagories: |
- ldap

View File

@ -0,0 +1,4 @@
## [lldap-1.2.0](https://github.com/truecharts/charts/compare/lldap-1.1.16...lldap-1.2.0) (2023-07-14)

View File

@ -11,14 +11,12 @@ service:
main:
ports:
main:
targetPort: 17170
port: 17170
ldap:
enabled: true
ports:
ldap:
enabled: true
targetPort: 3890
port: 3890
workload:
@ -31,7 +29,25 @@ workload:
args:
- "run"
env:
LLDAP_HTTP_PORT: "{{ .Values.service.main.ports.main.port }}"
LLDAP_LDAP_PORT: "{{ .Values.service.ldap.ports.ldap.port }}"
LLDAP_HTTP_URL: "http://localhost:{{ .Values.service.main.ports.main.port }}"
LLDAP_LDAP_BASE_DN: "dc=example,dc=com"
# ADMIN
LLDAP_LDAP_USER_DN: "admin"
LLDAP_LDAP_USER_EMAIL: "admin@example.com"
LLDAP_LDAP_USER_PASS: "password"
# LOGGING
LLDAP_VERBOSE: false
# SMTP
LLDAP_SMTP_OPTIONS__ENABLE_PASSWORD_RESET: false
LLDAP_SMTP_OPTIONS__SERVER: ""
LLDAP_SMTP_OPTIONS__PORT: 587
LLDAP_SMTP_OPTIONS__SMTP_ENCRYPTION: "STARTTLS"
LLDAP_SMTP_OPTIONS__USER: ""
LLDAP_SMTP_OPTIONS__PASSWORD: ""
LLDAP_SMTP_OPTIONS__FROM: "LLDAP Admin <sender@gmail.com>"
LLDAP_SMTP_OPTIONS__REPLY_TO: "Do not reply <noreply@localhost>"
LLDAP_JWT_SECRET:
- secretRef:
name: secrets

View File

@ -107,11 +107,98 @@ questions:
type: dict
attrs:
- variable: LLDAP_LDAP_BASE_DN
label: "Base DN for LDAP"
label: "LDAP Base DN"
schema:
type: string
required: true
default: "dc=example,dc=com"
- variable: LLDAP_LDAP_USER_DN
label: "Ldap User DN"
schema:
type: string
required: true
default: ""
- variable: LLDAP_LDAP_USER_EMAIL
label: "Ldap User Email"
schema:
type: string
required: true
default: ""
- variable: LLDAP_LDAP_USER_PASS
label: "Ldap User Password"
schema:
type: string
required: true
private: true
default: ""
min: 8
- variable: LLDAP_HTTP_URL
label: "Public URL"
schema:
type: string
required: true
default: ""
- variable: LLDAP_VERBOSE
label: "Enable Verbose"
description: "Tune the logging to be more verbose"
schema:
type: boolean
default: false
- variable: smtp
label: Show SMTP Settings
schema:
type: boolean
default: false
show_subquestions_if: true
subquestions:
- variable: LLDAP_SMTP_OPTIONS__ENABLE_PASSWORD_RESET
label: Enable Password Reset
schema:
type: boolean
default: false
- variable: LLDAP_SMTP_OPTIONS__SERVER
label: SMTP Server Url
schema:
type: string
default: ""
- variable: LLDAP_SMTP_OPTIONS__PORT
label: SMTP Server Port
schema:
type: int
default: 587
- variable: LLDAP_SMTP_OPTIONS__SMTP_ENCRYPTION
label: SMTP Encryption
schema:
type: string
default: "STARTTLS"
enum:
- value: NONE
description: None
- value: STARTTLS
description: StartTLS
- value: TLS
description: TLS
- variable: LLDAP_SMTP_OPTIONS__USER
label: SMTP User
schema:
type: string
default: ""
- variable: LLDAP_SMTP_OPTIONS__PASSWORD
label: SMTP Password
schema:
type: string
default: ""
- variable: LLDAP_SMTP_OPTIONS__FROM
label: SMTP From
schema:
type: string
default: "LLDAP Admin <sender@gmail.com>"
- variable: LLDAP_SMTP_OPTIONS__REPLY_TO
label: SMTP Reply TO
schema:
type: string
default: "Do not reply <noreply@localhost>"
- variable: envList
label: Extra Environment Variables
description: "Please be aware that some variables are set in the background, adding duplicates here might cause issues or prevent the app from starting..."
@ -606,14 +693,6 @@ questions:
show_if: [["type", "=", "nfs"]]
type: string
default: ""
- variable: setPermissions
label: Automatic Permissions
description: Automatically set permissions on install
schema:
show_if: [["type", "=", "hostPath"]]
hidden: true
type: boolean
default: false
- variable: autoPermissions
label: Automatic Permissions Configuration
description: Automatically set permissions
@ -622,27 +701,36 @@ questions:
type: dict
additional_attrs: true
attrs:
- variable: chown
label: Run CHOWN
description: |
It will run CHOWN on the path with the given fsGroup
schema:
type: boolean
default: false
- variable: chmod
label: Run CHMOD
description: |
It will run CHMOD on the path with the given value
schema:
type: string
default: "775"
- variable: recursive
label: Recursive
description: |
It will run CHOWN and CHMOD recursively
- variable: enabled
label: enabled
schema:
type: boolean
default: false
show_subquestions_if: true
subquestions:
- variable: chown
label: Run CHOWN
description: |
It will run CHOWN on the path with the given fsGroup
schema:
type: boolean
default: false
- variable: chmod
label: Run CHMOD
description: |
It will run CHMOD on the path with the given value</br>
Format should be 3 digits, e.g. 770
schema:
type: string
valid_chars: '[0-9]{3}'
default: ""
- variable: recursive
label: Recursive
description: |
It will run CHOWN and CHMOD recursively
schema:
type: boolean
default: false
- variable: readOnly
label: Read Only
schema:
@ -718,13 +806,44 @@ questions:
show_if: [["type", "=", "nfs"]]
type: string
default: ""
- variable: setPermissions
label: Automatic Permissions
description: Automatically set permissions on install
- variable: autoPermissions
label: Automatic Permissions Configuration
description: Automatically set permissions
schema:
show_if: [["type", "=", "hostPath"]]
type: boolean
default: false
show_if: [["type", "!=", "pvc"]]
type: dict
additional_attrs: true
attrs:
- variable: enabled
label: enabled
schema:
type: boolean
default: false
show_subquestions_if: true
subquestions:
- variable: chown
label: Run CHOWN
description: |
It will run CHOWN on the path with the given fsGroup
schema:
type: boolean
default: false
- variable: chmod
label: Run CHMOD
description: |
It will run CHMOD on the path with the given value</br>
Format should be 3 digits, e.g. 770
schema:
type: string
valid_chars: '[0-9]{3}'
default: ""
- variable: recursive
label: Recursive
description: |
It will run CHOWN and CHMOD recursively
schema:
type: boolean
default: false
- variable: readOnly
label: Read Only
schema:
@ -1085,7 +1204,7 @@ questions:
default: 568
- variable: runAsGroup
label: "runAsGroup"
description: "The groupID this App of the user running the application"
description: "The groupID of the user running the application"
schema:
type: int
default: 568