forked from sebiwi/kubernetes-coreos
-
Notifications
You must be signed in to change notification settings - Fork 0
/
molecule.yml
62 lines (58 loc) · 1.34 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
---
ansible:
config_file: ./ansible.cfg
playbook: kubernetes.yml
vagrant:
raw_config_args:
- "ssh.insert_key = false"
platforms:
- name: coreOS
box: coreos-stable
config.vm.box_url: https://storage.googleapis.com/stable.release.core-os.net/amd64-usr/current/coreos_production_vagrant.json
providers:
- name: virtualbox
type: virtualbox
options:
memory: 2048
cpus: 1
instances:
- name: etcd-01
ansible_groups:
- etcd
interfaces:
- network_name: private_network
type: static
ip: 10.0.0.101
auto_config: true
options:
append_platform_to_hostname: no
- name: kube-master-01
ansible_groups:
- kube-master
interfaces:
- network_name: private_network
type: static
ip: 10.0.0.111
auto_config: true
options:
append_platform_to_hostname: no
- name: kube-worker-01
ansible_groups:
- kube-worker
interfaces:
- network_name: private_network
type: static
ip: 10.0.0.121
auto_config: true
options:
append_platform_to_hostname: no
- name: kube-worker-02
ansible_groups:
- kube-worker
interfaces:
- network_name: private_network
type: static
ip: 10.0.0.122
auto_config: true
options:
append_platform_to_hostname: no