Created
October 31, 2012 17:54
-
-
Save azizshamim/3988675 to your computer and use it in GitHub Desktop.
Superfast Jellyfish Demo For blog article
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
default: &default | |
vbox: superfastjellyfish-aws | |
orgname: superfastjellyfish.test | |
web1: | |
<<: *default | |
web2: | |
<<: *default | |
web3: | |
<<: *default | |
app1: | |
<<: *default | |
app2: | |
<<: *default | |
app3: | |
<<: *default | |
db1: | |
<<: *default | |
db2: | |
<<: *default |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ashamim@ataxerxes:superfastjellyfish $ vagrant status | |
Current VM states: | |
web1 not created | |
web2 not created | |
web3 not created | |
app1 not created | |
app2 not created | |
app3 not created | |
db1 not created | |
db2 not created |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
default: &default | |
vbox: superfastjellyfish-aws | |
orgname: superfastjellyfish.test | |
web1: | |
<<: *default | |
ip: 192.168.1.2 | |
web2: | |
<<: *default | |
ip: 192.168.1.3 | |
web3: | |
<<: *default | |
ip: 192.168.1.4 | |
app1: | |
<<: *default | |
ip: 192.168.1.12 | |
app2: | |
<<: *default | |
ip: 192.168.1.13 | |
app3: | |
<<: *default | |
ip: 192.168.1.14 | |
db1: | |
<<: *default | |
ip: 192.168.1.22 | |
db2: | |
<<: *default | |
ip: 192.168.1.23 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
default: &default | |
vbox: superfastjellyfish-aws | |
orgname: superfastjellyfish.test | |
chef: | |
roles: | |
- base | |
web_default: &web_default | |
<<: *default | |
chef: | |
roles: | |
- web | |
app_default: &app_default | |
<<: *default | |
chef: | |
roles: | |
- app | |
web1: | |
<<: *web_default | |
ip: 192.168.1.2 | |
web2: | |
<<: *web_default | |
ip: 192.168.1.3 | |
web3: | |
<<: *web_default | |
ip: 192.168.1.4 | |
app1: | |
<<: *app_default | |
ip: 192.168.1.12 | |
app2: | |
<<: *app_default | |
ip: 192.168.1.13 | |
app3: | |
<<: *app_default | |
ip: 192.168.1.14 | |
db1: | |
<<: *default | |
ip: 192.168.1.22 | |
chef: | |
roles: | |
- database_master | |
db2: | |
<<: *default | |
ip: 192.168.1.23 | |
chef: | |
roles: | |
- database_slave |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
chef: | |
log_level: 'debug' | |
environment: "development" | |
roles: | |
- base | |
- vagrant |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment