forked from Temelio/ansible-role-flink
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmolecule.yml
63 lines (62 loc) · 1.31 KB
/
molecule.yml
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
---
ansible:
extra_vars:
ansible_python_interpreter: '/usr/bin/env python2.7'
raw_env_vars:
ANSIBLE_NOCOWS: 1
group_vars:
all: {}
host_vars:
flink-docker-xenial:
openjdk_jre_version: 8
flink-vagrant-xenial:
openjdk_jre_version: 8
dependency:
name: 'galaxy'
requirements_file: 'tests/requirements.yml'
driver:
name: 'docker'
docker:
containers:
- name: 'flink-docker-trusty'
image: 'ubuntu-upstart'
image_version: 'trusty'
- name: 'flink-docker-xenial'
image: 'infopen/ubuntu-xenial-ssh-py27'
image_version: '0.2.0'
privileged: True
molecule:
ignore_paths:
- '.git'
- '.molecule'
- '.tox'
- '.vagrant'
vagrant:
platforms:
- name: 'jessie64'
box: 'debian/jessie64'
linked_clone: True
- name: 'trusty64'
box: 'ubuntu/trusty64'
linked_clone: True
- name: 'xenial64'
box: 'ubuntu/xenial64'
linked_clone: True
providers:
- name: 'virtualbox'
type: 'virtualbox'
options:
memory: 512
cpus: 1
instances:
- name: 'flink-vagrant'
interfaces:
- network_name: 'private_network'
type: 'dhcp'
auto_config: True
options:
append_platform_to_hostname: True
verifier:
name: 'testinfra'
options:
sudo: True