22 lines
345 B
YAML
22 lines
345 B
YAML
|
apiVersion: apps/v1
|
||
|
kind: Deployment
|
||
|
metadata:
|
||
|
name: ldap
|
||
|
labels:
|
||
|
app: ldap
|
||
|
spec:
|
||
|
replicas: 1
|
||
|
selector:
|
||
|
matchLabels:
|
||
|
app: ldap
|
||
|
template:
|
||
|
metadata:
|
||
|
labels:
|
||
|
app: ldap
|
||
|
spec:
|
||
|
containers:
|
||
|
- name: ldap
|
||
|
image: osixia/openldap:1.5.0
|
||
|
ports:
|
||
|
- containerPort: 389
|