Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

eden pod deploy -p 8028:80 docker://nginx

Deploys Deploys  Nginx web server. Exposes web-service on port 8028. Doesn't allow to upload website files anywhere or change the config. 

eden pod deploy -p 8027:22 https://cloud-images.ubuntu.com/releases/groovy/release-20210108/ubuntu-20.10-server-cloudimg-amd64.img 
-v debug --metadata='#cloud-config\npassword: passw0rd\nchpasswd: { expire: False }\nssh_pwauth: True\n'

Deploys a VM with login : ubuntu and password passw0rd. Exposes ssh on port 8027

eden pod deploy docker://rancher/k3s --metadata='K3S_URL=https://<MASTER_K3S_IP>:6443\nK3S_TOKEN=<K3S_TOKEN>' --volume-type=none

...