Rick

Results 753 comments of Rick

是提供代理的使用、管理功能,包括: * 启动、关闭代理服务(不需要用户下载) * 查看代理服务收到的流量 * 从代理收到的流量信息中提取测试用例 当然,当前 issue 只要实现第一步即可。 我稍微解释下为什么需要这个代理。当用户的浏览器指向代理后,用户只要访问目标测试系统(平台)地址,我们的代理服务就会自动记录相关的请求、响应信息,进而根据这个信息来提取、生成测试用例(的基本信息)。这样的目的是减轻创建测试用例的工作量。 甚至,当这个服务成熟之后还可以考虑进一步的流量回放的方式来对系统进行回归测试。

> @LinuxSuRen I'd like to try this. can you assign me please? Thanks for your interest in this. I afraid cannot do it. But you can do it by the...

Forget about it. It's ok now. ![image](https://user-images.githubusercontent.com/1450685/196894256-0549fc2a-ec29-4857-9b43-1031bb7079e6.png)

hi @selamanse it's very good. KubeSphere is built on Kubernetes. `ks` aims to make it be easier for the users.

hi @JohnNiang , this is great. Currently, the command `ks install xxx --components devops,logging` be able to install KubeSphere (with Kubernetes). So, I prefer to uninstall a component with the...

hi @mangoGoForward thanks for helping on this issue. Before you get started, you can share your idea of the command usage.

We can define an interface for the component. Such as: ```golang type component interface { install() error uninstall() error status() name() } ``` then, provide the implements for the different...