Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add zammad-ldap-sync secret #80

Merged
merged 7 commits into from
Jan 29, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion charts/zammad-ldap-sync/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
apiVersion: v2
name: zammad-ldap-sync
version: 0.5.1
version: 0.6.0
maintainers:
- name: klml
email: [email protected]
Expand Down
9 changes: 9 additions & 0 deletions charts/zammad-ldap-sync/templates/secret.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
apiVersion: v1
kind: Secret
metadata:
name: zammad-ldap-sync
type: Opaque
data:
spring.mail.password: {{ .Values.ldapSync.applicationYML.spring.mail.username | b64enc }}
spring.mail.username: {{ .Values.ldapSync.applicationYML.spring.mail.username | b64enc}}
zammad.token: {{ .Values.ldapSync.zammadToken | b64enc}}
5 changes: 3 additions & 2 deletions charts/zammad-ldap-sync/values.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
ldapSync:
zammadToken: ReplaceWithZammadAccessToken
image:
registry: ghcr.io
repository: it-at-m/zammad-ldap-sync
Expand All @@ -19,8 +20,8 @@ ldapSync:
mail:
host: mail.example.com
port: 1
username: email-user
password: email-password
username: ReplaceWithMailAccountUsername
password: ReplaceWithMailAccountPassword
ldap:
url: ldaps://...
sync:
Expand Down