Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updates box from bento/centos-7.3 to bento/centos-8.1 #31

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
.vagrant
amp-persistence
.bundle
.idea
*.iml
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ You can override the IP addresses assigned to each node by changing the `ip` for
You can alter the base OS, number of CPUs and amount of RAM allocated to each VM by altering the `box`, `cpu` or `ram` fields in `servers.yaml`. For example to switch a VM to CentOS 7 with 3 cpu cores and 1GB of RAM you would change the fields as follows:

```
box: centos/7
box: centos/8.3
ram: 1024
cpus: 3
```
Expand Down
12 changes: 6 additions & 6 deletions servers.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ default_config:
run_os_update: true
servers:
- name: amp
box: bento/centos-7.6
box: bento/centos-8.3
ram: 2048
cpus: 4
ip: 10.10.10.100
Expand All @@ -16,7 +16,7 @@ servers:
cmd:
- /vagrant/files/install_amp.sh
- name: byon1
box: bento/centos-7.6
box: bento/centos-8.3
ram: 512
cpus: 2
ip: 10.10.10.101
Expand All @@ -25,7 +25,7 @@ servers:
- sudo sed -i 's/PasswordAuthentication no/PasswordAuthentication yes/g' /etc/ssh/sshd_config
- sudo systemctl restart sshd
- name: byon2
box: bento/centos-7.6
box: bento/centos-8.3
ram: 512
cpus: 2
ip: 10.10.10.102
Expand All @@ -34,7 +34,7 @@ servers:
- sudo sed -i 's/PasswordAuthentication no/PasswordAuthentication yes/g' /etc/ssh/sshd_config
- sudo systemctl restart sshd
- name: byon3
box: bento/centos-7.6
box: bento/centos-8.3
ram: 512
cpus: 2
ip: 10.10.10.103
Expand All @@ -43,7 +43,7 @@ servers:
- sudo sed -i 's/PasswordAuthentication no/PasswordAuthentication yes/g' /etc/ssh/sshd_config
- sudo systemctl restart sshd
- name: byon4
box: bento/centos-7.6
box: bento/centos-8.3
ram: 512
cpus: 2
ip: 10.10.10.104
Expand All @@ -52,7 +52,7 @@ servers:
- sudo sed -i 's/PasswordAuthentication no/PasswordAuthentication yes/g' /etc/ssh/sshd_config
- sudo systemctl restart sshd
- name: byon5
box: bento/centos-7.6
box: bento/centos-8.3
ram: 512
cpus: 2
ip: 10.10.10.105
Expand Down