running virtual machines on kubernetes
play

RUNNING VIRTUAL MACHINES ON KUBERNETES Roman Mohr & Fabian - PowerPoint PPT Presentation

RUNNING VIRTUAL MACHINES ON KUBERNETES Roman Mohr & Fabian Deutsch, Red Hat, KVM Forum, 2017 1 FABIAN DEUTSCH ROMAN MOHR Fedora user and former oVirt and KubeVirt Contributor package maintainer Working at Red Hat oVirt and KubeVirt


  1. RUNNING VIRTUAL MACHINES ON KUBERNETES Roman Mohr & Fabian Deutsch, Red Hat, KVM Forum, 2017 1

  2. FABIAN DEUTSCH ROMAN MOHR Fedora user and former oVirt and KubeVirt Contributor package maintainer Working at Red Hat oVirt and KubeVirt Contributor Working at Red Hat fabiand@redhat.com rmohr@redhat.com @dummdida @rfenkhuber fabiand rmohr https://dummdida.tumblr.com 2

  3. VIRTUALIZATION IS OMNIPRESENT. TODAY. (drome, CC BY-NC 2.0) 3

  4. CONTAINERS AS WELL. (davehamster, CC BY 2.0) 4

  5. CONTAINERS LOOK, TASTE, AND SMELL THE SAME - JUST BETTER "Versatile, scalable, hyped, community driven, devops, …" Take this with a grain of salt. (colinwarren, CC BY-NC 2.0) 5

  6. "HOW DO WE GET THERE?" "HOW CAN I REPLACE MY VMS WITH CONTAINERS? HOW!?" 6 . 1

  7. ARE THEY REALLY SUBSTITUTES? IS THE ONE LIKE THE OTHER? Technology? Features? Feeling? Tools? Requirements? 6 . 2

  8. ⇝ ⇝ IT DEPENDS 6 . 3

  9. Replace? Yes No NOT YET? COOL "NEVER"? 7 . 1

  10. MIGRATION CONVERGENCE If workloads can be moved to If not, then we still want containers, then it's a convergence migration 7 . 2

  11. Replace? Yes No XX% YY% BOTH. 8

  12. Replace? Yes No MIGRATION PATH? DOUBLED INFRASTRUCTURE? 9 . 1

  13. Virtual Machines Containers Management Plane Management Plane Storage Network … Storage Network … 2X INFRASTRUCTURE? 9 . 2

  14. Virtualization and containers ( giphy ) 10

  15. KUBEVIRT 11

  16. CONTAINERS & VIRTUAL MACHINES on the same infrastructure. 12 . 1

  17. Virtual Machines Containers Management Plane Storage Network … KEEP YOUR VMS … 12 . 2

  18. Virtual Machines Containers Management Plane Storage Network … … TRANSITION WHAT YOU NEED … 12 . 3

  19. Virtual Machines Containers Management Plane Storage Network … … AND STICK TO VMS AS NEEDED. 12 . 4

  20. WOOT? Tell me more. ( giphy ) 13

  21. Virtual Machines Containers Kubernetes Storage Network … 14

  22. Virtual Machines Containers + KubeVirt Kubernetes Storage Network … 15

  23. HOW DOES KUBEVIRT INTEGRATE WITH KUBERNETES? The Details. 16

  24. KUBERNETES API kind: Pod metadata: “A pod (as in a pod of whales or pea pod) is a name: nginx group of one or more containers (such as Docker labels: name: nginx containers), with shared storage/network, and a spec: specification for how to run the containers.” * containers: - name: nginx image: nginx:latest ports: - containerPort: 80 nodeSelector: cpu: fast status: phase: Running * https://kubernetes.io/docs/concepts/workloads/pods/pod/#what-is-a-pod 17

  25. HOW ABOUT TREATING A POD AS A VM? Add device details as annotations. Modify the container runtime on every node. Deal with the fact that there are two Pods when you do migrations. Implement as much functionality as possible from the Kubelet, since there is not way to distinguish from outside what your VM Pod supports, compared to a normal Pod. Are we talking about a VM Pod or a Pod? 18

  26. HOW ABOUT ADDING AN EXPLICIT VIRT API? Allows a proper Virtual Machine Specification We can ship KubeVirt as a pue add-on. No Node modifications are necessary. No matter, how much Pods are necessary to perform a migration, we have one single entrypoint to the Virtual Machine. Reuse all of the kubelet and Pod Spec functionality, by running a Virtual Machine inside the Pod Talk about VMs when they are VMs, talk about Pods when they are Pods. 19

  27. KUBEVIRT API kind: VirtualMachine We have the typical Pod like structure: metadata: name: testvm Metadata section spec: domain: Specification section devices: type: PersistentVolumeClaim Typical Pod features like device: disk source: nodeSelector name: myVolumeClaim nodeSelector: affinity cpu: fast Status section status: phase: Running Behind the scene a Pod is created, scheduled and we make sure that the VM starts correctly inside. 20

  28. TYPICAL KUBECTL FEELING kind: VirtualMachine metadata: Typical Pod commands: name: testvm spec: kubectl create -f mypodspec.yaml domain: devices: kubectl delete mypod graphics: - type: spice kubectl exec mypod -it /bin/bash consoles: - type: pty Typical VirtualMachine commands: kubectl create -f myvmspec.yaml kubectl delete testvm kubectl plugin virt console testvm kubectl plugin virt spice testvm 21

  29. Documentation 22

  30. MIGRATIONS kind: Migration metadata: Backed by a controller: generateName: my-migration spec: On object create, schedules a new Pod nodeSelector: kubevirt.io/hostname: node1 On successful Pod start, it triggers the selector: migration name: testvm status: At the end of the migration the object is phase: Succeeded moved to a final state Always one VirtualMachine object you reference The objects Migration with VirtualMachine provide a consistent entry point to anything VirtualMachine related, like the Pod does for Kubernetes. 23

  31. API CHALLENGES Feature wise comparable to domxml Certain features are node specific - they need to be abstracted Needs to be married with Kubernetes concepts (pv, networks) Needs additional data for cluster-only features like scheduling 24

  32. INTEGRATION CHALLENGES Properly integrate the VirtualMachine lifecycle in a Pod lifecycle. Disks Networking qemu with libvirt in a Pod cgroups and Namespaces Migrations on top of Kubernetes 25

  33. ADDITIONAL FEATURES VirtualMachineReplicaSet Cloud Provider Nested Kubernetes Nodes Cloud Init Console/Spice access More to come ... 26

  34. PILLARS AND EFFECTS. ⇝ libvirt, … everything in pods Native Kubernetes add-on ⇝ New resource type for VMs API server with VM functionality ⇝ Operator pattern to manage VMs Declarative, like everything else ⇝ VMs live inside pods Kubernetes' infrastructure is leveraged (tabor-roeder, CC BY 2.0) 27

  35. TRY (WITH MINIKUBE ) $ minikube start --vm-driver kvm --network-plugin cni $ git clone https://github.com/kubevirt/demo.git $ cd demo $ bash run-demo.sh 28 . 1

  36. $ bash run-mini-demo.sh # Deploying KubeVirt ... vm "testvm" created Waiting for KubeVirt to be ready ... Waiting for KubeVirt to be ready ... Waiting for KubeVirt to be ready ... # KubeVirt is now ready. Try: # $ kubectl get vms $ kubectl get vms NAME KIND testvm VM.v1alpha1.kubevirt.io $ kubectl get pods NAME READY STATUS RESTARTS AGE haproxy-723816479-wcblm 1/1 Running 1 49s iscsi-demo-target-tgtd-1270025779-nckbh 1/1 Running 0 48s libvirt-8zj1k 2/2 Running 0 48s spice-proxy-3525077118-fswn9 1/1 Running 0 47s virt-api-1956313626-t9rhj 1/1 Running 0 46s virt-controller-2251532855-tfm9f 1/1 Running 0 45s virt-handler-s7g76 1/1 Running 0 43s virt-launcher-testvm-----q05vh 1/1 Running 0 38s virt-manifest-1665692876-cs8wp 2/2 Running 0 42s $ kubectl exec -it libvirt-8zj1k bash Defaulting container name to libvirtd. Use 'kubectl describe pod/libvirt-8zj1k' to see all of the containers in this pod. # virsh list Id Name State ---------------------------------------------------- 1 default_testvm running # exit 28 . 2

  37. Learn and contribute at http://kubevirt.io Thank you. @kubevirt kubevirt 29

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend