You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem or use-case? Please describe.
The Strategy struct do not need an APIVersion at all
Describe the solution that you would like.
type Strategy struct {// Name of the referent; More info: http://kubernetes.io/docs/user-guide/identifiers#namesName string `json:"name"`// BuildStrategyKind indicates the kind of the buildstrategy, namespaced or cluster scoped.Kind *BuildStrategyKind `json:"kind,omitempty"`// API version of the referent// +optionalAPIVersion *string `json:"apiVersion,omitempty"`}
to
type Strategy struct {// Name of the referent; More info: http://kubernetes.io/docs/user-guide/identifiers#namesName string `json:"name"`// BuildStrategyKind indicates the kind of the buildstrategy, namespaced or cluster scoped.Kind *BuildStrategyKind `json:"kind,omitempty"`}
Describe alternatives you have considered.
none
Anything else?
As part of the upcoming v0.12.0 release
The text was updated successfully, but these errors were encountered:
Is there an existing feature request for this?
Is your feature request related to a problem or use-case? Please describe.
The Strategy struct do not need an APIVersion at all
Describe the solution that you would like.
to
Describe alternatives you have considered.
none
Anything else?
As part of the upcoming v0.12.0 release
The text was updated successfully, but these errors were encountered: