-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathopenldap.yaml
61 lines (61 loc) · 1.5 KB
/
openldap.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
---
apiVersion: apps/v1
kind: Deployment
metadata:
name: openldap
namespace: kube-system
labels:
app.kubernetes.io/name: openldap
spec:
selector:
matchLabels:
app.kubernetes.io/name: openldap
replicas: 1
template:
metadata:
labels:
app.kubernetes.io/name: openldap
spec:
containers:
- name: openldap
image: docker.io/bitnami/openldap:2.6.9@sha256:bdb8ebc0bed05887d0029fd8de334e71ca2f7834509e090bc9779e13ddc20e18
imagePullPolicy: "Always"
env:
- name: LDAP_ROOT
value: ${SECRET_LDAP_BASE_DN}
- name: LDAP_ADMIN_USERNAME
value: ${SECRET_LDAP_ADMIN_USERNAME}
- name: LDAP_ADMIN_PASSWORD
value: ${SECRET_LDAP_ADMIN_PASSWORD}
- name: LDAP_CUSTOM_LDIF_DIR
value: "/ldifs"
ports:
- name: tcp-ldap
containerPort: 1389
volumeMounts:
- name: users-ldif
mountPath: "/ldifs"
readOnly: true
volumes:
- name: users-ldif
secret:
secretName: openldap
items:
- key: 01-default-users.ldif
path: 01-default-users.ldif
---
apiVersion: v1
kind: Service
metadata:
name: openldap
namespace: kube-system
labels:
app.kubernetes.io/name: openldap
spec:
type: ClusterIP
ports:
- name: tcp-ldap
port: 1389
targetPort: tcp-ldap
selector:
app.kubernetes.io/name: openldap