Reference

DevOps & Cloud Glossary

Plain-English definitions for the terms that come up constantly in cloud and DevOps work, each linked to where we can actually help with it.

Terms

A

API Gateway

A single entry point that manages, secures, and routes requests to your backend services or APIs.

Autoscaling

Automatically adding or removing compute capacity based on real-time demand, so you pay for what you actually use.

Related: Cost Optimization →

Availability Zone

An isolated location within a cloud region with its own power and networking, used so a failure in one zone doesn't take down your whole system.

Related: Cloud & Infrastructure →

B

Blue/Green Deployment

A release strategy that runs two identical environments and only sends traffic to the new one once it's verified healthy, so a bad release can be rolled back instantly.

Related: CI/CD & GitOps →

C

CI/CD

Continuous Integration and Continuous Delivery: automatically testing and shipping every code change instead of doing it by hand.

Related: CI/CD & GitOps →

Cloud Migration

Moving applications, data, and workloads from on-premises servers, or from one cloud provider to another, ideally without downtime.

Related: Cloud Migration →

Compliance Audit

An independent review that checks whether your infrastructure and processes actually meet a framework's requirements, like SOC 2 or HIPAA.

Related: Compliance Audit →

Container

A lightweight, self-contained package that bundles an application with everything it needs to run, so it behaves the same on any machine.

Related: Kubernetes →

Container Orchestration

Software, most commonly Kubernetes, that automatically deploys, scales, and manages containers across a cluster of machines.

Related: Kubernetes →

Cost Optimization (FinOps)

The ongoing practice of right-sizing cloud resources, eliminating waste, and making spend visible, rather than a one-time cleanup.

Related: Cost Optimization →

D

DDoS

Distributed Denial-of-Service: an attack that floods a system with traffic from many sources at once, trying to knock it offline.

Related: Zero-Trust & Identity Access →

DevOps

The practice of combining development and operations so software gets built, tested, and released faster and more reliably.

Related: Platform Engineering →

DevSecOps

Building security checks directly into the development and deployment pipeline, instead of testing for problems only at the very end.

Related: DevSecOps →

Disaster Recovery

A tested plan for restoring systems and data after an outage or failure, not just a backup that's never actually been checked.

Related: Disaster Recovery →

Docker

The most widely used tool for building and running containers.

Related: Kubernetes →

Drift (Configuration Drift)

When a live environment's actual settings quietly diverge from what's defined in code, usually from manual changes nobody tracked.

Related: Terraform & Infrastructure as Code →

G

GitOps

Managing infrastructure and deployments by describing the desired state in Git, so every change is reviewed, versioned, and automatically applied.

Related: CI/CD & GitOps →

GPU Infrastructure

Servers built around graphics processing units, used to train and run AI and machine learning models efficiently.

Related: AI Infrastructure →

H

Helm

A package manager for Kubernetes that bundles related resources into a single, reusable, versioned unit called a chart.

Related: Kubernetes →

HIPAA

A US law setting requirements for protecting patient health information, relevant to any company handling healthcare data.

Related: Compliance Audit →

I

IAM (Identity and Access Management)

The system that controls who, or what, can access which resources, and what they're allowed to do once they're in.

Related: Zero-Trust & Identity Access →

Immutable Infrastructure

Servers and environments that are never modified after deployment; instead of patching in place, you replace them with a new version.

Related: Terraform & Infrastructure as Code →

Infrastructure as Code (IaC)

Defining servers, networks, and cloud resources in code instead of clicking through a console, so environments are consistent and reviewable.

Related: Terraform & Infrastructure as Code →

ISO 27001

An international standard for information security management, often required by enterprise customers before they'll sign a contract.

Related: Compliance Audit →

K

Kubernetes

An open-source system for automating the deployment, scaling, and management of containerized applications.

Related: Kubernetes →

L

Least Privilege

A security principle: give every person and system only the access they actually need, nothing more.

Related: Zero-Trust & Identity Access →

Load Balancer

A component that spreads incoming traffic across multiple servers, so no single one gets overwhelmed and the system stays up if one fails.

Related: Cloud & Infrastructure →

Logging

Recording what a system did, and when, so you can investigate what happened after the fact.

Related: Observability →

M

Managed Service

Infrastructure or software that a provider runs and maintains on your behalf, so your team doesn't have to.

Related: Managed Support →

Microservices

An architecture that splits an application into small, independently deployable services, instead of one large program.

Related: Platform Engineering →

MLOps

The practices and tooling for reliably building, deploying, and monitoring machine learning models in production.

Related: AI Infrastructure →

Multi-Cloud

Running workloads across more than one cloud provider, for resilience, pricing leverage, or avoiding lock-in.

Related: Cloud & Infrastructure →

O

Observability

The combination of metrics, logs, and traces that lets you understand what's actually happening inside a running system.

Related: Observability →

On-Premises (On-Prem)

Infrastructure that runs on hardware a company owns and operates itself, rather than in the cloud.

Related: Cloud Migration →

P

PCI DSS

A security standard required for any business that stores, processes, or transmits credit card data.

Related: Compliance Audit →

Penetration Testing

A simulated, authorized attack on your systems to find exploitable vulnerabilities before a real attacker does.

Related: Security Audit →

R

Reserved Instances

Cloud capacity you commit to paying for over a fixed term, usually one to three years, in exchange for a lower price than pay-as-you-go.

Related: Cost Optimization →

Right-Sizing

Matching the size of a server or database to what it actually needs, instead of what was guessed when it was first set up.

Related: Cost Optimization →

Rollback

Reverting a deployment back to its last known-good version, usually automatically, when a release causes problems.

Related: CI/CD & GitOps →

RTO & RPO

Recovery Time Objective (how long you can be down) and Recovery Point Objective (how much data you can afford to lose), the two numbers that define a disaster recovery plan.

Related: Disaster Recovery →

S

Serverless

Running code without provisioning or managing servers yourself; the cloud provider handles the infrastructure and you pay only for what runs.

Related: Platform Engineering →

Service Mesh

A dedicated infrastructure layer that manages how services talk to each other, handling routing, security, and observability between them.

Related: Kubernetes →

SLA / SLO / SLI

The agreement you promise a customer (SLA), the internal target you aim for (SLO), and the actual metric you measure (SLI), for things like uptime.

Related: Reliability & Operations →

SOC 2

An audit that verifies a company's controls around security, availability, and data handling, commonly requested by B2B and enterprise customers.

Related: Compliance Audit →

Spot Instances

Spare cloud capacity sold at a steep discount, with the tradeoff that it can be reclaimed on short notice, best for flexible workloads.

Related: Cost Optimization →

SRE (Site Reliability Engineering)

An engineering discipline that applies software practices to operations, aiming to keep systems reliable at scale.

Related: Reliability & Operations →

T

Terraform

An open-source infrastructure-as-code tool that lets you define cloud resources in a simple configuration language and apply them consistently.

Related: Terraform & Infrastructure as Code →

Tracing

Following a single request as it moves through every service it touches, to pinpoint exactly where time is spent or something failed.

Related: Observability →

V

VPC (Virtual Private Cloud)

An isolated, private section of a cloud provider's network where you control the IP ranges, subnets, and routing.

Related: Cloud & Infrastructure →

Vulnerability Assessment

A scan that identifies known security weaknesses across your systems and ranks them by severity.

Related: Security Audit →

W

WAF (Web Application Firewall)

A filter that sits in front of a web application and blocks common attacks before they ever reach it.

Related: Zero-Trust & Identity Access →

Z

Zero Trust

A security model that never automatically trusts a request, inside or outside the network, and instead verifies every single one.

Related: Zero-Trust & Identity Access →

Work With Us

Not sure which of these applies to you?

A senior engineer can walk through your setup and tell you, in plain language, what actually matters for where you are.

Talk to an Expert