kramdown : A Markdown-superset converter
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| kind: VM | |
| spec: | |
| running: true | |
| template: # BM | |
| spec: | |
| domain: | |
| foo: bar | |
| volumes: | |
| - pvcName: myrootfs | |
| ec2: # On AWS EC2 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| apiVersion: kubevirt.io/v1alpha3 | |
| kind: VirtualMachineInstance | |
| metadata: | |
| labels: | |
| special: vmi-windows | |
| name: vmi-windows | |
| spec: | |
| domain: | |
| cpu: | |
| cores: 2 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| --- | |
| apiVersion: kubevirt.io/v1alpha3 | |
| kind: VirtualMachine | |
| metadata: | |
| labels: | |
| kubevirt.io/vm: fedora-30 | |
| name: fedora-30 | |
| spec: | |
| running: true | |
| template: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| export LC_ALL=C | |
| _api() { curl -s -H "Authorization: token $GH_TOKEN" https://api.github.com/$1 ; } | |
| _org() { _api orgs/kubevirt/$1 ; } | |
| _repos() { _api repos/kubevirt/$1 ; } | |
| _kubevirt_pulls() { _repos kubevirt/pulls ; } | |
| #_kubevirt_pulls | jq ".[] | select((.assignees | length) == 0).issue_url" ; exit |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| git tag | sort -rV | while read TAG ; | |
| do | |
| [[ "$TAG" =~ [0-9].0$ ]] || continue ; | |
| echo -e "\n# $TAG" ; | |
| git show $TAG | sed -n "/changes$/,/Contributors/ p" | egrep "^- " ; | |
| done |
A VM is defined by three aspects
- Size
- Guest
- Workload
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Pod VM VM VM | |
| | | | | |
| | | | | |
| | +-----+ | | |
| ---------+-+--------------+-------------- | |
| | | | | |
| br0 br1 br2 | |
| | | | | |
| DP vlan0 vlan1 vlan2 |