blob: e6152d555d5c6ed25ac6467b27fc6778f846ddcb (
plain)
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
|
---
dependency:
name: galaxy
driver:
name: docker
lint:
name: yamllint
platforms:
- name: infrastructure-server
image: molecule-${PREBUILD_PLATFORM_DISTRO:-centos}:${PREBUILD_DISTRO_VERSION:-centos7.6}
pre_build_image: true
privileged: true
override_command: false
restart_policy: unless-stopped
env:
container: docker
volumes:
- /var/run/docker.sock:/var/run/docker.sock
- /var/lib/rancher:/var/lib/rancher:ro
groups:
- infrastructure
networks:
- name: rancher
- name: kubernetes-node-1
image: molecule-${PREBUILD_PLATFORM_DISTRO:-centos}:${PREBUILD_DISTRO_VERSION:-centos7.6}
pre_build_image: true
privileged: true
override_command: false
restart_policy: unless-stopped
env:
container: docker
volumes:
- /var/run/docker.sock:/var/run/docker.sock
- /var/lib/rancher:/var/lib/rancher:ro
groups:
- kubernetes
networks:
- name: rancher
provisioner:
name: ansible
env:
ANSIBLE_ROLES_PATH: ../../../../test/roles
ANSIBLE_LIBRARY: ../../../../library
inventory:
links:
group_vars: ../../../../group_vars
# 1) When running with molecule-dev container, use this definition and comment out localhost under host_vars (2)
hosts:
all:
hosts:
localhost:
ansible_connection: ssh
ansible_host: ${LOCALHOST_ANSIBLE_HOST:-""}
ansible_user: ${LOCALHOST_ANSIBLE_USER:-""}
ansible_password: ${LOCALHOST_ANSIBLE_PASSWORD:-""}
ansible_sudo_pass: ${LOCALHOST_ANSIBLE_SUDO_PASS:-""}
# end of 1)
# 2) When running with native molecule installation, use this definition and comment out hosts section under inventory (1)
# host_vars:
# localhost:
# ansible_sudo_pass: ${LOCALHOST_ANSIBLE_SUDO_PASS:-""}
# ansible_ssh_pass: ${LOCALHOST_ANSIBLE_PASSWORD:-""}
# End of 2)
lint:
name: ansible-lint
scenario:
name: default
test_sequence:
- lint
- cleanup
- destroy
- dependency
- syntax
- create
- prepare
- converge
# - idempotence
# --> Action: 'idempotence'
# ERROR: Idempotence test failed because of the following tasks:
# * [infrastructure-server] => rancher : Create rancher kubernetes environment
# * [kubernetes-node-1] => rancher : Add Rancher Agent
- side_effect
- verify
- cleanup
- destroy
verifier:
name: testinfra
lint:
name: flake8
|