The Urban Dictionary for DevOps — a curated glossary of 108+ DevOps terms, explained with clarity and a bit of personality.
Live site: devopsglossary.com
- Astro — static site generation with on-demand rendering
- React — interactive UI components
- TypeScript — type safety
- Tailwind CSS v4 — styling
- Vitest — testing
- Custom Node.js server (
@astrojs/nodeadapter)
- Node.js >= 22.12.0
- pnpm
pnpm install
pnpm dev # Start dev server
pnpm build # Production build
pnpm start # Run production server
pnpm new # Create a new glossary term
pnpm test # Run tests
pnpm test:watch # Run tests in watch modesrc/
├── components/ # React and Astro components
├── content.config.ts # Content collection schema
├── data/terms/ # Glossary term files (.md)
├── layouts/ # Page layouts
├── pages/ # Astro routes
├── server.ts # Custom Node.js server
└── styles/ # Global styles
deploy/k8s/ # Helm chart for Kubernetes deployment
.github/workflows/ # CI/CD pipeline
The easiest way to add a term is with the interactive script:
pnpm newIt will prompt for all required fields, validate your input, and generate the file.
Alternatively, create a new .md file in src/data/terms/ manually:
---
title: My Term
slug: my-term
description: "A short description (max 160 characters)."
relatedTerms:
- some-other-term
tags:
- relevant-tag
category: tool
dateAdded: 2026-01-01
---
Your explanation here. Be clear, be useful, have fun with it.| Field | Required | Description |
|---|---|---|
title |
Yes | Display name |
slug |
Yes | URL path segment |
description |
Yes | Short description (max 160 chars, used for SEO) |
abbreviation |
No | Common abbreviation (e.g., "K8s") |
relatedTerms |
No | Array of slugs linking to other terms |
tags |
No | Array of tags for categorization |
category |
Yes | One of: methodology, tool, platform, concept, operating-system, practice, observability |
dateAdded |
No | Date the term was added |
docker build -t devopsglossary .
docker run -p 8080:8080 devopsglossaryA Helm chart is provided in deploy/k8s/:
helm install devopsglossary deploy/k8s/ -f deploy/k8s/values.production.yamlGitHub Actions workflow in .github/workflows/main.yml handles build and deployment.