Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/duc-cnzj/mars
专为 devops 而生,30s 内部署一个生产级别的应用,通过 web 部署 helm 应用。
https://github.com/duc-cnzj/mars
cicd devops gitlab helm helm-charts k8s kubernetes web
Last synced: about 1 month ago
JSON representation
专为 devops 而生,30s 内部署一个生产级别的应用,通过 web 部署 helm 应用。
- Host: GitHub
- URL: https://github.com/duc-cnzj/mars
- Owner: duc-cnzj
- License: agpl-3.0
- Created: 2021-05-16T01:09:26.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2024-09-27T18:46:14.000Z (about 2 months ago)
- Last Synced: 2024-09-28T21:05:12.840Z (about 2 months ago)
- Topics: cicd, devops, gitlab, helm, helm-charts, k8s, kubernetes, web
- Language: Go
- Homepage: https://duc-cnzj.github.io/mars/
- Size: 12.8 MB
- Stars: 18
- Watchers: 3
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Mars
专为devops而生,30秒内部署一个应用。
[![codecov](https://codecov.io/gh/duc-cnzj/mars/branch/master/graph/badge.svg?token=EUSLRBT6NN)](https://codecov.io/gh/duc-cnzj/mars)
[![unittest](https://github.com/duc-cnzj/mars/actions/workflows/test.yaml/badge.svg)](https://github.com/duc-cnzj/mars/actions/workflows/test.yaml)
[![Release](https://img.shields.io/github/release/duc-cnzj/mars.svg)](https://github.com/duc-cnzj/mars/releases/latest)
[![GitHub license](https://img.shields.io/github/license/duc-cnzj/mars)](https://github.com/duc-cnzj/mars/blob/master/LICENSE)
[![Go Report Card](https://goreportcard.com/badge/github.com/duc-cnzj/mars/v5)](https://goreportcard.com/report/github.com/duc-cnzj/mars/v5)
[![Documentation](https://godoc.org/github.com/duc-cnzj/mars/api/v5?status.svg)](https://pkg.go.dev/github.com/duc-cnzj/mars/api/v5)[查看文档](https://duc-cnzj.github.io/mars/)
## 💡 简介
[Mars](https://github.com/duc-cnzj/mars) 是一款专门为 devops 服务的一款应用,基于 kubernetes 之上,可以在短短几秒内部署一个和生产环境一模一样的应用。它打通了 git、kubernetes、helm,通过 git ci 构建镜像,然后通过 kubernetes 部署高可用应用,一气呵成。
## 🗺️ 背景
随着 devops 概念的兴起,现在软件开发不仅要求开发效率高,而且还要求部署便捷,最好能做到流水线开发打包测试上线一条龙服务。
[Mars](https://github.com/duc-cnzj/mars) 由此而生,它打通了打包、测试、部署,基于 git ci/cd 做到任何人不管是开发大牛,还是不懂代码的产品小白,都能在 30 秒部署一个生产级别的应用。真真做到一教即会,高效生产。## ✨ 特性
- 支持基于 helm charts 开发的任何应用。
- 支持自动配置 https 域名。
- 支持高可用,弹性部署。
- 支持命令行操作。
- 支持查看容器日志。
- 支持查看容器 cpu 和内存使用情况。
- 插件化
- 队列驱动: ws_sender_nsq, ws_sender_redis, ws_sender_memory
- 证书驱动: manual_domain_manager, cert-manager_domain_manager, sync_secret_domain_manager
- 代码仓库支持: gitlab ~~github~~
- 背景图: picture_cartoon,picture_bing
- sdk 接入:
- [grpc-go-sdk](https://github.com/duc-cnzj/mars/tree/master/api)## 🍀 go-sdk 接入
```
go get -u github.com/duc-cnzj/mars/api/v5
``````golang
package mainimport (
api "github.com/duc-cnzj/mars/api/v5"
)func main() {
c, _ := api.NewClient("127.0.0.1:50000",
api.WithAuth("admin", "123456"),
api.WithTokenAutoRefresh(),
)
defer c.Close()// ...
}
```