mirror of
https://github.com/rancher/os.git
synced 2025-06-27 15:26:50 +00:00
11 lines
374 B
Markdown
11 lines
374 B
Markdown
|
# Packet Support
|
||
|
|
||
|
Launch a Type-1 or Type-3 Ubuntu 14.04 server and use the below cloud config. You can add any additional RancherOS configuration to it, but below is the bare minimum you need to provision RancherOS.
|
||
|
|
||
|
```yaml
|
||
|
#cloud-config
|
||
|
runcmd:
|
||
|
- wget -O /tmp/cc https://raw.githubusercontent.com/rancher/os/master/scripts/hosting/packet/packet.sh
|
||
|
- bash -x /tmp/cc
|
||
|
```
|