Web console: Better manual capabilities detection indication#16191
Merged
vogievetsky merged 17 commits intoapache:masterfrom Apr 8, 2024
Merged
Web console: Better manual capabilities detection indication#16191vogievetsky merged 17 commits intoapache:masterfrom
vogievetsky merged 17 commits intoapache:masterfrom
Conversation
Contributor
techdocsmith
left a comment
There was a problem hiding this comment.
Added style suggestions
| label = 'Coordinator mode'; | ||
| message = ( | ||
| <p> | ||
| It appears that you are accessing the console on the Coordinator service. Due to the lack |
| label = 'Overlord mode'; | ||
| message = ( | ||
| <p> | ||
| It appears that you are accessing the console on the Overlord service. Due to the lack of |
Co-authored-by: Charles Smith <techdocsmith@gmail.com>
Co-authored-by: Charles Smith <techdocsmith@gmail.com>
…ots__/restricted-mode.spec.tsx.snap Co-authored-by: Charles Smith <techdocsmith@gmail.com>
…ots__/restricted-mode.spec.tsx.snap Co-authored-by: Charles Smith <techdocsmith@gmail.com>
…ed-mode.tsx Co-authored-by: Charles Smith <techdocsmith@gmail.com>
…ed-mode.tsx Co-authored-by: Charles Smith <techdocsmith@gmail.com>
…ed-mode.tsx Co-authored-by: Charles Smith <techdocsmith@gmail.com>
…ed-mode.tsx Co-authored-by: Charles Smith <techdocsmith@gmail.com>
…ed-mode.tsx Co-authored-by: Charles Smith <techdocsmith@gmail.com>
…ed-mode.tsx Co-authored-by: Charles Smith <techdocsmith@gmail.com>
…ed-mode.tsx Co-authored-by: Charles Smith <techdocsmith@gmail.com>
gianm
reviewed
Apr 1, 2024
| working around issues with the automatic capability detecting logic. | ||
| </p> | ||
| <p> | ||
| If you are unsure why the console is in ths mode mode, revert to using automatic |
Contributor
There was a problem hiding this comment.
"ths mode mode" should be "this mode"
gianm
approved these changes
Apr 1, 2024
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Upgrade the manual capabilities mode UX so that it is clearer that the console is in a manual capabilities mode.
The console has many degraded modes in can operate in this is to account for different (degraded) configurations of the underlying cluster. Here are a few examples:
When the console loads it does a few probing queries to detect what capabilities are available to it. This is called capability detection.
A manual capabilities mode is when the user tells the console to skip the capability detection and just put itself into some specific mode. This is useful for testing (the console) and for getting around flaws in the capability detection. Overall this is a fairly power user feature and should only be used by users that know what (and why) they are doing it.
It has come to my attention that there were some users that has their console in a manual capabilities mode and they did not know it, as a result their console was degraded. I want to update the UI so it would be more clear.
Current behavior
Setting the manual capabilities mode:
Clearing the manual capabilities mode:
New behavior
Setting the manual capabilities mode:
Clearing the manual capabilities mode:
Feedback and suggestions welcome.