Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
---
apiVersion: apiextensions.k8s.io/v1beta1
kind: CustomResourceDefinition
metadata:
name: v2vvmwares.v2v.kubevirt.io
spec:
group: v2v.kubevirt.io
names:
kind: V2VVmware
listKind: V2VVmwareList
plural: v2vvmwares
singular: v2vvmware
scope: Namespaced
version: v1alpha1
versions:
- name: v1alpha1
served: true
storage: true
Original file line number Diff line number Diff line change
@@ -0,0 +1,78 @@
---
apiVersion: apiextensions.k8s.io/v1beta1
kind: CustomResourceDefinition
metadata:
name: ovirtproviders.v2v.kubevirt.io
spec:
group: v2v.kubevirt.io
names:
kind: OVirtProvider
listKind: OVirtProviderList
plural: ovirtproviders
singular: ovirtprovider
scope: Namespaced
subresources:
status: {}
validation:
openAPIV3Schema:
description: OVirtProvider is the Schema for the ovirtproviders API
properties:
apiVersion:
description: |-
APIVersion defines the versioned schema of this representation
of an object. Servers should convert recognized schemas to the latest
internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources
type: string
kind:
description: |-
Kind is a string value representing the REST resource this
object represents. Servers may infer this from the endpoint the client
submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
type: string
metadata:
type: object
spec:
description: OVirtProviderSpec defines the desired state of OVirtProvider
properties:
connection:
type: string
timeToLive:
type: string
vms:
items:
description: OVirtVM aligns with maintained UI interface
properties:
cluster:
type: string
detail:
description: OVirtVMDetail contains ovirt vm details as json string
properties:
raw:
type: string
type: object
detailRequest:
type: boolean
id:
type: string
name:
type: string
required:
- cluster
- id
- name
type: object
type: array
type: object
status:
description: OVirtProviderStatus defines the observed state of OVirtProvider
properties:
phase:
description: VirtualMachineProviderPhase defines provider phase
type: string
type: object
type: object
version: v1alpha1
versions:
- name: v1alpha1
served: true
storage: true

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Loading