Documentation ¶
Overview ¶
Package v1alpha1 contains API Schema definitions for the standard v1alpha1 API group +kubebuilder:object:generate=true +groupName=standard.oam.dev
Index ¶
- Constants
- Variables
- func NewNegativeCondition(condType condition.ConditionType, message string) condition.Condition
- func NewPositiveCondition(condType condition.ConditionType) condition.Condition
- type BatchRollingState
- type CanaryMetric
- type CompRolloutStatus
- type HookType
- type MetricsExpectedRange
- type RollingState
- type Rollout
- type RolloutBatch
- type RolloutEvent
- type RolloutList
- type RolloutPlan
- type RolloutSpec
- type RolloutStatus
- func (in *RolloutStatus) DeepCopy() *RolloutStatus
- func (in *RolloutStatus) DeepCopyInto(out *RolloutStatus)
- func (r *RolloutStatus) ResetStatus()
- func (r *RolloutStatus) RolloutFailed(reason string)
- func (r *RolloutStatus) RolloutFailing(reason string)
- func (r *RolloutStatus) RolloutRetry(reason string)
- func (r *RolloutStatus) SetRolloutCondition(new condition.Condition)
- func (r *RolloutStatus) StateTransition(event RolloutEvent)
- type RolloutStrategyType
- type RolloutWebhook
- type RolloutWebhookPayload
Constants ¶
const ( // GroupName of the CRDs GroupName = "standard.oam.dev" // Version of the group of CRDs Version = "v1alpha1" )
const ( // RolloutSpecVerifying indicates that the rollout just started with verification RolloutSpecVerifying condition.ConditionType = "RolloutSpecVerifying" // RolloutInitializing means we start to initialize the cluster RolloutInitializing condition.ConditionType = "RolloutInitializing" // RolloutInProgress means we are upgrading resources. RolloutInProgress condition.ConditionType = "RolloutInProgress" // RolloutFinalizing means the rollout is finalizing RolloutFinalizing condition.ConditionType = "RolloutFinalizing" // RolloutFailing means the rollout is failing RolloutFailing condition.ConditionType = "RolloutFailing" // RolloutAbandoning means that the rollout is being abandoned. RolloutAbandoning condition.ConditionType = "RolloutAbandoning" // RolloutDeleting means that the rollout is being deleted. RolloutDeleting condition.ConditionType = "RolloutDeleting" // RolloutFailed means that the rollout failed. RolloutFailed condition.ConditionType = "RolloutFailed" // RolloutSucceed means that the rollout is done. RolloutSucceed condition.ConditionType = "RolloutSucceed" // BatchInitializing BatchInitializing condition.ConditionType = "BatchInitializing" // BatchPaused BatchPaused condition.ConditionType = "BatchPaused" // BatchVerifying BatchVerifying condition.ConditionType = "BatchVerifying" // BatchRolloutFailed BatchRolloutFailed condition.ConditionType = "BatchRolloutFailed" // BatchFinalizing BatchFinalizing condition.ConditionType = "BatchFinalizing" // BatchReady BatchReady condition.ConditionType = "BatchReady" )
These are valid conditions of the rollout.
Variables ¶
var ( // SchemeGroupVersion is group version used to register these objects SchemeGroupVersion = schema.GroupVersion{Group: GroupName, Version: Version} // SchemeBuilder is used to add go types to the GroupVersionKind scheme SchemeBuilder = &scheme.Builder{GroupVersion: SchemeGroupVersion} // AddToScheme adds the types in this group-version to the given scheme. AddToScheme = SchemeBuilder.AddToScheme )
var ( RolloutKind = reflect.TypeOf(Rollout{}).Name() RolloutGroupKind = schema.GroupKind{Group: GroupName, Kind: RolloutKind}.String() RolloutKindAPIVersion = RolloutKind + "." + SchemeGroupVersion.String() RolloutKindVersionKind = SchemeGroupVersion.WithKind(RolloutKind) )
Rollout type metadata
Functions ¶
func NewNegativeCondition ¶ added in v0.3.3
func NewNegativeCondition(condType condition.ConditionType, message string) condition.Condition
NewNegativeCondition creates a false condition type
func NewPositiveCondition ¶ added in v0.3.3
func NewPositiveCondition(condType condition.ConditionType) condition.Condition
NewPositiveCondition creates a positive condition type
Types ¶
type BatchRollingState ¶ added in v0.3.1
type BatchRollingState string
BatchRollingState is the sub state when the rollout is on the fly
const ( // BatchInitializingState still rolling the batch, the batch rolling is not completed yet BatchInitializingState BatchRollingState = "batchInitializing" // BatchInRollingState still rolling the batch, the batch rolling is not completed yet BatchInRollingState BatchRollingState = "batchInRolling" // BatchVerifyingState verifying if the application is ready to roll. BatchVerifyingState BatchRollingState = "batchVerifying" // BatchRolloutFailedState indicates that the batch didn't get the manual or automatic approval BatchRolloutFailedState BatchRollingState = "batchVerifyFailed" // BatchFinalizingState indicates that all the pods in the are available, we can move on to the next batch BatchFinalizingState BatchRollingState = "batchFinalizing" // BatchReadyState indicates that all the pods in the are upgraded and its state is ready BatchReadyState BatchRollingState = "batchReady" )
type CanaryMetric ¶ added in v0.3.1
type CanaryMetric struct { // Name of the metric Name string `json:"name"` // Interval represents the windows size Interval string `json:"interval,omitempty"` // Range value accepted for this metric // +optional MetricsRange *MetricsExpectedRange `json:"metricsRange,omitempty"` // TemplateRef references a metric template object // +optional TemplateRef *corev1.ObjectReference `json:"templateRef,omitempty"` }
CanaryMetric holds the reference to metrics used for canary analysis
func (*CanaryMetric) DeepCopy ¶ added in v0.3.1
func (in *CanaryMetric) DeepCopy() *CanaryMetric
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new CanaryMetric.
func (*CanaryMetric) DeepCopyInto ¶ added in v0.3.1
func (in *CanaryMetric) DeepCopyInto(out *CanaryMetric)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type CompRolloutStatus ¶ added in v1.1.0
type CompRolloutStatus struct { RolloutStatus `json:",inline"` // LastUpgradedTargetRevision contains the name of the componentRevisionName that we upgraded to // We will restart the rollout if this is not the same as the spec LastUpgradedTargetRevision string `json:"lastTargetRevision"` // LastSourceRevision contains the name of the componentRevisionName that we need to upgrade from. // We will restart the rollout if this is not the same as the spec LastSourceRevision string `json:"LastSourceRevision,omitempty"` }
CompRolloutStatus defines the observed state of rollout
func (*CompRolloutStatus) DeepCopy ¶ added in v1.1.0
func (in *CompRolloutStatus) DeepCopy() *CompRolloutStatus
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new CompRolloutStatus.
func (*CompRolloutStatus) DeepCopyInto ¶ added in v1.1.0
func (in *CompRolloutStatus) DeepCopyInto(out *CompRolloutStatus)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type HookType ¶ added in v0.3.1
type HookType string
HookType can be pre, post or during rollout
const ( // InitializeRolloutHook execute webhook during the rollout initializing phase InitializeRolloutHook HookType = "initialize-rollout" // PreBatchRolloutHook execute webhook before each batch rollout PreBatchRolloutHook HookType = "pre-batch-rollout" // PostBatchRolloutHook execute webhook after each batch rollout PostBatchRolloutHook HookType = "post-batch-rollout" // FinalizeRolloutHook execute the webhook during the rollout finalizing phase FinalizeRolloutHook HookType = "finalize-rollout" )
type MetricsExpectedRange ¶ added in v0.3.1
type MetricsExpectedRange struct { // Minimum value // +optional Min *intstr.IntOrString `json:"min,omitempty"` // Maximum value // +optional Max *intstr.IntOrString `json:"max,omitempty"` }
MetricsExpectedRange defines the range used for metrics validation
func (*MetricsExpectedRange) DeepCopy ¶ added in v0.3.1
func (in *MetricsExpectedRange) DeepCopy() *MetricsExpectedRange
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new MetricsExpectedRange.
func (*MetricsExpectedRange) DeepCopyInto ¶ added in v0.3.1
func (in *MetricsExpectedRange) DeepCopyInto(out *MetricsExpectedRange)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type RollingState ¶ added in v0.3.1
type RollingState string
RollingState is the overall rollout state
const ( // LocatingTargetAppState indicates that the rollout is in the stage of locating target app // we use this state to make sure we special handle the target app successfully only once LocatingTargetAppState RollingState = "locatingTargetApp" // VerifyingSpecState indicates that the rollout is in the stage of verifying the rollout settings // and the controller can locate both the target and the source VerifyingSpecState RollingState = "verifyingSpec" // InitializingState indicates that the rollout is initializing all the new resources InitializingState RollingState = "initializing" // RollingInBatchesState indicates that the rollout starts rolling RollingInBatchesState RollingState = "rollingInBatches" // FinalisingState indicates that the rollout is finalizing, possibly clean up the old resources, adjust traffic FinalisingState RollingState = "finalising" // RolloutFailingState indicates that the rollout is failing // one needs to finalize it before mark it as failed by cleaning up the old resources, adjust traffic RolloutFailingState RollingState = "rolloutFailing" // RolloutSucceedState indicates that rollout successfully completed to match the desired target state RolloutSucceedState RollingState = "rolloutSucceed" // RolloutAbandoningState indicates that the rollout is being abandoned // we need to finalize it by cleaning up the old resources, adjust traffic and return control back to its owner RolloutAbandoningState RollingState = "rolloutAbandoning" // RolloutDeletingState indicates that the rollout is being deleted // we need to finalize it by cleaning up the old resources, adjust traffic and return control back to its owner RolloutDeletingState RollingState = "RolloutDeletingState" // RolloutFailedState indicates that rollout is failed, the target replica is not reached // we can not move forward anymore, we will let the client to decide when or whether to revert. RolloutFailedState RollingState = "rolloutFailed" )
type Rollout ¶ added in v1.1.0
type Rollout struct { metav1.TypeMeta `json:",inline"` metav1.ObjectMeta `json:"metadata,omitempty"` Spec RolloutSpec `json:"spec,omitempty"` Status CompRolloutStatus `json:"status,omitempty"` }
Rollout is the Schema for the Rollout API +kubebuilder:object:root=true +kubebuilder:resource:categories={oam},shortName=rollout +kubebuilder:subresource:status +kubebuilder:storageversion +kubebuilder:printcolumn:name="TARGET",type=string,JSONPath=`.status.rolloutTargetSize` +kubebuilder:printcolumn:name="UPGRADED",type=string,JSONPath=`.status.upgradedReplicas` +kubebuilder:printcolumn:name="READY",type=string,JSONPath=`.status.upgradedReadyReplicas` +kubebuilder:printcolumn:name="BATCH-STATE",type=string,JSONPath=`.status.batchRollingState` +kubebuilder:printcolumn:name="ROLLING-STATE",type=string,JSONPath=`.status.rollingState` +kubebuilder:printcolumn:name="AGE",type=date,JSONPath=".metadata.creationTimestamp"
func (*Rollout) DeepCopy ¶ added in v1.1.0
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Rollout.
func (*Rollout) DeepCopyInto ¶ added in v1.1.0
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*Rollout) DeepCopyObject ¶ added in v1.1.0
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
type RolloutBatch ¶ added in v0.3.1
type RolloutBatch struct { // Replicas is the number of pods to upgrade in this batch // it can be an absolute number (ex: 5) or a percentage of total pods // we will ignore the percentage of the last batch to just fill the gap // +optional // it is mutually exclusive with the PodList field Replicas intstr.IntOrString `json:"replicas,omitempty"` // The list of Pods to get upgraded // +optional // it is mutually exclusive with the Replicas field PodList []string `json:"podList,omitempty"` // during the upgrade. We will mark the batch as ready as long as there are less // or equal number of pods unavailable than this number. // default = 0 // +optional MaxUnavailable *intstr.IntOrString `json:"maxUnavailable,omitempty"` // The wait time, in seconds, between instances upgrades, default = 0 // +optional InstanceInterval *int32 `json:"instanceInterval,omitempty"` // RolloutWebhooks provides a way for the batch rollout to interact with an external process // +optional BatchRolloutWebhooks []RolloutWebhook `json:"batchRolloutWebhooks,omitempty"` // CanaryMetric provides a way for the batch rollout process to automatically check certain metrics // before moving to the next batch // +optional CanaryMetric []CanaryMetric `json:"canaryMetric,omitempty"` }
RolloutBatch is used to describe how the each batch rollout should be
func (*RolloutBatch) DeepCopy ¶ added in v0.3.1
func (in *RolloutBatch) DeepCopy() *RolloutBatch
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new RolloutBatch.
func (*RolloutBatch) DeepCopyInto ¶ added in v0.3.1
func (in *RolloutBatch) DeepCopyInto(out *RolloutBatch)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type RolloutEvent ¶ added in v0.3.3
type RolloutEvent string
RolloutEvent is used to describe the events during rollout
const ( // RollingFailedEvent indicates that we encountered an unexpected error during upgrading and can't be retried RollingFailedEvent RolloutEvent = "RollingFailedEvent" // RollingRetriableFailureEvent indicates that we encountered an unexpected but retriable error RollingRetriableFailureEvent RolloutEvent = "RollingRetriableFailureEvent" // AppLocatedEvent indicates that apps are located successfully AppLocatedEvent RolloutEvent = "AppLocatedEvent" // RollingModifiedEvent indicates that the rolling target or source has changed RollingModifiedEvent RolloutEvent = "RollingModifiedEvent" // RollingDeletedEvent indicates that the rolling is being deleted RollingDeletedEvent RolloutEvent = "RollingDeletedEvent" // RollingSpecVerifiedEvent indicates that we have successfully verified that the rollout spec RollingSpecVerifiedEvent RolloutEvent = "RollingSpecVerifiedEvent" // RollingInitializedEvent indicates that we have finished initializing all the workload resources RollingInitializedEvent RolloutEvent = "RollingInitializedEvent" // AllBatchFinishedEvent indicates that all batches are upgraded AllBatchFinishedEvent RolloutEvent = "AllBatchFinishedEvent" // RollingFinalizedEvent indicates that we have finalized the rollout which includes but not // limited to the resource garbage collection RollingFinalizedEvent RolloutEvent = "AllBatchFinishedEvent" // InitializedOneBatchEvent indicates that we have successfully rolled out one batch InitializedOneBatchEvent RolloutEvent = "InitializedOneBatchEvent" // FinishedOneBatchEvent indicates that we have successfully rolled out one batch FinishedOneBatchEvent RolloutEvent = "FinishedOneBatchEvent" // RolloutOneBatchEvent indicates that we have rollout one batch RolloutOneBatchEvent RolloutEvent = "RolloutOneBatchEvent" // OneBatchAvailableEvent indicates that the batch resource is considered available // this events comes after we have examine the pod readiness check and traffic shifting if needed OneBatchAvailableEvent RolloutEvent = "OneBatchAvailable" // BatchRolloutApprovedEvent indicates that we got the approval manually BatchRolloutApprovedEvent RolloutEvent = "BatchRolloutApprovedEvent" // BatchRolloutFailedEvent indicates that we are waiting for the approval of the BatchRolloutFailedEvent RolloutEvent = "BatchRolloutFailedEvent" )
type RolloutList ¶ added in v1.1.0
type RolloutList struct { metav1.TypeMeta `json:",inline"` metav1.ListMeta `json:"metadata,omitempty"` Items []Rollout `json:"items"` }
RolloutList contains a list of Rollout +kubebuilder:object:root=true
func (*RolloutList) DeepCopy ¶ added in v1.1.0
func (in *RolloutList) DeepCopy() *RolloutList
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new RolloutList.
func (*RolloutList) DeepCopyInto ¶ added in v1.1.0
func (in *RolloutList) DeepCopyInto(out *RolloutList)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*RolloutList) DeepCopyObject ¶ added in v1.1.0
func (in *RolloutList) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
type RolloutPlan ¶ added in v0.3.1
type RolloutPlan struct { // RolloutStrategy defines strategies for the rollout plan // The default is IncreaseFirstRolloutStrategyType // +optional RolloutStrategy RolloutStrategyType `json:"rolloutStrategy,omitempty"` // The size of the target resource. The default is the same // as the size of the source resource. // +optional TargetSize *int32 `json:"targetSize,omitempty"` // The number of batches, default = 1 // +optional NumBatches *int32 `json:"numBatches,omitempty"` // The exact distribution among batches. // its size has to be exactly the same as the NumBatches (if set) // The total number cannot exceed the targetSize or the size of the source resource // We will IGNORE the last batch's replica field if it's a percentage since round errors can lead to inaccurate sum // We highly recommend to leave the last batch's replica field empty // +optional RolloutBatches []RolloutBatch `json:"rolloutBatches,omitempty"` // All pods in the batches up to the batchPartition (included) will have // the target resource specification while the rest still have the source resource // This is designed for the operators to manually rollout // Default is the the number of batches which will rollout all the batches // +optional BatchPartition *int32 `json:"batchPartition,omitempty"` // Paused the rollout, default is false // +optional Paused bool `json:"paused,omitempty"` // RolloutWebhooks provide a way for the rollout to interact with an external process // +optional RolloutWebhooks []RolloutWebhook `json:"rolloutWebhooks,omitempty"` // CanaryMetric provides a way for the rollout process to automatically check certain metrics // before complete the process // +optional CanaryMetric []CanaryMetric `json:"canaryMetric,omitempty"` }
RolloutPlan fines the details of the rollout plan
func (*RolloutPlan) DeepCopy ¶ added in v0.3.1
func (in *RolloutPlan) DeepCopy() *RolloutPlan
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new RolloutPlan.
func (*RolloutPlan) DeepCopyInto ¶ added in v0.3.1
func (in *RolloutPlan) DeepCopyInto(out *RolloutPlan)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type RolloutSpec ¶ added in v1.1.0
type RolloutSpec struct { // TargetRevisionName contains the name of the componentRevisionName that we need to upgrade to. TargetRevisionName string `json:"targetRevisionName"` // SourceRevisionName contains the name of the componentRevisionName that we need to upgrade from. // it can be empty only when it's the first time to deploy the application SourceRevisionName string `json:"sourceRevisionName,omitempty"` // ComponentName specify the component name ComponentName string `json:"componentName"` // RolloutPlan is the details on how to rollout the resources RolloutPlan RolloutPlan `json:"rolloutPlan"` }
RolloutSpec defines how to describe an update between different compRevision
func (*RolloutSpec) DeepCopy ¶ added in v1.1.0
func (in *RolloutSpec) DeepCopy() *RolloutSpec
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new RolloutSpec.
func (*RolloutSpec) DeepCopyInto ¶ added in v1.1.0
func (in *RolloutSpec) DeepCopyInto(out *RolloutSpec)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type RolloutStatus ¶ added in v0.3.1
type RolloutStatus struct { // Conditions represents the latest available observations of a CloneSet's current state. condition.ConditionedStatus `json:",inline"` // RolloutTargetSize is the size of the target resources. This is determined once the initial spec verification // and does not change until the rollout is restarted RolloutOriginalSize int32 `json:"rolloutOriginalSize,omitempty"` // RolloutTargetSize is the size of the target resources. This is determined once the initial spec verification // and does not change until the rollout is restarted RolloutTargetSize int32 `json:"rolloutTargetSize,omitempty"` // NewPodTemplateIdentifier is a string that uniquely represent the new pod template // each workload type could use different ways to identify that so we cannot compare between resources NewPodTemplateIdentifier string `json:"targetGeneration,omitempty"` // lastAppliedPodTemplateIdentifier is a string that uniquely represent the last pod template // each workload type could use different ways to identify that so we cannot compare between resources // We update this field only after a successful rollout LastAppliedPodTemplateIdentifier string `json:"lastAppliedPodTemplateIdentifier,omitempty"` // RollingState is the Rollout State RollingState RollingState `json:"rollingState"` // BatchRollingState only meaningful when the Status is rolling // +optional BatchRollingState BatchRollingState `json:"batchRollingState"` // The current batch the rollout is working on/blocked // it starts from 0 CurrentBatch int32 `json:"currentBatch"` // UpgradedReplicas is the number of Pods upgraded by the rollout controller UpgradedReplicas int32 `json:"upgradedReplicas"` // UpgradedReadyReplicas is the number of Pods upgraded by the rollout controller that have a Ready Condition. UpgradedReadyReplicas int32 `json:"upgradedReadyReplicas"` }
RolloutStatus defines the observed state of a rollout plan
func (*RolloutStatus) DeepCopy ¶ added in v0.3.1
func (in *RolloutStatus) DeepCopy() *RolloutStatus
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new RolloutStatus.
func (*RolloutStatus) DeepCopyInto ¶ added in v0.3.1
func (in *RolloutStatus) DeepCopyInto(out *RolloutStatus)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*RolloutStatus) ResetStatus ¶ added in v1.0.0
func (r *RolloutStatus) ResetStatus()
ResetStatus resets the status of the rollout to start from beginning
func (*RolloutStatus) RolloutFailed ¶ added in v0.3.3
func (r *RolloutStatus) RolloutFailed(reason string)
RolloutFailed is a special state transition since we need an error message
func (*RolloutStatus) RolloutFailing ¶ added in v1.0.0
func (r *RolloutStatus) RolloutFailing(reason string)
RolloutFailing is a special state transition that always moves the rollout state to the failing state
func (*RolloutStatus) RolloutRetry ¶ added in v0.3.3
func (r *RolloutStatus) RolloutRetry(reason string)
RolloutRetry is a special state transition since we need an error message
func (*RolloutStatus) SetRolloutCondition ¶ added in v1.0.0
func (r *RolloutStatus) SetRolloutCondition(new condition.Condition)
SetRolloutCondition sets the supplied condition, replacing any existing condition of the same type unless they are identical.
func (*RolloutStatus) StateTransition ¶ added in v0.3.3
func (r *RolloutStatus) StateTransition(event RolloutEvent)
StateTransition is the center place to do rollout state transition it returns an error if the transition is invalid it changes the coming rollout state if it's valid
type RolloutStrategyType ¶ added in v0.3.1
type RolloutStrategyType string
RolloutStrategyType defines strategies for pods rollout
const ( // IncreaseFirstRolloutStrategyType indicates that we increase the target resources first IncreaseFirstRolloutStrategyType RolloutStrategyType = "IncreaseFirst" // DecreaseFirstRolloutStrategyType indicates that we decrease the source resources first DecreaseFirstRolloutStrategyType RolloutStrategyType = "DecreaseFirst" )
type RolloutWebhook ¶ added in v0.3.1
type RolloutWebhook struct { // Type of this webhook Type HookType `json:"type"` // Name of this webhook Name string `json:"name"` // URL address of this webhook URL string `json:"url"` // Method the HTTP call method, default is POST Method string `json:"method,omitempty"` // ExpectedStatus contains all the expected http status code that we will accept as success ExpectedStatus []int `json:"expectedStatus,omitempty"` // Metadata (key-value pairs) for this webhook // +optional Metadata *map[string]string `json:"metadata,omitempty"` }
RolloutWebhook holds the reference to external checks used for canary analysis
func (*RolloutWebhook) DeepCopy ¶ added in v0.3.1
func (in *RolloutWebhook) DeepCopy() *RolloutWebhook
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new RolloutWebhook.
func (*RolloutWebhook) DeepCopyInto ¶ added in v0.3.1
func (in *RolloutWebhook) DeepCopyInto(out *RolloutWebhook)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type RolloutWebhookPayload ¶ added in v0.3.1
type RolloutWebhookPayload struct { // Name of the upgrading resource Name string `json:"name"` // Namespace of the upgrading resource Namespace string `json:"namespace"` // Phase of the rollout Phase string `json:"phase"` // Metadata (key-value pairs) are the extra data send to this webhook Metadata map[string]string `json:"metadata,omitempty"` }
RolloutWebhookPayload holds the info and metadata sent to webhooks
func (*RolloutWebhookPayload) DeepCopy ¶ added in v0.3.1
func (in *RolloutWebhookPayload) DeepCopy() *RolloutWebhookPayload
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new RolloutWebhookPayload.
func (*RolloutWebhookPayload) DeepCopyInto ¶ added in v0.3.1
func (in *RolloutWebhookPayload) DeepCopyInto(out *RolloutWebhookPayload)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.