You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This causes them to stall for several seconds at startup (bad for Recreate update-strategy Deployments.) This latency could be reduced if we waited for the Secret to exist (which takes much less time, maybe a few hundred milliseconds) before deploying the new Deployment.
After we fix #9, we can ensure that any ManagedSecrets are pulled out into their own "phase", after the "setup" phase that includes the CRDs, but before the phase that includes the Deployments.
With the ManagedSecret phase, it's not enough to wait for the secrets themselves to deploy; we must watch for the unsealed Secrets to be created. Then we can proceed with the next phase.
The text was updated successfully, but these errors were encountered:
This causes them to stall for several seconds at startup (bad for
Recreate
update-strategy Deployments.) This latency could be reduced if we waited for the Secret to exist (which takes much less time, maybe a few hundred milliseconds) before deploying the new Deployment.After we fix #9, we can ensure that any
ManagedSecrets
are pulled out into their own "phase", after the "setup" phase that includes the CRDs, but before the phase that includes the Deployments.The text was updated successfully, but these errors were encountered: