-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathconfig_sample.rb
33 lines (28 loc) · 914 Bytes
/
config_sample.rb
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
# Box configuration details
# $box = "rancherio/rancheros"
# $box_version = '>=0.4.1'
# Official CoreOS channel. Either alpha, beta or stable
# $update_channel = "alpha"
# URL to pull CoreOS image from
# $box_url = "https://storage.googleapis.com/%s.release.core-os.net/amd64-usr/current/coreos_production_vagrant.json" % [$update_channel]
# Tag of the rancher/server image to run
# $rancher_version = 'latest'
# IP prefix to use when assigning box ip addresses
# $ip_prefix = '192.168.33'
# Enable syncing of the current directory to the /vagrant path on the guest
# $disable_folder_sync = false
# Boxes to create in the vagrant environment
$boxes = [
{
"name" => "rancher-server",
"role" => "server",
"memory" => "1536",
"labels" => [],
},
{
"name" => "rancher-agent",
"count" => 2,
"memory" => "512",
"labels" => ["type=general"]
},
]