Upgrade to Pro
— share decks privately, control downloads, hide ads and more …
Speaker Deck
Features
Speaker Deck
PRO
Sign in
Sign up for free
Search
Search
What Do All Of These Words Mean? A DevOps Glossary
Search
Noah Kantrowitz
October 17, 2018
Programming
1
400
What Do All Of These Words Mean? A DevOps Glossary
Lightning talk from DjangoCon US 2018 in San Diego
Noah Kantrowitz
October 17, 2018
Tweet
Share
More Decks by Noah Kantrowitz
See All by Noah Kantrowitz
What Python Can Learn From Other Languages
coderanger
0
60
What Python Can Learn From Other Languages (with notes)
coderanger
0
160
Swiss Army Django: Small Footprint ETL (with notes) - DjangoCon US
coderanger
0
220
Swiss Army Django: Small Footprint ETL - DjangoCon US
coderanger
0
58
How to look at space: PyCon AU
coderanger
0
100
Swiss Army Django: Small Footprint ETL
coderanger
0
88
Swiss Army Django: Small Footprint ETL (with notes)
coderanger
0
81
Minimum Viable Kubernetes
coderanger
0
37
Minimum Viable Kubernetes (with notes)
coderanger
0
440
Other Decks in Programming
See All in Programming
deno-redisの紹介とJSRパッケージの運用について (toranoana.deno #21)
uki00a
0
140
技術同人誌をMCP Serverにしてみた
74th
0
290
プロダクト志向なエンジニアがもう一歩先の価値を目指すために意識したこと
nealle
0
110
PHP 8.4の新機能「プロパティフック」から学ぶオブジェクト指向設計とリスコフの置換原則
kentaroutakeda
2
480
童醫院敏捷轉型的實踐經驗
cclai999
0
180
都市をデータで見るってこういうこと PLATEAU属性情報入門
nokonoko1203
1
570
WindowInsetsだってテストしたい
ryunen344
1
190
PHPで始める振る舞い駆動開発(Behaviour-Driven Development)
ohmori_yusuke
2
180
今ならAmazon ECSのサービス間通信をどう選ぶか / Selection of ECS Interservice Communication 2025
tkikuc
18
3.3k
Blazing Fast UI Development with Compose Hot Reload (droidcon New York 2025)
zsmb
1
190
LT 2025-06-30: プロダクトエンジニアの役割
yamamotok
0
110
Java on Azure で LangGraph!
kohei3110
0
170
Featured
See All Featured
Fantastic passwords and where to find them - at NoRuKo
philnash
51
3.3k
Site-Speed That Sticks
csswizardry
10
660
What’s in a name? Adding method to the madness
productmarketing
PRO
23
3.5k
Building Applications with DynamoDB
mza
95
6.5k
GraphQLとの向き合い方2022年版
quramy
47
14k
Helping Users Find Their Own Way: Creating Modern Search Experiences
danielanewman
29
2.7k
Producing Creativity
orderedlist
PRO
346
40k
Refactoring Trust on Your Teams (GOTO; Chicago 2020)
rmw
34
3k
Gamification - CAS2011
davidbonilla
81
5.3k
Agile that works and the tools we love
rasmusluckow
329
21k
JavaScript: Past, Present, and Future - NDC Porto 2020
reverentgeek
48
5.4k
[RailsConf 2023] Rails as a piece of cake
palkan
55
5.6k
Transcript
Noah Kantrowitz – @kantrn – coderanger.net What Do All Of
These Words Mean? A DevOps Glossary
Noah Ridecell Moving On
Virtual Machine A server but running on "simulated" hardware
VM Image The content of the hard disk for a
future VM
Vagrant A tool for making VMs on your laptop
Cloud Someone else maintains the physical hardware
AWS Amazon Web Services, a cloud provider
EC2 Elastic Compute Cloud, AWS makes you VMs
S3 Simple Storage Service, AWS stores your files
CloudFormation Create and manage AWS stuff using YAML files instead
of clicking in the web UI
Terraform Create and manage things on lots of clouds without
clicking in the web UI
GCE Google Cloud Engine, AWS but by Google
Azure AWS but by Microsoft (yes, you can run Linux)
OpenStack AWS except you also run the physical hardware too
Container A process running with a bunch of security options
Container Image A tarball containing the files a container will
see (and some metadata)
Docker A tool for creating container images and starting containers
Dockerfile A file containing instructions for creating a container image
Kubernetes Big, complex, awesome thing for managing lots of containers
Docker Swarm Big, complex, less awesome thing for managing lots
of containers
Docker Compose Small, complex thing for managing a few containers
Orchestration Coordinating multiple containers together along with storage and networking
they need
Resource Scheduling Working out which server to run a container
on given multiple options
Serverless Tool(s) for making web apps/APIs with less boilerplate
CI Continuous Integration, except not that. Running tests automatically on
every commit
CI Pipeline Dividing tests up into multiple groups and then
chaining them together
Jenkins Popular (and often infuriating) CI tool
Travis Also a popular CI too, but you don't have
to run it yourself and free for open source
CD Continuous Delivery or Deployment, if the tests pass then
it gets deployed
Big Data Running queries against more data than will fit
on one server (~>= 10TB)
Hadoop Popular suite of tools for Big Data
Spark Hadoop component used for running the fancy queries
ETL Extract Transform Load, a common Big Data query pattern
InfoSec Information Security, keeping your data safe
Black Hat Using InfoSec for evil
White Hat Using InfoSec for good
Red Team White hat that attacks systems (with
permission)
Blue Team White hat that defends systems
Purple Team Both!
Hash One-way function, given the output you can't get the
input
Encryption Reversible, but only with the right key
Thank You Noah Kantrowitz @kantrn coderanger.net