Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nubenetes/awesome-kubernetes
A curated list of awesome references collected since 2018.
https://github.com/nubenetes/awesome-kubernetes
List: awesome-kubernetes
awesome-list aws azure cloud containers devops devops-tools docker gcp kubernetes
Last synced: 3 months ago
JSON representation
A curated list of awesome references collected since 2018.
- Host: GitHub
- URL: https://github.com/nubenetes/awesome-kubernetes
- Owner: nubenetes
- License: apache-2.0
- Created: 2018-12-06T12:51:15.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2024-03-08T18:25:52.000Z (11 months ago)
- Last Synced: 2024-05-22T14:06:11.270Z (8 months ago)
- Topics: awesome-list, aws, azure, cloud, containers, devops, devops-tools, docker, gcp, kubernetes
- Language: Groovy
- Homepage: https://nubenetes.com
- Size: 70.8 MB
- Stars: 587
- Watchers: 20
- Forks: 119
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Security: docs/securityascode.md
Awesome Lists containing this project
- awesome-starred - nubenetes/awesome-kubernetes - A curated list of awesome references collected since 2018. (kubernetes)
README
# Nubenetes: Awesome Kubernetes & Cloud
A curated list of awesome references collected since 2018.
My VSCode's plugins:
- [Markdown All in One](https://marketplace.visualstudio.com/items?itemName=yzhang.markdown-all-in-one) Tables of Contents are automatically generated with this extension.
- [markdownlint](https://marketplace.visualstudio.com/items?itemName=DavidAnson.vscode-markdownlint)
- [GitHub Pull Requests and Issues](https://marketplace.visualstudio.com/items?itemName=GitHub.vscode-pull-request-github)
- [GitLens — Git supercharged](https://marketplace.visualstudio.com/items?itemName=eamodio.gitlens)Apparently [Material for MKDocs](https://squidfunk.github.io/mkdocs-material/) requires an indentation of 4 spaces, otherwise nested lists and Tables Of Contents won't be rendered as expected.
My VSCode's settings.json :
```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
}
```