├── .github └── workflows │ ├── codeql-analysis.yml │ └── pages.yml ├── .gitignore ├── README.md ├── SECURITY.md ├── babel.config.js ├── blog ├── 2022-08-22 │ └── index.md └── authors.yml ├── docs ├── cicd │ ├── _category_.json │ ├── argocd │ │ ├── _category_.json │ │ ├── dockerdesktop.md │ │ └── intro.md │ ├── dagger.md │ ├── drone.md │ └── jenkins.md ├── intro.md ├── observability │ ├── _category_.json │ ├── datadog.md │ ├── grafana.md │ ├── middleware.md │ ├── prometheus.md │ ├── signoz.md │ └── sumologic.md ├── orchestration │ ├── _category_.json │ ├── dockerswarm.md │ ├── ecs.md │ ├── gke.md │ ├── kubernetes.md │ ├── openshift.md │ └── rancher.mdx └── provisioning │ ├── _category_.json │ ├── ansible.md │ ├── chef.md │ ├── puppet.md │ └── terraform.md ├── docusaurus.config.js ├── package.json ├── references ├── DevOps-Guide.pdf └── README.md ├── sidebars.js ├── src ├── components │ ├── Hero │ │ ├── index.js │ │ └── styles.module.css │ └── HomepageFeatures │ │ ├── index.js │ │ └── styles.module.css ├── css │ └── custom.css ├── pages │ ├── index.js │ ├── index.module.css │ └── markdown-page.md └── theme │ └── Footer │ └── Layout │ └── index.js ├── static ├── .nojekyll └── img │ ├── Collabnix.png │ ├── Dockerlabs.png │ ├── devops.png │ ├── docusaurus.png │ ├── favicon.ico │ ├── logo.svg │ ├── undraw_docusaurus_mountain.svg │ ├── undraw_docusaurus_react.svg │ └── undraw_docusaurus_tree.svg └── yarn.lock /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collabnix/devops/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/pages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collabnix/devops/HEAD/.github/workflows/pages.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collabnix/devops/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collabnix/devops/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collabnix/devops/HEAD/SECURITY.md -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collabnix/devops/HEAD/babel.config.js -------------------------------------------------------------------------------- /blog/2022-08-22/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collabnix/devops/HEAD/blog/2022-08-22/index.md -------------------------------------------------------------------------------- /blog/authors.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collabnix/devops/HEAD/blog/authors.yml -------------------------------------------------------------------------------- /docs/cicd/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collabnix/devops/HEAD/docs/cicd/_category_.json -------------------------------------------------------------------------------- /docs/cicd/argocd/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collabnix/devops/HEAD/docs/cicd/argocd/_category_.json -------------------------------------------------------------------------------- /docs/cicd/argocd/dockerdesktop.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collabnix/devops/HEAD/docs/cicd/argocd/dockerdesktop.md -------------------------------------------------------------------------------- /docs/cicd/argocd/intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collabnix/devops/HEAD/docs/cicd/argocd/intro.md -------------------------------------------------------------------------------- /docs/cicd/dagger.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collabnix/devops/HEAD/docs/cicd/dagger.md -------------------------------------------------------------------------------- /docs/cicd/drone.md: -------------------------------------------------------------------------------- 1 | --- 2 | sidebar_position: 1 3 | --- 4 | 5 | # Drone.io 6 | 7 | -------------------------------------------------------------------------------- /docs/cicd/jenkins.md: -------------------------------------------------------------------------------- 1 | --- 2 | sidebar_position: 1 3 | --- 4 | 5 | # Jenkins 6 | 7 | -------------------------------------------------------------------------------- /docs/intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collabnix/devops/HEAD/docs/intro.md -------------------------------------------------------------------------------- /docs/observability/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collabnix/devops/HEAD/docs/observability/_category_.json -------------------------------------------------------------------------------- /docs/observability/datadog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collabnix/devops/HEAD/docs/observability/datadog.md -------------------------------------------------------------------------------- /docs/observability/grafana.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collabnix/devops/HEAD/docs/observability/grafana.md -------------------------------------------------------------------------------- /docs/observability/middleware.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collabnix/devops/HEAD/docs/observability/middleware.md -------------------------------------------------------------------------------- /docs/observability/prometheus.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collabnix/devops/HEAD/docs/observability/prometheus.md -------------------------------------------------------------------------------- /docs/observability/signoz.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collabnix/devops/HEAD/docs/observability/signoz.md -------------------------------------------------------------------------------- /docs/observability/sumologic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collabnix/devops/HEAD/docs/observability/sumologic.md -------------------------------------------------------------------------------- /docs/orchestration/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collabnix/devops/HEAD/docs/orchestration/_category_.json -------------------------------------------------------------------------------- /docs/orchestration/dockerswarm.md: -------------------------------------------------------------------------------- 1 | --- 2 | sidebar_position: 2 3 | --- 4 | 5 | # Docker Swarm 6 | 7 | -------------------------------------------------------------------------------- /docs/orchestration/ecs.md: -------------------------------------------------------------------------------- 1 | --- 2 | sidebar_position: 6 3 | --- 4 | 5 | # Amazon ECS 6 | -------------------------------------------------------------------------------- /docs/orchestration/gke.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collabnix/devops/HEAD/docs/orchestration/gke.md -------------------------------------------------------------------------------- /docs/orchestration/kubernetes.md: -------------------------------------------------------------------------------- 1 | --- 2 | sidebar_position: 2 3 | --- 4 | 5 | # Kubernetes 6 | 7 | -------------------------------------------------------------------------------- /docs/orchestration/openshift.md: -------------------------------------------------------------------------------- 1 | --- 2 | sidebar_position: 3 3 | --- 4 | 5 | # OpenShift 6 | 7 | -------------------------------------------------------------------------------- /docs/orchestration/rancher.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | sidebar_position: 4 3 | --- 4 | 5 | # Rancher 6 | -------------------------------------------------------------------------------- /docs/provisioning/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collabnix/devops/HEAD/docs/provisioning/_category_.json -------------------------------------------------------------------------------- /docs/provisioning/ansible.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collabnix/devops/HEAD/docs/provisioning/ansible.md -------------------------------------------------------------------------------- /docs/provisioning/chef.md: -------------------------------------------------------------------------------- 1 | --- 2 | sidebar_position: 3 3 | --- 4 | 5 | # Chef 6 | 7 | -------------------------------------------------------------------------------- /docs/provisioning/puppet.md: -------------------------------------------------------------------------------- 1 | --- 2 | sidebar_position: 3 3 | --- 4 | 5 | # Puppet 6 | 7 | -------------------------------------------------------------------------------- /docs/provisioning/terraform.md: -------------------------------------------------------------------------------- 1 | --- 2 | sidebar_position: 3 3 | --- 4 | 5 | # Terraform 6 | 7 | -------------------------------------------------------------------------------- /docusaurus.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collabnix/devops/HEAD/docusaurus.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collabnix/devops/HEAD/package.json -------------------------------------------------------------------------------- /references/DevOps-Guide.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collabnix/devops/HEAD/references/DevOps-Guide.pdf -------------------------------------------------------------------------------- /references/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collabnix/devops/HEAD/references/README.md -------------------------------------------------------------------------------- /sidebars.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collabnix/devops/HEAD/sidebars.js -------------------------------------------------------------------------------- /src/components/Hero/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collabnix/devops/HEAD/src/components/Hero/index.js -------------------------------------------------------------------------------- /src/components/Hero/styles.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collabnix/devops/HEAD/src/components/Hero/styles.module.css -------------------------------------------------------------------------------- /src/components/HomepageFeatures/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collabnix/devops/HEAD/src/components/HomepageFeatures/index.js -------------------------------------------------------------------------------- /src/components/HomepageFeatures/styles.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collabnix/devops/HEAD/src/components/HomepageFeatures/styles.module.css -------------------------------------------------------------------------------- /src/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collabnix/devops/HEAD/src/css/custom.css -------------------------------------------------------------------------------- /src/pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collabnix/devops/HEAD/src/pages/index.js -------------------------------------------------------------------------------- /src/pages/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collabnix/devops/HEAD/src/pages/index.module.css -------------------------------------------------------------------------------- /src/pages/markdown-page.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collabnix/devops/HEAD/src/pages/markdown-page.md -------------------------------------------------------------------------------- /src/theme/Footer/Layout/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collabnix/devops/HEAD/src/theme/Footer/Layout/index.js -------------------------------------------------------------------------------- /static/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /static/img/Collabnix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collabnix/devops/HEAD/static/img/Collabnix.png -------------------------------------------------------------------------------- /static/img/Dockerlabs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collabnix/devops/HEAD/static/img/Dockerlabs.png -------------------------------------------------------------------------------- /static/img/devops.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collabnix/devops/HEAD/static/img/devops.png -------------------------------------------------------------------------------- /static/img/docusaurus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collabnix/devops/HEAD/static/img/docusaurus.png -------------------------------------------------------------------------------- /static/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collabnix/devops/HEAD/static/img/favicon.ico -------------------------------------------------------------------------------- /static/img/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collabnix/devops/HEAD/static/img/logo.svg -------------------------------------------------------------------------------- /static/img/undraw_docusaurus_mountain.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collabnix/devops/HEAD/static/img/undraw_docusaurus_mountain.svg -------------------------------------------------------------------------------- /static/img/undraw_docusaurus_react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collabnix/devops/HEAD/static/img/undraw_docusaurus_react.svg -------------------------------------------------------------------------------- /static/img/undraw_docusaurus_tree.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collabnix/devops/HEAD/static/img/undraw_docusaurus_tree.svg -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collabnix/devops/HEAD/yarn.lock --------------------------------------------------------------------------------