Skip to content

Commit 8efc199

Browse files
author
jpgouin
committed
change port exposition to 389 and 636
1 parent eb7dba3 commit 8efc199

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ dependencies:
1313
- bitnami-common
1414
version: 1.x.x
1515
home: https://www.openldap.org
16-
version: 4.0.1
16+
version: 4.0.2
1717
appVersion: 2.6.3
1818
description: Community developed LDAP software
1919
icon: https://raw.githubusercontent.com/jp-gouin/helm-openldap/master/logo.png

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ More detail on the container image can be found [here](https://github.com/bitnam
1212
There are some major changes between the Osixia version and the Bitnami version , ergo the major gap of the chart version.
1313

1414
- Upgrade may not work fine between `3.x` and `4.x`
15-
- Ldap and Ldaps port are non privileged ports (`1389` and `1636`)
15+
- Ldap and Ldaps port are non privileged ports (`1389` and `1636`) internally but are exposed through `global.ldapPort` and `global.sslLdapPort` (389 and 636)
1616
- Replication is now purely setup by configuration
1717
Extra schemas are loaded using `LDAP_EXTRA_SCHEMAS: "cosine,inetorgperson,nis,syncprov,serverid,csyncprov,rep,bsyncprov,brep"`
1818
- For now this list is harcoded and will be configurable in a future update.
@@ -64,8 +64,8 @@ Global parameters to configure the deployment of the application.
6464
| `global.ldapDomain` | Domain LDAP | `example.org` |
6565
| `global.adminPassword` | Administration password of Openldap | `Not@SecurePassw0rd` |
6666
| `global.configPassword` | Configuration password of Openldap | `Not@SecurePassw0rd` |
67-
| `global.ldapPort` | Ldap port | `1389` |
68-
| `global.sslLdapPort` | Ldaps port | `1636` |
67+
| `global.ldapPort` | Ldap port | `389` |
68+
| `global.sslLdapPort` | Ldaps port | `636` |
6969

7070
### Application parameters
7171

templates/statefullset.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -140,9 +140,9 @@ spec:
140140
{{- end }}
141141
ports:
142142
- name: ldap-port
143-
containerPort: {{ .Values.global.ldapPort }}
143+
containerPort: 1389
144144
- name: ssl-ldap-port
145-
containerPort: {{ .Values.global.sslLdapPort }}
145+
containerPort: 1636
146146
{{- if .Values.livenessProbe.enabled }}
147147
livenessProbe:
148148
tcpSocket:

values.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,14 @@ global:
1111
## imagePullSecrets:
1212
## - myRegistryKeySecretName
1313
##
14-
imagePullSecrets: [""]
14+
#imagePullSecrets: [""]
1515
storageClass: ""
1616
ldapDomain: "example.org"
1717
## Default Passwords to use, stored as a secret. Not used if existingSecret is set.
1818
adminPassword: Not@SecurePassw0rd
1919
configPassword: Not@SecurePassw0rd
20-
ldapPort: 1389
21-
sslLdapPort: 1636
20+
ldapPort: 389
21+
sslLdapPort: 636
2222

2323
## @section Common parameters
2424

0 commit comments

Comments
 (0)