-
Notifications
You must be signed in to change notification settings - Fork 16
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
Request to support component uninstallation feature #246
Comments
@JohnNiang: The label(s) In response to this:
Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository. |
/cc @kubesphere-sigs/sig-devops |
hi @JohnNiang , this is great. Currently, the command
|
I'd like to work on this issue. |
hi @mangoGoForward thanks for helping on this issue. Before you get started, you can share your idea of the command usage. |
For DevOps uninstallation, @mangoGoForward could refer to kubesphere/website#2155 (comment). |
Thanks, the comment of kubesphere/website#2155 and the document of how to uninstall each component help me a lot. The operation of change the value of |
We can define an interface for the component. Such as: type component interface {
install() error
uninstall() error
status()
name()
} then, provide the implements for the different components. |
Got it, thanks. |
At present, official website has provided a document about how to uninstall each component.
But it's not very friendly for end users to execute so many command at the same time.
Therefore, I request to support component uninstallation in
ks
command. e.g.:ks uninstall devops ks uninstall logging ks uninstall alerting ... # Or uninstall all component but basic component ks uninstall all
/kind feature
The text was updated successfully, but these errors were encountered: