From 992a111e81ea1b9adb9cf0e8836a833c0262e75a Mon Sep 17 00:00:00 2001 From: Zach Aller Date: Thu, 16 Feb 2023 16:10:22 -0600 Subject: [PATCH] chore: fix typo for json tag on rollbackWindow (#2598) Signed-off-by: zachaller --- pkg/apis/rollouts/v1alpha1/types.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/apis/rollouts/v1alpha1/types.go b/pkg/apis/rollouts/v1alpha1/types.go index 82e5fac4c9..56d50d84fe 100755 --- a/pkg/apis/rollouts/v1alpha1/types.go +++ b/pkg/apis/rollouts/v1alpha1/types.go @@ -58,7 +58,7 @@ type RolloutSpec struct { MinReadySeconds int32 `json:"minReadySeconds,omitempty" protobuf:"varint,4,opt,name=minReadySeconds"` // The window in which a rollback will be fast tracked (fully promoted) // +optional - RollbackWindow *RollbackWindowSpec `json:"rollbackWindow,omtempty" protobuf:"bytes,13,opt,name=rollbackWindow"` + RollbackWindow *RollbackWindowSpec `json:"rollbackWindow,omitempty" protobuf:"bytes,13,opt,name=rollbackWindow"` // The deployment strategy to use to replace existing pods with new ones. // +optional Strategy RolloutStrategy `json:"strategy" protobuf:"bytes,5,opt,name=strategy"`