We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents bbafffb + 3228dd6 commit 5519be3Copy full SHA for 5519be3
1 file changed
internal/deployer/config.go
@@ -113,6 +113,10 @@ func DefaultCentralConfig() CentralConfig {
113
}
114
115
func (c *CentralConfig) GetWaitConfig() WaitConfig {
116
+ // Without earlyReadiness we wait for the Available condition of component's CR to be True.
117
+ // This indicates all deployments are ready.
118
+ // With earlyReadiness we just wait for the Available condition of that component's core
119
+ // Deployment to be True.
120
waitFor := "central/" + centralCrName
121
if c.EarlyReadiness {
122
waitFor = "deployment/central"
0 commit comments