This repository has been archived by the owner on Jun 13, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 72
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #537 from sHaggYcaT/numa_support
Auto tests for PR: kubevirt/kubevirt#1839
- Loading branch information
Showing
23 changed files
with
1,197 additions
and
16 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
60 changes: 60 additions & 0 deletions
60
tests/manifests/sockets_cores_threads/vm-template-fedora-no-sockets-cores-and-threads.yaml
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
--- | ||
apiVersion: v1 | ||
kind: Template | ||
metadata: | ||
annotations: | ||
description: OCP KubeVirt Fedora 27 VM template | ||
iconClass: icon-fedora | ||
tags: kubevirt,ocp,template,linux,virtualmachine | ||
labels: | ||
kubevirt.io/os: fedora27 | ||
miq.github.io/kubevirt-is-vm-template: "true" | ||
name: vm-template-fedora | ||
objects: | ||
- apiVersion: kubevirt.io/v1alpha3 | ||
kind: VirtualMachine | ||
metadata: | ||
creationTimestamp: null | ||
labels: | ||
kubevirt.io/os: fedora27 | ||
name: ${NAME} | ||
spec: | ||
running: false | ||
template: | ||
metadata: | ||
creationTimestamp: null | ||
labels: | ||
kubevirt.io/os: fedora27 | ||
spec: | ||
domain: | ||
devices: | ||
disks: | ||
- disk: | ||
bus: virtio | ||
name: registryvolume | ||
- disk: | ||
bus: virtio | ||
name: cloudinitvolume | ||
machine: | ||
type: "" | ||
resources: | ||
requests: | ||
memory: ${MEMORY} | ||
terminationGracePeriodSeconds: 0 | ||
volumes: | ||
- containerDisk: | ||
image: kubevirt/fedora-cloud-registry-disk-demo | ||
name: registryvolume | ||
- cloudInitNoCloud: | ||
userData: |- | ||
#cloud-config | ||
password: fedora | ||
chpasswd: { expire: False } | ||
name: cloudinitvolume | ||
status: {} | ||
parameters: | ||
- description: Name for the new VM | ||
name: NAME | ||
- description: Amount of memory | ||
name: MEMORY | ||
value: 256Mi |
69 changes: 69 additions & 0 deletions
69
tests/manifests/sockets_cores_threads/vm-template-fedora-only-cores-and-threads.yaml
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,69 @@ | ||
--- | ||
apiVersion: v1 | ||
kind: Template | ||
metadata: | ||
annotations: | ||
description: OCP KubeVirt Fedora 27 VM template | ||
iconClass: icon-fedora | ||
tags: kubevirt,ocp,template,linux,virtualmachine | ||
labels: | ||
kubevirt.io/os: fedora27 | ||
miq.github.io/kubevirt-is-vm-template: "true" | ||
name: vm-template-fedora | ||
objects: | ||
- apiVersion: kubevirt.io/v1alpha3 | ||
kind: VirtualMachine | ||
metadata: | ||
creationTimestamp: null | ||
labels: | ||
kubevirt.io/os: fedora27 | ||
name: ${NAME} | ||
spec: | ||
running: false | ||
template: | ||
metadata: | ||
creationTimestamp: null | ||
labels: | ||
kubevirt.io/os: fedora27 | ||
spec: | ||
domain: | ||
cpu: | ||
cores: ${{CPU_CORES}} | ||
threads: ${{CPU_THREADS}} | ||
devices: | ||
disks: | ||
- disk: | ||
bus: virtio | ||
name: registryvolume | ||
- disk: | ||
bus: virtio | ||
name: cloudinitvolume | ||
machine: | ||
type: "" | ||
resources: | ||
requests: | ||
memory: ${MEMORY} | ||
terminationGracePeriodSeconds: 0 | ||
volumes: | ||
- containerDisk: | ||
image: kubevirt/fedora-cloud-registry-disk-demo | ||
name: registryvolume | ||
- cloudInitNoCloud: | ||
userData: |- | ||
#cloud-config | ||
password: fedora | ||
chpasswd: { expire: False } | ||
name: cloudinitvolume | ||
status: {} | ||
parameters: | ||
- description: Name for the new VM | ||
name: NAME | ||
- description: Amount of memory | ||
name: MEMORY | ||
value: 256Mi | ||
- description: Amount of cores | ||
name: CPU_CORES | ||
value: "2" | ||
- description: Amount of threads | ||
name: CPU_THREADS | ||
value: "2" |
65 changes: 65 additions & 0 deletions
65
tests/manifests/sockets_cores_threads/vm-template-fedora-only-cores.yaml
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
--- | ||
apiVersion: v1 | ||
kind: Template | ||
metadata: | ||
annotations: | ||
description: OCP KubeVirt Fedora 27 VM template | ||
iconClass: icon-fedora | ||
tags: kubevirt,ocp,template,linux,virtualmachine | ||
labels: | ||
kubevirt.io/os: fedora27 | ||
miq.github.io/kubevirt-is-vm-template: "true" | ||
name: vm-template-fedora | ||
objects: | ||
- apiVersion: kubevirt.io/v1alpha3 | ||
kind: VirtualMachine | ||
metadata: | ||
creationTimestamp: null | ||
labels: | ||
kubevirt.io/os: fedora27 | ||
name: ${NAME} | ||
spec: | ||
running: false | ||
template: | ||
metadata: | ||
creationTimestamp: null | ||
labels: | ||
kubevirt.io/os: fedora27 | ||
spec: | ||
domain: | ||
cpu: | ||
cores: ${{CPU_CORES}} | ||
devices: | ||
disks: | ||
- disk: | ||
bus: virtio | ||
name: registryvolume | ||
- disk: | ||
bus: virtio | ||
name: cloudinitvolume | ||
machine: | ||
type: "" | ||
resources: | ||
requests: | ||
memory: ${MEMORY} | ||
terminationGracePeriodSeconds: 0 | ||
volumes: | ||
- containerDisk: | ||
image: kubevirt/fedora-cloud-registry-disk-demo | ||
name: registryvolume | ||
- cloudInitNoCloud: | ||
userData: |- | ||
#cloud-config | ||
password: fedora | ||
chpasswd: { expire: False } | ||
name: cloudinitvolume | ||
status: {} | ||
parameters: | ||
- description: Name for the new VM | ||
name: NAME | ||
- description: Amount of memory | ||
name: MEMORY | ||
value: 256Mi | ||
- description: Amount of cores | ||
name: CPU_CORES | ||
value: "2" |
Oops, something went wrong.