Skip to content

Commit ef5ce18

Browse files
author
Anton Ustyuzhanin
committed
Tests: update molecule configuration
1 parent f4915cb commit ef5ce18

File tree

1 file changed

+19
-10
lines changed

1 file changed

+19
-10
lines changed

molecule/default/molecule.yml

Lines changed: 19 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -5,39 +5,48 @@ driver:
55
name: docker
66
lint:
77
name: yamllint
8+
options:
9+
config-file: molecule/default/.yamllint
810
platforms:
911
- name: ubuntu-trusty
1012
image: ubuntu-upstart
1113
command: /sbin/init
12-
privileged: True
14+
privileged: 'true'
15+
links:
16+
- "openldap:openldap"
1317
- name: ubuntu-xenial
1418
image: solita/ubuntu-systemd
1519
command: /sbin/init
16-
privileged: True
20+
privileged: 'true'
1721
capabilities:
1822
- SYS_ADMIN
1923
volumes:
2024
- /sys/fs/cgroup:/sys/fs/cgroup:ro
25+
links:
26+
- "openldap:openldap"
2127
- name: centos-7
2228
image: centos/systemd
2329
command: /usr/sbin/init
24-
privileged: True
30+
privileged: 'true'
2531
volumes:
2632
- /sys/fs/cgroup:/sys/fs/cgroup:ro
2733
capabilities:
2834
- SYS_ADMIN
35+
links:
36+
- "openldap:openldap"
2937
provisioner:
3038
name: ansible
3139
inventory:
3240
group_vars:
3341
all:
34-
sssd_ldap_search_base: dc=example,dc=com
35-
sssd_ldap_user_search_base: dc=example,dc=com?subtree?(uidNumber=5000)
36-
sssd_ldap_uri: ldap://localhost
37-
sssd_ldap_default_bind_dn: cn=Manager,dc=example,dc=com
38-
sssd_ldap_default_authtok: s3cr3t
39-
sssd_ldap_user_ssh_public_key: sshPublicKey
40-
sssd_ldap_override_gid: 1
42+
sssd_domains:
43+
- name: default
44+
ldap_uri: ldap://openldap
45+
ldap_search_base: dc=example,dc=org?subtree?(uidNumber=5000)
46+
ldap_default_bind_dn: cn=admin,dc=example,dc=org
47+
ldap_default_authtok: s3cr3t
48+
ldap_user_ssh_public_key: sshPublicKey
49+
override_gid: 1
4150
lint:
4251
name: ansible-lint
4352
options:

0 commit comments

Comments
 (0)