mirror of
https://github.com/redhat-developer/odo.git
synced 2025-10-19 03:06:19 +03:00
Go: Bump github.com/operator-framework/api from 0.17.3 to 0.17.6 (#6960)
Bumps [github.com/operator-framework/api](https://github.com/operator-framework/api) from 0.17.3 to 0.17.6. - [Release notes](https://github.com/operator-framework/api/releases) - [Changelog](https://github.com/operator-framework/api/blob/master/RELEASE.md) - [Commits](https://github.com/operator-framework/api/compare/v0.17.3...v0.17.6) --- updated-dependencies: - dependency-name: github.com/operator-framework/api dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
This commit is contained in:
2
go.mod
2
go.mod
@@ -34,7 +34,7 @@ require (
|
||||
github.com/openshift/api v0.0.0-20220525145417-ee5b62754c68
|
||||
github.com/openshift/client-go v0.0.0-20220603133046-984ee5ebedcf
|
||||
github.com/openshift/oc v0.0.0-alpha.0.0.20220402064836-f1f09a392fd1
|
||||
github.com/operator-framework/api v0.17.3
|
||||
github.com/operator-framework/api v0.17.6
|
||||
github.com/operator-framework/operator-lifecycle-manager v0.21.2
|
||||
github.com/pborman/uuid v1.2.1
|
||||
github.com/posener/complete v1.2.3
|
||||
|
||||
4
go.sum
generated
4
go.sum
generated
@@ -1027,8 +1027,8 @@ github.com/openshift/oc v0.0.0-alpha.0.0.20220402064836-f1f09a392fd1 h1:/hyEDbpY
|
||||
github.com/openshift/oc v0.0.0-alpha.0.0.20220402064836-f1f09a392fd1/go.mod h1:Zn2GW8pcxWzR3FzJXOGBtybuEbJqiIkUrGWMR7khdPU=
|
||||
github.com/opentracing/opentracing-go v1.1.0/go.mod h1:UkNAQd3GIcIGf0SeVgPpRdFStlNbqXla1AfSYxPUl2o=
|
||||
github.com/operator-framework/api v0.3.8/go.mod h1:Xbje9x0SHmh0nihE21kpesB38vk3cyxnE6JdDS8Jo1Q=
|
||||
github.com/operator-framework/api v0.17.3 h1:wddE1SLKTNiIzwt28DbBIO+vPG2GOV6dkB9xBkDfT3o=
|
||||
github.com/operator-framework/api v0.17.3/go.mod h1:34tb98EwTN5SZLkgoxwvRkhMJKLHUWHOrrcv1ZwvEeA=
|
||||
github.com/operator-framework/api v0.17.6 h1:E6+vlvYUKafvoXYtCuHlDZrXX4vl8AT+r93OxNlzjpU=
|
||||
github.com/operator-framework/api v0.17.6/go.mod h1:l/cuwtPxkVUY7fzYgdust2m9tlmb8I4pOvbsUufRb24=
|
||||
github.com/operator-framework/operator-lifecycle-manager v0.21.2 h1:kUhgC+1E/epottCmFGdsshrrQ/H33d0vGFWkrKqD2SI=
|
||||
github.com/operator-framework/operator-lifecycle-manager v0.21.2/go.mod h1:g8FR6z0tPmcjAOs90YAOOwX7P67btMzS61jSJZ91TYo=
|
||||
github.com/pascaldekloe/goe v0.0.0-20180627143212-57f6aae5913c/go.mod h1:lzWF7FIEvWOWxwDKqyGYQf6ZUaNfKdP144TG7ZOy1lc=
|
||||
|
||||
@@ -114,6 +114,10 @@ type GrpcPodConfig struct {
|
||||
// +optional
|
||||
Tolerations []corev1.Toleration `json:"tolerations,omitempty"`
|
||||
|
||||
// Affinity is the catalog source's pod's affinity.
|
||||
// +optional
|
||||
Affinity *corev1.Affinity `json:"affinity,omitempty"`
|
||||
|
||||
// If specified, indicates the pod's priority.
|
||||
// If not specified, the pod priority will be default or zero if there is no
|
||||
// default.
|
||||
|
||||
@@ -145,11 +145,14 @@ type APIServiceDescription struct {
|
||||
ActionDescriptor []ActionDescriptor `json:"actionDescriptors,omitempty"`
|
||||
}
|
||||
|
||||
// APIResourceReference is a Kubernetes resource type used by a custom resource
|
||||
// APIResourceReference is a reference to a Kubernetes resource type that the referrer utilizes.
|
||||
// +k8s:openapi-gen=true
|
||||
type APIResourceReference struct {
|
||||
Name string `json:"name"`
|
||||
Kind string `json:"kind"`
|
||||
// Plural name of the referenced resource type (CustomResourceDefinition.Spec.Names[].Plural). Empty string if the referenced resource type is not a custom resource.
|
||||
Name string `json:"name"`
|
||||
// Kind of the referenced resource type.
|
||||
Kind string `json:"kind"`
|
||||
// API Version of the referenced resource type.
|
||||
Version string `json:"version"`
|
||||
}
|
||||
|
||||
@@ -279,13 +282,34 @@ type ClusterServiceVersionSpec struct {
|
||||
WebhookDefinitions []WebhookDescription `json:"webhookdefinitions,omitempty"`
|
||||
NativeAPIs []metav1.GroupVersionKind `json:"nativeAPIs,omitempty"`
|
||||
MinKubeVersion string `json:"minKubeVersion,omitempty"`
|
||||
DisplayName string `json:"displayName"`
|
||||
Description string `json:"description,omitempty"`
|
||||
Keywords []string `json:"keywords,omitempty"`
|
||||
Maintainers []Maintainer `json:"maintainers,omitempty"`
|
||||
Provider AppLink `json:"provider,omitempty"`
|
||||
Links []AppLink `json:"links,omitempty"`
|
||||
Icon []Icon `json:"icon,omitempty"`
|
||||
|
||||
// The name of the operator in display format.
|
||||
DisplayName string `json:"displayName"`
|
||||
|
||||
// Description of the operator. Can include the features, limitations or use-cases of the
|
||||
// operator.
|
||||
// +optional
|
||||
Description string `json:"description,omitempty"`
|
||||
|
||||
// A list of keywords describing the operator.
|
||||
// +optional
|
||||
Keywords []string `json:"keywords,omitempty"`
|
||||
|
||||
// A list of organizational entities maintaining the operator.
|
||||
// +optional
|
||||
Maintainers []Maintainer `json:"maintainers,omitempty"`
|
||||
|
||||
// The publishing entity behind the operator.
|
||||
// +optional
|
||||
Provider AppLink `json:"provider,omitempty"`
|
||||
|
||||
// A list of links related to the operator.
|
||||
// +optional
|
||||
Links []AppLink `json:"links,omitempty"`
|
||||
|
||||
// The icon for this operator.
|
||||
// +optional
|
||||
Icon []Icon `json:"icon,omitempty"`
|
||||
|
||||
// InstallModes specify supported installation types
|
||||
// +optional
|
||||
|
||||
3
vendor/github.com/operator-framework/api/pkg/operators/v1alpha1/installplan_types.go
generated
vendored
3
vendor/github.com/operator-framework/api/pkg/operators/v1alpha1/installplan_types.go
generated
vendored
@@ -239,6 +239,9 @@ const (
|
||||
// BundleLookupPending describes BundleLookups that are not complete.
|
||||
BundleLookupPending BundleLookupConditionType = "BundleLookupPending"
|
||||
|
||||
// BundleLookupFailed describes conditions types for when BundleLookups fail
|
||||
BundleLookupFailed BundleLookupConditionType = "BundleLookupFailed"
|
||||
|
||||
crdKind = "CustomResourceDefinition"
|
||||
)
|
||||
|
||||
|
||||
@@ -111,6 +111,12 @@ const (
|
||||
|
||||
// SubscriptionResolutionFailed indicates that the dependency resolution in the namespace in which the subscription is created has failed
|
||||
SubscriptionResolutionFailed SubscriptionConditionType = "ResolutionFailed"
|
||||
|
||||
// SubscriptionBundleUnpacking indicates that the unpack job is currently running
|
||||
SubscriptionBundleUnpacking SubscriptionConditionType = "BundleUnpacking"
|
||||
|
||||
// SubscriptionBundleUnpackFailed indicates that the unpack job failed
|
||||
SubscriptionBundleUnpackFailed SubscriptionConditionType = "BundleUnpackFailed"
|
||||
)
|
||||
|
||||
const (
|
||||
|
||||
@@ -723,6 +723,11 @@ func (in *GrpcPodConfig) DeepCopyInto(out *GrpcPodConfig) {
|
||||
(*in)[i].DeepCopyInto(&(*out)[i])
|
||||
}
|
||||
}
|
||||
if in.Affinity != nil {
|
||||
in, out := &in.Affinity, &out.Affinity
|
||||
*out = new(v1.Affinity)
|
||||
(*in).DeepCopyInto(*out)
|
||||
}
|
||||
if in.PriorityClassName != nil {
|
||||
in, out := &in.PriorityClassName, &out.PriorityClassName
|
||||
*out = new(string)
|
||||
|
||||
2
vendor/modules.txt
generated
vendored
2
vendor/modules.txt
generated
vendored
@@ -673,7 +673,7 @@ github.com/openshift/oc/pkg/helpers/motd
|
||||
github.com/openshift/oc/pkg/helpers/project
|
||||
github.com/openshift/oc/pkg/helpers/term
|
||||
github.com/openshift/oc/pkg/helpers/tokencmd
|
||||
# github.com/operator-framework/api v0.17.3
|
||||
# github.com/operator-framework/api v0.17.6
|
||||
## explicit; go 1.19
|
||||
github.com/operator-framework/api/pkg/lib/version
|
||||
github.com/operator-framework/api/pkg/operators
|
||||
|
||||
Reference in New Issue
Block a user