From d8fecb507deb934792dc7acac54271d00bf0532e Mon Sep 17 00:00:00 2001 From: Thanapat Chotipun <66824385+PatrickChoDev@users.noreply.github.com> Date: Sat, 23 Mar 2024 02:13:47 +0700 Subject: [PATCH] docs: typo in BlueGreen (#3463) --- docs/features/bluegreen.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/features/bluegreen.md b/docs/features/bluegreen.md index 1cded0d86a..cc3e819adf 100644 --- a/docs/features/bluegreen.md +++ b/docs/features/bluegreen.md @@ -75,7 +75,7 @@ The following describes the sequence of events that happen during a blue-green u 1. Beginning at a fully promoted, steady-state, a revision 1 ReplicaSet is pointed to by both the `activeService` and `previewService`. 1. A user initiates an update by modifying the pod template (`spec.template.spec`). 1. The revision 2 ReplicaSet is created with size 0. -1. The preview service is modified to point to the revision 2 ReplicaSet. The `activeService` remains pointing to revision 1. +1. The `previewService` is modified to point to the revision 2 ReplicaSet. The `activeService` remains pointing to revision 1. 1. The revision 2 ReplicaSet is scaled to either `spec.replicas` or `previewReplicaCount` if set. 1. Once revision 2 ReplicaSet Pods are fully available, `prePromotionAnalysis` begins. 1. Upon success of `prePromotionAnalysis`, the blue/green pauses if `autoPromotionEnabled` is false, or `autoPromotionSeconds` is non-zero.