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
Sponsored
·
Your Podcast. Everywhere. Effortlessly.
Share. Educate. Inspire. Entertain. You do you. We'll handle the rest.
→
Noah Kantrowitz
October 17, 2018
Programming
1
430
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
The Long Hello World
coderanger
0
19
The Long Hello World (with notes)
coderanger
0
68
What Python Can Learn From Other Languages
coderanger
0
82
What Python Can Learn From Other Languages (with notes)
coderanger
0
200
Swiss Army Django: Small Footprint ETL (with notes) - DjangoCon US
coderanger
0
310
Swiss Army Django: Small Footprint ETL - DjangoCon US
coderanger
0
81
How to look at space: PyCon AU
coderanger
0
140
Swiss Army Django: Small Footprint ETL
coderanger
0
120
Swiss Army Django: Small Footprint ETL (with notes)
coderanger
0
99
Other Decks in Programming
See All in Programming
ふつうのRubyist、ちいさなデバイス、大きな一年 / Ordinary Rubyists, Tiny Devices, Big Year
chobishiba
1
430
AIとペアプロして処理時間を97%削減した話 #pyconshizu
kashewnuts
1
220
Go1.26 go fixをプロダクトに適用して困ったこと
kurakura0916
0
360
Docコメントで始める簡単ガードレール
keisukeikeda
1
110
最初からAWS CDKで技術検証してもいいんじゃない?
akihisaikeda
4
130
コードレビューをしない選択 #でぃーぷらすトウキョウ
kajitack
3
890
nuget-server - あなたが必要だったNuGetサーバー
kekyo
PRO
0
230
PostgreSQL を使った快適な go test 環境を求めて
otakakot
0
540
maplibre-gl-layers - 地図に移動体たくさん表示したい
kekyo
PRO
0
240
Codex の「自走力」を高める
yorifuji
0
1.2k
CDIの誤解しがちな仕様とその対処TIPS
futokiyo
0
200
TipKitTips
ktcryomm
0
160
Featured
See All Featured
Taking LLMs out of the black box: A practical guide to human-in-the-loop distillation
inesmontani
PRO
3
2.1k
Why Mistakes Are the Best Teachers: Turning Failure into a Pathway for Growth
auna
0
78
Ecommerce SEO: The Keys for Success Now & Beyond - #SERPConf2024
aleyda
1
1.8k
KATA
mclloyd
PRO
35
15k
Winning Ecommerce Organic Search in an AI Era - #searchnstuff2025
aleyda
1
1.9k
Put a Button on it: Removing Barriers to Going Fast.
kastner
60
4.2k
16th Malabo Montpellier Forum Presentation
akademiya2063
PRO
0
69
Odyssey Design
rkendrick25
PRO
2
540
A brief & incomplete history of UX Design for the World Wide Web: 1989–2019
jct
1
320
Bootstrapping a Software Product
garrettdimon
PRO
307
120k
Exploring the relationship between traditional SERPs and Gen AI search
raygrieselhuber
PRO
2
3.7k
The Art of Programming - Codeland 2020
erikaheidi
57
14k
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