-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Vagrantfile.template
87 lines (72 loc) · 3.61 KB
/
Vagrantfile.template
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
# -*- mode: ruby -*-
# vi: set ft=ruby :
# Custom StackStorm Vagrantfile shipped with the box.
# User's Vagrantfile will be merged with this config, giving priority to user's settings.
#
# For more info about the original Vagrantfile load-order-merge mechanism see:
# - https://groups.google.com/forum/#!topic/packer-tool/Iu1jSRgbWOk
# - https://www.vagrantup.com/docs/cli/package.html
# - https://www.vagrantup.com/docs/vagrantfile/#load-order
Vagrant.configure("2") do |config|
# The most common configuration options are documented and commented below.
# For a complete reference, please see the online documentation at
# https://docs.vagrantup.com.
config.vm.box = "stackstorm/st2"
config.vm.hostname = "stackstorm"
# Create a forwarded port mapping which allows access to a specific port
# within the machine from a port on the host machine. In the example below,
# accessing "localhost:8080" will access port 80 on the guest machine.
# NOTE: This will enable public access to the opened port
# config.vm.network "forwarded_port", guest: 80, host: 8080
# Create a forwarded port mapping which allows access to a specific port
# within the machine from a port on the host machine and only allow access
# via 127.0.0.1 to disable public access
# config.vm.network "forwarded_port", guest: 80, host: 8080, host_ip: "127.0.0.1"
# Expose StackStorm Web UI via localhost:9000
# This is a fallback option to access the WebUI in case when "private_network" doesn't work
config.vm.network "forwarded_port",
guest: 443, host: 9000,
host_ip: "127.0.0.1", id: "st2web",
auto_correct: true
# Create a private network, which allows host-only access to the machine
# using a specific IP.
# config.vm.network "private_network", ip: "192.168.33.10"
# Expose access to StackStorm via IP
config.vm.network :private_network,
ip: "10.10.10.10",
netmask: "255.255.255.252"
# Create a public network, which generally matched to bridged network.
# Bridged networks make the machine appear as another physical device on
# your network.
# config.vm.network "public_network"
# Share an additional folder to the guest VM. The first argument is
# the path on the host to the actual folder. The second argument is
# the path on the guest to mount the folder. And the optional third
# argument is a set of non-required options.
# config.vm.synced_folder "../data", "/vagrant_data"
config.vm.provider :virtualbox do |vb|
vb.name = "stackstorm"
vb.gui = false
vb.memory = 2048
vb.cpus = 2
end
# Show welcome message with st2web login instructions after VM startup
config.vm.post_up_message = <<WELCOME
███████╗████████╗██████╗ ██████╗ ██╗ ██╗
██╔════╝╚══██╔══╝╚════██╗ ██╔═══██╗██║ ██╔╝
███████╗ ██║ █████╔╝ ██║ ██║█████╔╝
╚════██║ ██║ ██╔═══╝ ██║ ██║██╔═██╗
███████║ ██║ ███████╗ ╚██████╔╝██║ ██╗
╚══════╝ ╚═╝ ╚══════╝ ╚═════╝ ╚═╝ ╚═╝
To access the Web UI, head to:
https://10.10.10.10/
Username: st2admin
Password: Ch@ngeMe
Thanks for trying StackStorm!
WELCOME
# Show currently installed StackStorm version
config.vm.provision "st2-version",
type: "shell",
inline: "st2 --version",
run: "always"
end