Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/shmokmt/multipass-playground
multiplass playground including a cloud-init example
https://github.com/shmokmt/multipass-playground
Last synced: 9 days ago
JSON representation
multiplass playground including a cloud-init example
- Host: GitHub
- URL: https://github.com/shmokmt/multipass-playground
- Owner: shmokmt
- License: mit
- Created: 2024-09-10T22:52:36.000Z (about 2 months ago)
- Default Branch: main
- Last Pushed: 2024-09-10T22:56:47.000Z (about 2 months ago)
- Last Synced: 2024-09-11T03:25:41.757Z (about 2 months ago)
- Homepage:
- Size: 1000 Bytes
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# multipass-playground
## Installation
```
brew install --cask multipass
```## Launch Ubuntu
```
multipass launch --name ubuntu-instance --cloud-init cloud-config.yml
multipass shell ubuntu-instance
```## Check self ip
```
ubuntu@ubuntu-instance:~$ hostname -I | awk '{print $1}'
192.168.x.x
```## Debugging
Look in `/var/log/cloud-init-output.log`.
It captures the output from each stage of cloud-init when it runs.# References
- [cloud-init documentation](https://cloudinit.readthedocs.io/en/latest/index.html)
- [GitHub - canonical/multipass: Multipass orchestrates virtual Ubuntu instances](https://github.com/canonical/multipass)