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

cloud-in-a-box: add missing prepare.sh script #755

Closed
wants to merge 1 commit into from
Closed
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
22 changes: 17 additions & 5 deletions docs/guides/other-guides/cloud-in-a-box/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -142,28 +142,40 @@ start over with fresh installation.
sudo apt update
sudo apt upgrade
```
7. Install upgrades

```bash
sudo apt update
sudo apt upgrade
```

8. Run the `prepare.sh` script to prepare the configuration

```bash
sudo /opt/cloud-in-a-box/prepare.sh
```

8. Run the `bootstrap.sh` script with the required [type](#types) (use of `sandbox` is recommended)
9. Run the `bootstrap.sh` script with the required [type](#types) (use of `sandbox` is recommended)

```bash
sudo /opt/cloud-in-a-box/bootstrap.sh sandbox
```

9. Run the `deploy.sh` script with the same type as in step 8 to deploy services like Ceph and OpenStack
10. Run the `deploy.sh` script with the same type as in step 8 to deploy services like Ceph and OpenStack

```bash
sudo /opt/cloud-in-a-box/deploy.sh sandbox
```

10. Shutdown the system
11. Shutdown the system

```bash
sudo shutdown -h now
```

11. Start the system again. System is ready for use, by default DHCP is tried on the first network device.
12. Start the system again. System is ready for use, by default DHCP is tried on the first network device.

11. Login via SSH. Use the user `dragon` with the password `password`.
13. Login via SSH. Use the user `dragon` with the password `password`.

```bash
ssh dragon@IP_ADDRESS_FROM_YOUR_SERVER
Expand Down
Loading