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
380
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
40
What Python Can Learn From Other Languages (with notes)
coderanger
0
120
Swiss Army Django: Small Footprint ETL (with notes) - DjangoCon US
coderanger
0
190
Swiss Army Django: Small Footprint ETL - DjangoCon US
coderanger
0
44
How to look at space: PyCon AU
coderanger
0
87
Swiss Army Django: Small Footprint ETL
coderanger
0
73
Swiss Army Django: Small Footprint ETL (with notes)
coderanger
0
66
Minimum Viable Kubernetes
coderanger
0
31
Minimum Viable Kubernetes (with notes)
coderanger
0
390
Other Decks in Programming
See All in Programming
DRFを少しずつ オニオンアーキテクチャに寄せていく DjangoCongress JP 2025
nealle
2
260
データの整合性を保つ非同期処理アーキテクチャパターン / Async Architecture Patterns
mokuo
54
19k
機能が複雑化しても 頼りになる FactoryBotの話
tamikof
0
110
CDK開発におけるコーディング規約の運用
yamanashi_ren01
2
250
PHPカンファレンス名古屋2025 タスク分解の試行錯誤〜レビュー負荷を下げるために〜
soichi
1
670
From the Wild into the Clouds - Laravel Meetup Talk
neverything
0
140
pylint custom ruleで始めるレビュー自動化
shogoujiie
0
150
kintone開発を効率化するためにチームで試した施策とその結果を大放出!
oguemon
0
130
パスキーのすべて ── 導入・UX設計・実装の紹介 / 20250213 パスキー開発者の集い
kuralab
3
880
メンテが命: PHPフレームワークのコンテナ化とアップグレード戦略
shunta27
0
300
Rails 1.0 のコードで学ぶ find_by* と method_missing の仕組み / Learn how find_by_* and method_missing work in Rails 1.0 code
maimux2x
1
180
Jakarta EE meets AI
ivargrimstad
0
370
Featured
See All Featured
A designer walks into a library…
pauljervisheath
205
24k
Code Review Best Practice
trishagee
67
18k
Designing on Purpose - Digital PM Summit 2013
jponch
117
7.1k
Writing Fast Ruby
sferik
628
61k
Reflections from 52 weeks, 52 projects
jeffersonlam
348
20k
Why Our Code Smells
bkeepers
PRO
336
57k
The MySQL Ecosystem @ GitHub 2015
samlambert
250
12k
Build The Right Thing And Hit Your Dates
maggiecrowley
34
2.5k
RailsConf & Balkan Ruby 2019: The Past, Present, and Future of Rails at GitHub
eileencodes
133
33k
Music & Morning Musume
bryan
46
6.4k
Bash Introduction
62gerente
611
210k
Designing Dashboards & Data Visualisations in Web Apps
destraynor
231
53k
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