Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Devops Exercises | 59,639 | 3 days ago | 61 | 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 | ||||||||||
Awesome Kubernetes | 14,349 | a month ago | 15 | other | Shell | |||||
A curated list for awesome kubernetes sources :ship::tada: | ||||||||||
Caprover | 11,313 | 11 days ago | 113 | other | TypeScript | |||||
Scalable PaaS (automated Docker+nginx) - aka Heroku on Steroids | ||||||||||
Ansible For Devops | 7,652 | 6 days ago | 98 | mit | Python | |||||
Ansible for DevOps examples. | ||||||||||
Devops Resources | 7,566 | 4 months ago | 14 | Groovy | ||||||
DevOps resources - Linux, Jenkins, AWS, SRE, Prometheus, Docker, Python, Ansible, Git, Kubernetes, Terraform, OpenStack, SQL, NoSQL, Azure, GCP | ||||||||||
Terratest | 7,189 | 202 | 17 days ago | 418 | November 13, 2023 | 232 | apache-2.0 | Go | ||
Terratest is a Go library that makes it easier to write automated tests for your infrastructure code. | ||||||||||
Docker Android | 6,413 | 8 days ago | 87 | other | Python | |||||
Android in docker solution with noVNC supported and video recording | ||||||||||
Aws Sam Cli | 6,399 | 31 | 13 | a day ago | 177 | November 16, 2023 | 413 | apache-2.0 | Python | |
CLI tool to build, test, debug, and deploy Serverless applications using AWS SAM | ||||||||||
Devops Roadmap | 6,334 | a month ago | 6 | apache-2.0 | ||||||
DevOps Roadmap for 2023. with learning resources | ||||||||||
Docker Lambda | 5,852 | 38 | 17 | 10 months ago | 15 | June 30, 2018 | 68 | mit | C# | |
Docker images and test runners that replicate the live AWS Lambda environment |
A curated list of awesome references collected since 2018.
My VSCode's plugins:
Apparently Material for MKDocs requires an indentation of 4 spaces, otherwise nested lists and Tables Of Contents won't be rendered as expected.
My VSCode's settings.json :
{
"markdown.extension.toc.levels": "2..6",
"markdown.extension.tableFormatter.normalizeIndentation": true,
"markdown.extension.toc.slugifyMode": "github",
"markdown.extension.toc.orderedList": true,
"markdown.extension.list.indentationSize": "adaptive",
"files.autoSave": "afterDelay",
"editor.detectIndentation": false,
"editor.tabSize": 4,
"window.zoomLevel": -1,
"markdownlint.config": {
"default": true,
"MD013": false,
"MD033": false,
"MD007": { "indent": 4 },
"no-hard-tabs": false
},
"editor.defaultFormatter": "vscode.github",
"[markdown]": {
"editor.defaultFormatter": "vscode.github"
},
"markdownlint.focusMode": false
}