Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Netdata | 63,310 | 3 hours ago | 333 | gpl-3.0 | C | |||||
Real-time performance monitoring, done right! https://www.netdata.cloud | ||||||||||
Devops Exercises | 43,460 | 9 days ago | 14 | other | Python | |||||
Linux, Jenkins, AWS, SRE, Prometheus, Docker, Python, Ansible, Git, Kubernetes, Terraform, OpenStack, SQL, NoSQL, Azure, GCP, DNS, Elastic, Network, Virtualization. DevOps Interview Questions | ||||||||||
Traefik | 43,322 | 18 | 11 hours ago | 160 | September 16, 2022 | 620 | mit | Go | ||
The Cloud Native Application Proxy | ||||||||||
Kong | 34,997 | 3 hours ago | 233 | apache-2.0 | Lua | |||||
🦍 The Cloud-Native API Gateway | ||||||||||
Awesome Cheatsheets | 33,706 | 3 days ago | 84 | mit | JavaScript | |||||
👩💻👨💻 Awesome cheatsheets for popular programming languages, frameworks and development tools. They include everything you should know in one single file. | ||||||||||
Portainer | 25,704 | 1 | 4 hours ago | 78 | April 21, 2021 | 1,142 | zlib | Go | ||
Making Docker and Kubernetes management easy. | ||||||||||
Dokku | 24,665 | 2 | 5 hours ago | 77 | April 22, 2021 | 48 | mit | Shell | ||
A docker-powered PaaS that helps you build and manage the lifecycle of applications | ||||||||||
Faas | 23,126 | 9 | 3 hours ago | 31 | April 12, 2021 | 29 | mit | Go | ||
OpenFaaS - Serverless Functions Made Simple | ||||||||||
Docker_practice | 22,409 | 14 days ago | 9 | December 01, 2021 | 7 | Go | ||||
Learn and understand Docker&Container technologies, with real DevOps practice! | ||||||||||
Rancher | 21,133 | 20 | 2 hours ago | 207 | April 25, 2021 | 2,471 | apache-2.0 | Go | ||
Complete container management platform |
Build micro cmd
go build -o bin/micro cmd/micro/main.go
Start registry & api with server runtime
./bin/micro --profile starter-local server
Run API service
./bin/micro --profile starter-local service api
Run example service
# Account
cd service/account
go run main.go --profile starter-local
# Greeting
cd service/greeting
go run main.go --profile starter-local
Test example service
# Account
curl "http://localhost:8080/account/info?id=1"
# Greeting
curl "http://localhost:8080/greeting/call?msg=helloworld"
{"id":"1","msg":"helloworld"}
Attention: default ingress class=nginx, host=api.micro.hbchen.com
helm install -n micro micro-server manifests/charts/micro \
--set ingress.enabled=true
# Digest
helm install -n micro micro-server manifests/charts/micro \
--set image.tag="[email protected]:1e2c8df50398c2dcd4b96065b8b81842a86c5cc83d8ef1ae96ac7b5d8432add3" \
--set ingress.enabled=true
helm install -n micro micro-example manifests/charts/servic
# Digest
helm install -n micro micro-example manifests/charts/service \
--set image.tag="[email protected]:fa2e56f01a4704ad298331cd0356a0e174e9358701922552934bbd4987c9fb80"
curl "http://api.micro.hbchen.com/account/info?id=1"