Skip to content

Commit

Permalink
chore: add new subcategory Animation Tools
Browse files Browse the repository at this point in the history
feat: [ADD]-Sub Category- Automation Tools #2345
  • Loading branch information
rupali-codes authored Apr 22, 2024
2 parents e420219 + 95847ec commit bb98806
Show file tree
Hide file tree
Showing 3 changed files with 44 additions and 1 deletion.
11 changes: 10 additions & 1 deletion database/data.ts
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,16 @@ export const sidebarData: ISidebar[] = [
{
category: 'devops',
subcategory: [
{ name: 'CI/CD', url: '/cicd', resources: DB.cicd },
{
name: 'Automation Tools',
url: '/automation-tools',
resources: DB.automationTools,
},
{
name: 'CI/CD',
url: '/cicd',
resources: DB.cicd
},
{
name: 'DevOps Life Cycle',
url: '/devops-life-cycle',
Expand Down
33 changes: 33 additions & 0 deletions database/devops/automation-tools.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
[
{
"name": "Ansible Automation",
"description": "Implement Ansible for streamlined automation of infrastructure and deployment.",
"url": "https://www.ansible.com/",
"category": "devops",
"subcategory": "automation-tools"
},

{
"name": "Terraform Infrastructure",
"description": "Automate infrastructure provisioning with Terraform for scalable, consistent deployments.",
"url": "https://www.terraform.io/",
"category": "devops",
"subcategory": "automation-tools"
},

{
"name": "GitLab CI/CD",
"description": "Automate testing, building, and deploying with GitLab CI/CD pipelines.",
"url": "https://docs.gitlab.com/ee/ci/",
"category": "devops",
"subcategory": "automation-tools"
},

{
"name": "Configuration Management with Puppet and Chef",
"description": "Automate server configuration with Puppet and Chef for consistency and compliance.",
"url": "https://www.puppet.com/",
"category": "devops",
"subcategory": "automation-tools"
}
]
1 change: 1 addition & 0 deletions database/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ export { default as api } from './backend/api.json'
export { default as emailProviders } from './backend/email-providers.json'

//devops
export { default as automationTools } from './devops/automation-tools.json'
export { default as cicd } from './devops/cicd.json'
export { default as devopsLifecycle } from './devops/devops-life-cycle.json'
export { default as devopsMethodologies } from './devops/devops-methodologies.json'
Expand Down

0 comments on commit bb98806

Please sign in to comment.