Skip to content

Commit

Permalink
cdi to 1.36.0
Browse files Browse the repository at this point in the history
Signed-off-by: Michael Henriksen <mhenriks@redhat.com>
  • Loading branch information
mhenriks committed Jul 13, 2021
1 parent 6861e30 commit 205f1bd
Show file tree
Hide file tree
Showing 70 changed files with 5,348 additions and 20,436 deletions.
31 changes: 27 additions & 4 deletions api/openapi-spec/swagger.json
Expand Up @@ -13425,6 +13425,28 @@
}
}
},
"v1beta1.DataVolumeSourceRef": {
"description": "DataVolumeSourceRef defines an indirect reference to the source of data for the DataVolume",
"type": "object",
"required": [
"kind",
"name"
],
"properties": {
"kind": {
"description": "The kind of the source reference, currently only \"DataSource\" is supported",
"type": "string"
},
"name": {
"description": "The name of the source reference",
"type": "string"
},
"namespace": {
"description": "The namespace of the source reference, defaults to the DataVolume namespace",
"type": "string"
}
}
},
"v1beta1.DataVolumeSourceRegistry": {
"description": "DataVolumeSourceRegistry provides the parameters to create a Data Volume from an registry source",
"type": "object",
Expand Down Expand Up @@ -13500,9 +13522,6 @@
"v1beta1.DataVolumeSpec": {
"description": "DataVolumeSpec defines the DataVolume type specification",
"type": "object",
"required": [
"source"
],
"properties": {
"checkpoints": {
"description": "Checkpoints is a list of DataVolumeCheckpoints, representing stages in a multistage import.",
Expand Down Expand Up @@ -13535,6 +13554,10 @@
"description": "Source is the src of the data for the requested DataVolume",
"$ref": "#/definitions/v1beta1.DataVolumeSource"
},
"sourceRef": {
"description": "SourceRef is an indirect reference to the source of data for the requested DataVolume",
"$ref": "#/definitions/v1beta1.DataVolumeSourceRef"
},
"storage": {
"description": "Storage is the requested storage specification",
"$ref": "#/definitions/v1beta1.StorageSpec"
Expand All @@ -13553,7 +13576,7 @@
}
},
"dataSource": {
"description": "This field can be used to specify either: * An existing VolumeSnapshot object (snapshot.storage.k8s.io/VolumeSnapshot - Beta) * An existing PVC (PersistentVolumeClaim) * An existing custom resource/object that implements data population (Alpha) In order to use VolumeSnapshot object types, the appropriate feature gate must be enabled (VolumeSnapshotDataSource or AnyVolumeDataSource) If the provisioner or an external controller can support the specified data source, it will create a new volume based on the contents of the specified data source. If the specified data source is not supported, the volume will not be created and the failure will be reported as an event. In the future, we plan to support more data source types and the behavior of the provisioner may change.",
"description": "This field can be used to specify either: * An existing VolumeSnapshot object (snapshot.storage.k8s.io/VolumeSnapshot) * An existing PVC (PersistentVolumeClaim) * An existing custom resource that implements data population (Alpha) In order to use custom resource types that implement data population, the AnyVolumeDataSource feature gate must be enabled. If the provisioner or an external controller can support the specified data source, it will create a new volume based on the contents of the specified data source.",
"$ref": "#/definitions/k8s.io.api.core.v1.TypedLocalObjectReference"
},
"resources": {
Expand Down
23 changes: 13 additions & 10 deletions go.mod
Expand Up @@ -11,7 +11,6 @@ require (
github.com/emicklei/go-restful v2.10.0+incompatible
github.com/emicklei/go-restful-openapi v1.2.0
github.com/evanphx/json-patch v4.9.0+incompatible
github.com/fatih/color v1.9.0 // indirect
github.com/fsnotify/fsnotify v1.4.9
github.com/ghodss/yaml v1.0.0
github.com/go-kit/kit v0.9.0
Expand All @@ -38,13 +37,13 @@ require (
github.com/mitchellh/go-ps v0.0.0-20190716172923-621e5597135b
github.com/mitchellh/go-vnc v0.0.0-20150629162542-723ed9867aed
github.com/moby/sys/mountinfo v0.4.1
github.com/onsi/ginkgo v1.12.1
github.com/onsi/gomega v1.10.1
github.com/onsi/ginkgo v1.14.1
github.com/onsi/gomega v1.10.2
github.com/opencontainers/runc v1.0.0-rc92
github.com/opencontainers/selinux v1.6.0
github.com/openshift/api v0.0.0
github.com/openshift/client-go v0.0.0
github.com/openshift/library-go v0.0.0-20200821154433-215f00df72cc
github.com/openshift/library-go v0.0.0-20210205203934-9eb0d970f2f4
github.com/operator-framework/go-appr v0.0.0-20180917210448-f2aef88446f2 // indirect
github.com/operator-framework/operator-lifecycle-manager v0.0.0-20190725173916-b56e63a643cc
github.com/operator-framework/operator-marketplace v0.0.0-20190617165322-1cbd32624349
Expand All @@ -68,22 +67,24 @@ require (
k8s.io/apiextensions-apiserver v0.20.2
k8s.io/apimachinery v0.20.2
k8s.io/client-go v12.0.0+incompatible
k8s.io/kube-aggregator v0.19.0-rc.2
k8s.io/kube-aggregator v0.20.2
k8s.io/kube-openapi v0.0.0-20210113233702-8566a335510f
k8s.io/utils v0.0.0-20201110183641-67b214c5f920
k8s.io/utils v0.0.0-20210111153108-fddb29f9d009
kubevirt.io/client-go v0.0.0-00010101000000-000000000000
kubevirt.io/containerized-data-importer v1.34.1
kubevirt.io/controller-lifecycle-operator-sdk v0.1.2
kubevirt.io/containerized-data-importer v1.36.0
kubevirt.io/controller-lifecycle-operator-sdk v0.2.0
kubevirt.io/qe-tools v0.1.6
libvirt.org/go/libvirt v1.7005.0
mvdan.cc/sh/v3 v3.1.1
sigs.k8s.io/yaml v1.2.0
)

replace (

github.com/go-kit/kit => github.com/go-kit/kit v0.3.0
github.com/golang/glog => ./staging/src/github.com/golang/glog
//github.com/googleapis/gnostic => github.com/googleapis/gnostic v0.3.1
github.com/onsi/ginkgo => github.com/onsi/ginkgo v1.12.1
github.com/onsi/gomega => github.com/onsi/gomega v1.10.1
github.com/openshift/api => github.com/openshift/api v0.0.0-20191219222812-2987a591a72c
github.com/openshift/client-go => github.com/openshift/client-go v0.0.0-20210112165513-ebc401615f47
github.com/operator-framework/operator-lifecycle-manager => github.com/operator-framework/operator-lifecycle-manager v0.0.0-20190128024246-5eb7ae5bdb7a
Expand Down Expand Up @@ -117,7 +118,9 @@ replace (

kubevirt.io/client-go => ./staging/src/kubevirt.io/client-go

kubevirt.io/containerized-data-importer => kubevirt.io/containerized-data-importer v1.34.1
kubevirt.io/containerized-data-importer => kubevirt.io/containerized-data-importer v1.36.0

sigs.k8s.io/controller-runtime => sigs.k8s.io/controller-runtime v0.6.2
)

go 1.16

0 comments on commit 205f1bd

Please sign in to comment.