Yi Siqi

Results 11 comments of Yi Siqi

yes, that is the official source repo. And it's a golang program. > For my own future reference: https://github.com/kubernetes/kubectl

I tried compiling a simple hello world with go build. Everything goes well. But when I download the executable file into the blink shell, It's not working, caused by command...

I used the following command to compile my test program. ```shell CC=/usr/local/go/misc/ios/clangwrap.sh GOOS=darwin GOARCH=arm64 CGO_ENABLED=1 go build ``` Then use ldid to sign the binary. I'm not sure if that...

I just created a PR to support automatic dark mode through theme generation. You can use the `umi-plugin-antd-theme` plugin to generate an automatic dark mode theme. chenshuai2144/antd-pro-merge-less/pull/24

> Because the swapfile is in the home directory. > > [systemd/systemd#15354](https://github.com/systemd/systemd/issues/15354) Thanks, but I moved the swapfile into /var/swapfile and it still doesn't work, is there any other way?

@wojiushixiaobai 请Review

> 我们不准备将 MySQL 和 MariaDB 集成到项目里面,但是可以在文档 或者 Readme 说明中添加快速创建 MySQL 和 Redis 说明。 @wojiushixiaobai 想了解一下咱这方面是有什么特殊考虑吗?感觉一体化打包之后更方便了,也没有污染到咱自身的逻辑

> 我们希望用户能自己处理数据库和 Redis 的问题,如果用户需要部署 JumpServer,至少需要一定的知识来部署依赖的组件。 而且在一些特殊情况下,比如应用需要回滚,JumpServer 自身是没什么问题的,但是数据库这块不受我们控制,他不应该直接纳入到项目里面。 > > * 存储快照 `Snapshot` 可以理解这个顾虑。 从另一个角度看,一键安装包更容易吸引用户去尝试咱们这个产品,简化部署操作可以大幅提升小白用户一次性上手的成功率。虽然数据库、Redis都应当是大家具备的基本知识。但每一款软件都有自己的不通的参数配置,哪怕都是数据库连接,变量名、变量数量也不尽相同。在这种情况下企业信息中心的客户需要了解、甚至是需要知识管理去记录这些部署运维的细节,确实形成了很多隐形的工作量。 我们应该还是希望企业IT管理的这些人员能更容易的体验咱们的产品,对吧。

> 我们有其他的安装方式能便捷快速的部署,但是在 Kubernetes 上暂时还没法做到类似一键部署。 > 我们希望的是让用户知道自己在做什么。 充分尊重上述意见,同时也希望能对这个议题保持开放性,我们也愿意投入这种前瞻性的试点

@wojiushixiaobai 我确实看到`charts/jumpserver/templates/pre-install-initdb.yaml`是通过helm hook的方式初始化数据。 但根据2.25.2版本实测,即使不执行这个步骤core服务启动时也会自动完成migrate过程。是否后续还需要hook去单独migrate?