Commit new Chart releases for TrueCharts

Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
This commit is contained in:
TrueCharts-Bot 2023-03-20 10:25:18 +00:00
parent 4b7d5efc0b
commit 9341487598
13 changed files with 1865 additions and 0 deletions

View File

@ -0,0 +1,8 @@
**Important:**
*for the complete changelog, please refer to the website*
## [lldap-0.0.1]lldap-0.0.1 (2023-03-20)

View File

@ -0,0 +1,33 @@
apiVersion: v2
appVersion: "0.4.1"
dependencies:
- name: common
repository: https://library-charts.truecharts.org
version: 12.2.28
deprecated: false
description: Lightweight ldap server for authentication and user management
home: https://truecharts.org/charts/incubator/lldap
icon: https://truecharts.org/img/hotlink-ok/chart-icons/lldap.png
keywords:
- lldap
- ldap
- authentication
- auth
kubeVersion: ">=1.16.0-0"
maintainers:
- email: info@truecharts.org
name: TrueCharts
url: https://truecharts.org
name: lldap
sources:
- https://github.com/truecharts/charts/tree/master/charts/lldap
- https://hub.docker.com/r/nitnelave/lldap
- https://github.com/nitnelave/lldap
type: application
version: 0.0.1
annotations:
truecharts.org/catagories: |
- ldap
- auth
truecharts.org/SCALE-support: "true"
truecharts.org/grade: U

View File

@ -0,0 +1 @@
{{- include "tc.v1.common.lib.chart.notes" $ -}}

View File

View File

@ -0,0 +1,4 @@
## [lldap-0.0.1]lldap-0.0.1 (2023-03-20)

View File

@ -0,0 +1,8 @@
Lightweight ldap server for authentication and user management
This App is supplied by TrueCharts, for more information visit the manual: [https://truecharts.org/charts/incubator/lldap](https://truecharts.org/charts/incubator/lldap)
---
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!

Binary file not shown.

View File

@ -0,0 +1,55 @@
image:
repository: nitnelave/lldap
pullPolicy: IfNotPresent
tag: latest-debian
securityContext:
container:
readOnlyRootFilesystem: false
service:
main:
ports:
main:
targetPort: 17170
port: 17170
ldap:
ports:
main:
targetPort: 3890
port: 3890
workload:
main:
podSpec:
containers:
main:
command: ["/app/lldap"]
args: ["run"]
env:
LLDAP_LDAP_BASE_DN: "dc=example,dc=com"
LLDAP_LDAP_USER_PASS: "change me"
LLDAP_JWT_SECRET:
- secretRef:
name: secrets
key: LLDAP_JWT_SECRET
LLDAP_key_file: "/data/private_key"
LLDAP_database_url:
secretKeyRef:
name: cnpg-main-urls
key: std
persistence:
data:
enabled: true
mountPath: "/data"
cnpg:
main:
enabled: true
user: lldap
database: lldap
portal:
open:
enabled: true

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,16 @@
{{/* Define the secrets */}}
{{- define "lldap.secrets" -}}
{{- $basename := include "tc.v1.common.lib.chart.names.fullname" $ -}}
{{- $fetchname := printf "%s-secret" $basename -}}
{{/* Initialize all keys */}}
{{- $secrets := randAlphaNum 50 }}
enabled: true
data:
{{ with (lookup "v1" "Secret" .Release.Namespace $fetchname) }}
{{/* Get previous values and decode */}}
{{ $secrets = (index .data "LLDAP_JWT_SECRET") | b64dec }}
{{ end }}
LLDAP_JWT_SECRET: {{ $secrets }}
{{- end -}}

View File

@ -0,0 +1,11 @@
{{/* Make sure all variables are set properly */}}
{{- include "tc.v1.common.loader.init" . }}
{{/* Render secrets for LLDAP */}}
{{- $secrets := include "lldap.secrets" . | fromYaml -}}
{{- if $secrets -}}
{{- $_ := set .Values.secret "secret" $secrets -}}
{{- end -}}
{{/* Render the templates */}}
{{ include "tc.v1.common.loader.apply" . }}

View File

View File

@ -0,0 +1,5 @@
icon_url: https://truecharts.org/img/hotlink-ok/chart-icons/lldap.png
categories:
- ldap
- auth