This repository has been archived by the owner on Oct 21, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
example-config.yaml
112 lines (104 loc) · 2.66 KB
/
example-config.yaml
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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
---
#
# example configuration for COSI Examples Vagrantfile
#
# follow instructions in README.md to setup
# Paste value from API Token --key
api_key: ""
# Paste value from API Token --app
api_app: ""
# Use one of "ansible", "manual", "puppet", or "shell"
# this is the default, per vm override optional
provisioner: "manual"
# COSI URL
cosi_url: "https://onestep.circonus.com/"
# API URL
api_url: "https://api.circonus.com/"
# agent mode
agent_mode: "reverse"
# Enable COSI StatsD
statsd: false
# Vagrant VMs
# must be at least one enabled...
vms:
#
# CentOS
#
"centos7.1":
enabled: false
id: "c71"
ip: "192.168.1.10"
box: "maier/centos-7.1.1503-x86_64"
puppet_package: "puppetlabs-release-pc1-el-7.noarch.rpm"
"centos7.2":
enabled: true
id: "c72"
ip: "192.168.1.11"
box: "maier/centos-7.2.1511-x86_64"
puppet_package: "puppetlabs-release-pc1-el-7.noarch.rpm"
"centos6.3":
enabled: false
id: "c63"
ip: "192.168.1.12"
box: "maier/centos-6.3-x86_64"
puppet_package: "puppetlabs-release-pc1-el-6.noarch.rpm"
"centos6.6":
enabled: false
id: "c66"
ip: "192.168.1.13"
box: "maier/centos-6.6-x86_64"
puppet_package: "puppetlabs-release-pc1-el-6.noarch.rpm"
"centos6.7":
enabled: false
id: "c67"
ip: "192.168.1.14"
box: "maier/centos-6.7-x86_64"
puppet_package: "puppetlabs-release-pc1-el-6.noarch.rpm"
#
# Ubunutu
#
"ubuntu12":
enabled: false
id: "u12"
ip: "192.168.1.20"
box: "ubuntu/precise64"
puppet_package: "puppetlabs-release-pc1-precise.deb"
"ubuntu14":
enabled: false
id: "u14"
ip: "192.168.1.21"
box: "ubuntu/trusty64"
puppet_package: "puppetlabs-release-pc1-trusty.deb"
"ubuntu16":
enabled: false
id: "u16"
ip: "192.168.1.22"
box: "ubuntu/xenial64"
puppet_package: "puppetlabs-release-pc1-xenial.deb"
#
# OmniOS
#
"omnios014":
enabled: false
id: "o14"
ip: "192.168.1.30"
box: "maier/omnios-r151014-x86_64"
provisioner: "shell"
#
# Debian
#
"debian7":
enabled: false
id: "o14"
ip: "192.168.1.40"
box: "maier/debian-7.11.0-x86_64"
provisioner: "shell"
puppet_package: "puppetlabs-release-pc1-wheezy.deb"
"debian8":
enabled: false
id: "o14"
ip: "192.168.1.41"
box: "maier/debian-8.7.0-x86_64"
provisioner: "shell"
puppet_package: "puppetlabs-release-pc1-jessie.deb"
#END