forked from kubernetes-sigs/krew-index
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvirt.yaml
90 lines (83 loc) · 3.38 KB
/
virt.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
apiVersion: krew.googlecontainertools.github.com/v1alpha2
kind: Plugin
metadata:
name: virt
spec:
version: "v0.29.0"
platforms:
- selector:
matchLabels:
os: darwin
arch: amd64
uri: "https://github.com/kubevirt/kubectl-virt-plugin/releases/download/v0.29.0/virtctl-darwin-amd64.tar.gz"
sha256: "f583bcfe5534fcf0e8cf52590f656cb834060dec7574e069614dcaf343ebaff6"
files:
- from: "/virtctl/virtctl-darwin-amd64"
to: "virtctl"
- from: virtctl/LICENSE
to: .
bin: "virtctl"
- selector:
matchLabels:
os: linux
arch: amd64
uri: "https://github.com/kubevirt/kubectl-virt-plugin/releases/download/v0.29.0/virtctl-linux-amd64.tar.gz"
sha256: "7a9aa8661dbd17540a45370984ea2012692a148d979a65547a8e80a102ca2fc1"
files:
- from: "/virtctl/virtctl-linux-amd64"
to: "virtctl"
- from: virtctl/LICENSE
to: .
bin: "virtctl"
- selector:
matchLabels:
os: linux
arch: 386
uri: "https://github.com/kubevirt/kubectl-virt-plugin/releases/download/v0.29.0/virtctl-linux-x86_64.tar.gz"
sha256: "03a8a15f8b24bf39e180ce31a9df732c0b8b1fcee73d5ef502b78a584a26a3f8"
files:
- from: "/virtctl/virtctl-linux-x86_64"
to: "virtctl"
- from: virtctl/LICENSE
to: .
bin: "virtctl"
- selector:
matchLabels:
os: windows
arch: amd64
uri: "https://github.com/kubevirt/kubectl-virt-plugin/releases/download/v0.29.0/virtctl-windows-amd64.exe.tar.gz"
sha256: "0d2609dea45ae9047f46ee6e14dde6db2c306d46ce7f2e5d447eb58568f8da20"
files:
- from: "/virtctl/virtctl-windows-amd64.exe"
to: "virtctl.exe"
- from: virtctl/LICENSE
to: .
bin: "virtctl.exe"
shortDescription: Control KubeVirt virtual machines using virtctl
homepage: https://kubevirt.io
caveats: |
virt plugin is a wrapper for virtctl originating from the KubeVirt project. In order to use virtctl you will
need to have KubeVirt installed on your Kubernetes cluster to use it. See https://kubevirt.io/ for details
Run
kubectl virt help
to get an overview of the available commands
See
https://kubevirt.io/user-guide/docs/latest/using-virtual-machines/graphical-and-console-access.html
for a usage example
description: |
virt plugin is a wrapper for virtctl originating from the KubeVirt project. KubeVirt is a virtualization add-on to
Kubernetes, i.e. it enables to run existing virtual machines on Kubernetes clusters. virtctl controls virtual
machine related operations on your Kubernetes cluster like connecting to the serial and VNC consoles.
Kubevirt documentation:
Overview:
https://kubevirt.io/
Installation:
https://kubevirt.io/user-guide/docs/latest/administration/intro.html
User Guide:
https://kubevirt.io/user-guide/docs/latest/welcome/index.html
Minikube Quickstart:
https://kubevirt.io/quickstart_minikube/
Virtctl usage examples:
https://kubevirt.io/user-guide/docs/latest/using-virtual-machines/graphical-and-console-access.html
https://kubevirt.io/user-guide/docs/latest/using-virtual-machines/expose-service.html
https://kubevirt.io/user-guide/docs/latest/using-virtual-machines/virtual-machine-replica-set.html