-
Notifications
You must be signed in to change notification settings - Fork 65
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
feat: Show warning for unused properties #525
Conversation
Signed-off-by: Anatoliy Bazko <[email protected]>
Signed-off-by: Anatoliy Bazko <[email protected]>
src/commands/server/start.ts
Outdated
msg += flags['self-signed-cert'] ? '\t--self-signed-cert' : '' | ||
msg += flags['os-oauth'] ? '\t--os-oauth' : '' | ||
msg += flags.tls ? '\t--ls' : '' | ||
msg += flags.cheimage ? '\t--cheimage' : '' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@@ -186,6 +186,23 @@ export default class Start extends Command { | |||
|
|||
checkPlatformCompatibility(flags: any) { | |||
// matrix checks | |||
if (flags.installer === 'operator' && flags['che-operator-cr-yaml']) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is it actual also when user use --che-operator-cr-patch-yaml
?
Signed-off-by: Anatoliy Bazko <[email protected]>
Signed-off-by: Anatoliy Bazko <[email protected]>
Signed-off-by: Anatoliy Bazko <[email protected]>
Signed-off-by: Anatoliy Bazko <[email protected]>
Signed-off-by: Anatoliy Bazko <[email protected]>
Signed-off-by: Anatoliy Bazko [email protected]
What does this PR do?
Show warning for unused properties
What issues does this PR fix or reference?
eclipse-che/che#15072