-
Notifications
You must be signed in to change notification settings - Fork 47
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Deploy common-instancetypes v0.0.1-rc
This initial change starts to simply deploy the v0.0.1-rc bundle of VirtualMachineCluster{Instancetypes,Preferences} resources. These resources are deployed under both OpenShift and non-OpenShift environments. At present this is the only functionality enabled within the operator when deployed under non-OpenShift environments. Future changes will introduce support for removing deprecated resources and for deploying resources from a kustomize repo URI. Signed-off-by: Lee Yarwood <[email protected]>
- Loading branch information
Showing
15 changed files
with
2,458 additions
and
11 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
93 changes: 93 additions & 0 deletions
93
data/common-instancetypes-bundle/common-clusterinstancetypes-bundle.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,93 @@ | ||
--- | ||
apiVersion: instancetype.kubevirt.io/v1alpha2 | ||
kind: VirtualMachineClusterInstancetype | ||
metadata: | ||
labels: | ||
kubevirt.io/size: large | ||
name: highperformance.large | ||
spec: | ||
cpu: | ||
dedicatedCPUPlacement: true | ||
guest: 2 | ||
isolateEmulatorThread: true | ||
ioThreadsPolicy: shared | ||
memory: | ||
guest: 8Gi | ||
--- | ||
apiVersion: instancetype.kubevirt.io/v1alpha2 | ||
kind: VirtualMachineClusterInstancetype | ||
metadata: | ||
labels: | ||
kubevirt.io/size: medium | ||
name: highperformance.medium | ||
spec: | ||
cpu: | ||
dedicatedCPUPlacement: true | ||
guest: 1 | ||
isolateEmulatorThread: true | ||
ioThreadsPolicy: shared | ||
memory: | ||
guest: 4Gi | ||
--- | ||
apiVersion: instancetype.kubevirt.io/v1alpha2 | ||
kind: VirtualMachineClusterInstancetype | ||
metadata: | ||
labels: | ||
kubevirt.io/size: small | ||
name: highperformance.small | ||
spec: | ||
cpu: | ||
dedicatedCPUPlacement: true | ||
guest: 1 | ||
isolateEmulatorThread: true | ||
ioThreadsPolicy: shared | ||
memory: | ||
guest: 2Gi | ||
--- | ||
apiVersion: instancetype.kubevirt.io/v1alpha2 | ||
kind: VirtualMachineClusterInstancetype | ||
metadata: | ||
labels: | ||
kubevirt.io/size: large | ||
name: server.large | ||
spec: | ||
cpu: | ||
guest: 2 | ||
memory: | ||
guest: 8Gi | ||
--- | ||
apiVersion: instancetype.kubevirt.io/v1alpha2 | ||
kind: VirtualMachineClusterInstancetype | ||
metadata: | ||
labels: | ||
kubevirt.io/size: medium | ||
name: server.medium | ||
spec: | ||
cpu: | ||
guest: 1 | ||
memory: | ||
guest: 4Gi | ||
--- | ||
apiVersion: instancetype.kubevirt.io/v1alpha2 | ||
kind: VirtualMachineClusterInstancetype | ||
metadata: | ||
labels: | ||
kubevirt.io/size: small | ||
name: server.small | ||
spec: | ||
cpu: | ||
guest: 1 | ||
memory: | ||
guest: 2Gi | ||
--- | ||
apiVersion: instancetype.kubevirt.io/v1alpha2 | ||
kind: VirtualMachineClusterInstancetype | ||
metadata: | ||
labels: | ||
kubevirt.io/size: tiny | ||
name: server.tiny | ||
spec: | ||
cpu: | ||
guest: 1 | ||
memory: | ||
guest: 1.5Gi |
Oops, something went wrong.