This PR contains the following updates: | Package | Update | Change | |---|---|---| | [docker.io/nitnelave/lldap](https://redirect.github.com/lldap/lldap) | patch | `f8b3760` -> `9a2e461` | --- > [!WARNING] > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. Add the preset `:preserveSemverRanges` to your config if you don't want to pin your dependencies. --- ### Release Notes <details> <summary>lldap/lldap (docker.io/nitnelave/lldap)</summary> ### [`v0.6.1`](https://redirect.github.com/lldap/lldap/releases/tag/v0.6.1) [Compare Source](https://redirect.github.com/lldap/lldap/compare/v0.6.0...v0.6.1) Small release, mainly to fix a migration issue with Sqlite and Postgresql. ##### Added - Added a link to a community terraform provider ([#​1035](https://redirect.github.com/lldap/lldap/issues/1035)) ##### Changed - The opaque dependency now points to the official crate rather than a fork ([#​1040](https://redirect.github.com/lldap/lldap/issues/1040)) ##### Fixed - Migration of the DB schema from 7 to 8 is now automatic for sqlite, and fixed for postgres ([#​1045](https://redirect.github.com/lldap/lldap/issues/1045)) - The startup warning about `key_seed` applying instead of `key_file` now has instructions on how to silence it ([#​1032](https://redirect.github.com/lldap/lldap/issues/1032)) ##### New services - OneDev ##### New Contributors - [@​traverseda](https://redirect.github.com/traverseda) made their first contribution in [https://github.com/lldap/lldap/pull/1036](https://redirect.github.com/lldap/lldap/pull/1036) - [@​tasansga](https://redirect.github.com/tasansga) made their first contribution in [https://github.com/lldap/lldap/pull/1035](https://redirect.github.com/lldap/lldap/pull/1035) - [@​jduepmeier](https://redirect.github.com/jduepmeier) made their first contribution in [https://github.com/lldap/lldap/pull/1040](https://redirect.github.com/lldap/lldap/pull/1040) - [@​xeoneox](https://redirect.github.com/xeoneox) made their first contribution in [https://github.com/lldap/lldap/pull/1041](https://redirect.github.com/lldap/lldap/pull/1041) **Full Changelog**: https://github.com/lldap/lldap/compare/v0.6.0...v0.6.1 </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://redirect.github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOC4xNDIuNyIsInVwZGF0ZWRJblZlciI6IjM4LjE0Mi43IiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvcGF0Y2giXX0=-->
69 lines
1.9 KiB
YAML
69 lines
1.9 KiB
YAML
image:
|
|
repository: docker.io/nitnelave/lldap
|
|
pullPolicy: IfNotPresent
|
|
tag: v0.6.1-debian@sha256:9a2e4619787961ef12268dc7cbe3fc3afb5f70a93e356ec602125779f61f0288
|
|
securityContext:
|
|
container:
|
|
readOnlyRootFilesystem: false
|
|
service:
|
|
main:
|
|
ports:
|
|
main:
|
|
port: 17170
|
|
ldap:
|
|
enabled: true
|
|
ports:
|
|
ldap:
|
|
enabled: true
|
|
port: 3890
|
|
workload:
|
|
main:
|
|
podSpec:
|
|
containers:
|
|
main:
|
|
command:
|
|
- "/app/lldap"
|
|
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
|
|
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
|