Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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)