1 / 30

Библиотеки и фреймворки для построения клаудов

Библиотеки и фреймворки для построения клаудов. Данилов Константин Mirantis koder-ua.blogspot.com. Виртуализация , какие ресурсы используются напрямую. None : QEMU CPU : KVM, VmWare , HyperV

erek
Download Presentation

Библиотеки и фреймворки для построения клаудов

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Библиотеки и фреймворки для построения клаудов Данилов Константин Mirantis koder-ua.blogspot.com

  2. Виртуализация, какие ресурсы используются напрямую • None : QEMU • CPU : KVM, VmWare, HyperV • Host HW Drivers : Xenpvirt, KVM + VirtIO, VmWare tools, ... • OS Kernel : LXC, Solaris Zones

  3. Тестирование

  4. Изолированное исполнение

  5. Использование ПО из другой среды

  6. Виртуализация

  7. Виртуальные сети Управление образами

  8. Миграция Балансировка

  9. API • addImage(path, …) => id • setImage(id, root_passwd=“…”, …) • startVM(config, …) => (id, ip, …) • stopVM(id) • ……….

  10. libvirt

  11. <domain type='qemu'> <memory>219136</memory> <vcpu>1</vcpu> <devices> <emulator>/usr/bin/qemu</emulator> <disk type=“block” device=“disk” > <source dev=“/tmp/img.bin” /> <target dev=“had” bus=“ide” /> </disk> </devices> </domain>

  12. vm.img + "<vm>..</vm>" + url = "provider://session" conn = libvirt.open(url) conn.createXML(cfg) =

  13. virsh libvirtbin virsh libvirt API Hypervisor API My Cloud You Cloud Hypervisor They Cloud VM VM VM VM VM

  14. # virsh list # virsh create config_file.xml # virsh stop domain_id # virsh ANY_LIBVIRT_API

  15. Internel Local network Linux kernel : iptables, routes, etc libvirtbin dnsmasq DHCP DNS Virtual network #1 Virtual network #2 VM VM VM VM Network settings

  16. <network> <ip address='192.168.122.1‘ netmask='255.255.255.0'> <dhcp> <rangestart='192.168.122.40' end='192.168.122.254'/> </dhcp> </ip> </network>

  17. libguestfs

  18. Client program libguestfs RPC Service VM with Linux Disk image

  19. gfs = guestfs.GuestFS() gfs.add_drive_opts(disk_path, format=format) gfs.launch() gfs.mount ("/dev/sda1", "/") gfs.write(fname, …) gfs.tar_out("/", ….) hiveXXX, virt-XXX, ……. Более 400 функций в API

  20. $ guestfish << _EOF_ add disk.img run mount /dev/vg_guest/lv_root / write /etc/motd "Welcome, new users" _EOF_

  21. shell + virsh + guestfish =

  22. Другие задачи • Вспомогательные сетевые функции - scapy • Балансировка нагрузки • Мониторинг -graphit • Автодеплой- chef, fabric, … • ……

  23. github.com/koder-ua/tiny_cloud локальное облако на python в ~300 строк

  24. Проблемы такого решения

  25. Q &A

  26. Облака

More Related