📖
Isu's Wiki
  • Welcome to Isu's Wiki
  • Linux
    • SSH Automatic Login
    • Nginx HTTPS
    • Nginx Login Page
    • OpenVPN Server
    • PPTP Client Settings
    • LVM Allocation
    • Partition and Mount
    • Vagrant and VirtualBox
    • Bind9 SRV Record
    • Git Two Remote
    • ESXi Nvidia - 525.89.02
    • Install Qemu
    • Recover network (no netplan, iproute2)
  • Kubernetes
    • Kubernetes Reset
    • x509 Certificate Renewal
  • LaTeX
    • Code Snippet with Box in LaTeX
  • Go
    • [gRPC] Generate .pb.go from .proto
  • eBPF
    • [Kprobe] Get Argument Values
    • [Cilium] TroubleShooting
    • [Python] Install BCC
  • MicroStack
    • [Microstack] Add Image
    • [Microstack] Quota Manage
    • [Microstack] Security Group
    • [Microstack] Overcommit Resources
  • CentOS
    • Change Interface Name
    • Install Vagrant with vagrant-libvirt
  • OpenStack
    • [Nova] noVNC not working
    • [Basic] OpenStack Installation
    • [Magnum] TroubleShooting
Powered by GitBook
On this page
  • Download Image
  • Add image
  • Troubleshooting
  1. MicroStack

[Microstack] Add Image

Add images to openstack with example of Ubuntu 22.04

Download Image

wget http://cloud-images.ubuntu.com/releases/22.04/release/ubuntu-22.04-server-cloudimg-amd64.img

We need cloud images, not the ones that we normally install with USB stick. For my case, I will be using 22.04 for demo.

Add image

microstack.openstack image create "ubuntu2204" --file ubuntu-22.04-server-cloudimg-amd64.img --disk-format qcow2 --container-format bare --public

This will add Ubuntu 22.04 image to the openstack.

Troubleshooting

If you happen to encounter

[Error 13] Permission denied file ubuntu-22.04-server-cloudimg-amd64.img

As an error, move the .img file to the directory /var/snap/microstack/common/images. Then execute the same command again.

Previous[Python] Install BCCNext[Microstack] Quota Manage

Last updated 2 years ago