DevOps & CI/CD Tools

CI/CD pipelines, container orchestration, infrastructure as code, monitoring, and deployment tools β€” ship faster with confidence.

🐳 Docker
Container platform that packages applications with all dependencies. Build once, run anywhere β€” the industry standard.
FreeOpen Source
☸️ Kubernetes
Production-grade container orchestration. Automate deployment, scaling, and management of containerized applications.
FreeOpen Source
⚑ GitHub Actions
CI/CD built into GitHub. Automate builds, tests, and deployments with YAML workflows. Free for public repositories.
Free
πŸ—οΈ Terraform
Infrastructure as Code tool by HashiCorp. Define cloud resources declaratively and manage them with version control.
FreeOpen Source
πŸ”₯ Prometheus
Open-source monitoring and alerting toolkit. Time-series database with a powerful query language and Grafana integration.
FreeOpen Source
πŸ“Š Grafana
Observability platform for dashboards, alerts, and logs. Connect to Prometheus, Loki, Elasticsearch, and 100+ data sources.
FreeOpen Source
πŸ“œ Ansible
Agentless automation for configuration management, application deployment, and orchestration. Simple, powerful, YAML-based.
FreeOpen Source
πŸ‘¨β€πŸ”§ Jenkins
Extensible automation server with 1,800+ plugins. The original CI/CD workhorse β€” runs anywhere, builds anything.
FreeOpen Source
πŸ” HashiCorp Vault
Manage secrets and protect sensitive data. API-driven encryption, dynamic secrets, and access control for any infrastructure.
FreeOpen Source
🏎️ Pulumi
Infrastructure as Code using real programming languages (TypeScript, Python, Go). No YAML β€” just code.
FreeOpen Source
πŸš‚ Railway
Modern PaaS for deploying apps instantly. Connect your GitHub repo and get a production URL in seconds.
Free
☁️ Render
Unified cloud for hosting web services, databases, and cron jobs. Zero DevOps with automatic TLS and scaling.
Free
πŸͺ° Fly.io
Deploy apps close to users with global edge hosting. Run Docker containers in 30+ regions worldwide.
Free
πŸ†’ Coolify
Self-hosted Heroku/Netlify alternative. Deploy apps, databases, and services on your own servers with one click.
FreeOpen Source
🐳 Portainer
Easy container management GUI for Docker, Kubernetes, and Swarm. Deploy and manage stacks visually.
FreeOpen Source

πŸ’‘ About DevOps & CI/CD Tools

DevOps is the category where small mistakes get expensive: a wrong subnet mask in a VPC, a checksum that does not match the release artifact, a base64 blob in a Kubernetes secret you cannot read. The platforms above are the infrastructure layer β€” containers, orchestration, pipelines and monitoring.

The DevToolBox utilities below cover the arithmetic and the decoding that surrounds all of it. They run entirely offline in the browser, which matters more here than anywhere else: the thing you are usually debugging is the network.

🧰 Free DevToolBox Tools

Client-side and free β€” nothing you paste leaves your browser:

❓ Frequently Asked Questions

How do I work out how many hosts a subnet holds?

Enter the CIDR block, for example 10.0.0.0/24, into the CIDR calculator. It returns the network address, the broadcast address, the subnet mask and the usable host range for both IPv4 and IPv6 notation.

Why bother verifying a checksum?

A matching hash is evidence that the artifact you downloaded is byte-for-byte the one that was published. It catches truncated downloads and tampered mirrors β€” cheap to check, expensive to skip.

Is a JWT issued by a CI pipeline different from a normal JWT?

No, it is the same format. OIDC-based CI integrations issue short-lived JWTs so a pipeline can assume a cloud role without storing a long-lived secret key. The debugger shows you the claims, the issuer and the expiry.

Can I decode a Kubernetes Secret without a cluster?

Yes. Kubernetes stores Secret values as Base64, so decoding the value in a Base64 tool gives you the plaintext β€” no kubectl and no cluster access required. Treat the result as secret material.