We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 824d85e commit e68b849Copy full SHA for e68b849
1 file changed
internal/deployer/config.go
@@ -105,6 +105,10 @@ func DefaultCentralConfig() CentralConfig {
105
}
106
107
func (c *CentralConfig) GetWaitConfig() WaitConfig {
108
+ // Without earlyReadiness we wait for the Available condition of component's CR to be True.
109
+ // This indicates all deployments are ready.
110
+ // With earlyReadiness we just wait for the Available condition of that component's core
111
+ // Deployment to be True.
112
waitFor := "central/" + centralCrName
113
if c.EarlyReadiness {
114
waitFor = "deployment/central"
0 commit comments