Skip to content

Commit

Permalink
cloud-in-a-box: add missing prepare.sh script
Browse files Browse the repository at this point in the history
Signed-off-by: Christian Berendt <[email protected]>
  • Loading branch information
berendt committed Jan 13, 2025
1 parent 502f647 commit 41081c8
Showing 1 changed file with 17 additions and 5 deletions.
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

0 comments on commit 41081c8

Please sign in to comment.