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
Infrastructure management with Ansible
Search
Nsukami
May 29, 2014
Programming
0
180
Infrastructure management with Ansible
A short introduction to Ansible for managing your infrastructure
Nsukami
May 29, 2014
Tweet
Share
More Decks by Nsukami
See All by Nsukami
Infrastructure management with Ansible
lemeteore
0
74
Other Decks in Programming
See All in Programming
Ruby×iOSアプリ開発 ~共に歩んだエコシステムの物語~
temoki
0
270
基礎から学ぶ大画面対応(Learning Large-Screen Support from the Ground Up)
tomoya0x00
0
410
私の後悔をAWS DMSで解決した話
hiramax
4
210
JSONataを使ってみよう Step Functionsが楽しくなる実践テクニック #devio2025
dafujii
1
520
旅行プランAIエージェント開発の裏側
ippo012
2
890
Tool Catalog Agent for Bedrock AgentCore Gateway
licux
6
2.3k
Go言語での実装を通して学ぶLLMファインチューニングの仕組み / fukuokago22-llm-peft
monochromegane
0
120
AIコーディングAgentとの向き合い方
eycjur
0
270
The Past, Present, and Future of Enterprise Java
ivargrimstad
0
330
Flutter with Dart MCP: All You Need - 박제창 2025 I/O Extended Busan
itsmedreamwalker
0
150
詳解!defer panic recover のしくみ / Understanding defer, panic, and recover
convto
0
230
rage against annotate_predecessor
junk0612
0
160
Featured
See All Featured
KATA
mclloyd
32
14k
Git: the NoSQL Database
bkeepers
PRO
431
66k
Visualizing Your Data: Incorporating Mongo into Loggly Infrastructure
mongodb
48
9.7k
Writing Fast Ruby
sferik
628
62k
ReactJS: Keep Simple. Everything can be a component!
pedronauck
667
120k
Reflections from 52 weeks, 52 projects
jeffersonlam
352
21k
Agile that works and the tools we love
rasmusluckow
330
21k
GraphQLとの向き合い方2022年版
quramy
49
14k
Performance Is Good for Brains [We Love Speed 2024]
tammyeverts
12
1.1k
Art, The Web, and Tiny UX
lynnandtonic
302
21k
Side Projects
sachag
455
43k
Practical Orchestrator
shlominoach
190
11k
Transcript
Infrastructure management with Ansible PyCon India 2014 Bangalore Patrick Nsukami
/ @lemeteore / Freelance developer
About me ? Python developer System administrator (sometimes) Part of
a small developers team Currently building a VOD platform
About Ansible ? Imagine automation in langage that approaches plain
English, using SSH and without nothing to install on remote systems
About Ansible ? - Mutlinode orchestration framework - Written in
Python (extensible in Python) - GPL3 licensed (with some exceptions) - Created by Michael DeHaan - An already great and strong community
About Ansible ? - YAML syntax - Jinja2 templates -
SSH with no remote agents - A module library
Ad hoc commands Refers to running Ansible to perform some
quick command, directly from cli using the ansible command
None
Playbooks Anything you can do ad-hoc can be accomplished by
writing a playbook,it is a way to glue lots of operations together.
None
Organization One thing you will definitely want to do though,
is use the “roles” organization feature
None
Infrastructure management - Set up environments - Configure server -
Deploy code - Performs ad hoc tasks
None
None
Interesting resources - http://www.fullstackpython.com/configuration- management.html
Thanks a lot :)