Skip to content

Fix typo and add clarity to replacing transition #2426

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Oct 19, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion doc/design/architecture.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,11 +67,12 @@ None --> Pending --> InstallReady --> Installing -| |
v
Replacing --> Deleting
```
*Note: The transition to replacing happens out-of-band when the controller detects a new CSV that replaces the current one.*

| Phase | Description |
|------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
| None | initial phase, once seen by the Operator, it is immediately transitioned to `Pending` |
| Pending | requirements in the CSV are not met, once they are this phase transitions to `Installing` |
| Pending | requirements in the CSV are not met, once they are this phase transitions to `InstallReady` |
| InstallReady | all requirements in the CSV are present, the Operator will begin executing the install strategy |
| Installing | the install strategy is being executed and resources are being created, but not all components are reporting as ready |
| Succeeded | the execution of the Install Strategy was successful; if requirements disappear, or an APIService cert needs to be rotated this may transition back to `Pending`; if an installed component disappears this may transition to `Failed`|
Expand Down