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
June 29, 2014
Programming
0
73
Infrastructure management with Ansible
A short introduction to Ansible for managing your infrastructure
Nsukami
June 29, 2014
Tweet
Share
More Decks by Nsukami
See All by Nsukami
Infrastructure management with Ansible
lemeteore
0
170
Other Decks in Programming
See All in Programming
Webエンジニア主体のモバイルチームの 生産性を高く保つためにやったこと
igreenwood
0
350
nekko cloudにおけるProxmox VE利用事例
irumaru
3
510
Jakarta EE meets AI
ivargrimstad
0
360
Androidアプリのモジュール分割における:x:commonを考える
okuzawats
1
250
KubeCon + CloudNativeCon NA 2024 Overviewat Kubernetes Meetup Tokyo #68 / amsy810_k8sjp68
masayaaoyama
0
270
短期間での新規プロダクト開発における「コスパの良い」Goのテスト戦略」 / kamakura.go
n3xem
2
210
Spatial Rendering for Apple Vision Pro
warrenm
0
290
MCP with Cloudflare Workers
yusukebe
2
240
Итераторы в Go 1.23: зачем они нужны, как использовать, и насколько они быстрые?
lamodatech
0
1.2k
Внедряем бюджетирование, или Как сделать хорошо?
lamodatech
0
800
Fibonacci Function Gallery - Part 2
philipschwarz
PRO
0
190
毎日13時間もかかるバッチ処理をたった3日で60%短縮するためにやったこと
sho_ssk_
1
460
Featured
See All Featured
Building Better People: How to give real-time feedback that sticks.
wjessup
366
19k
Code Reviewing Like a Champion
maltzj
521
39k
Fontdeck: Realign not Redesign
paulrobertlloyd
82
5.3k
Mobile First: as difficult as doing things right
swwweet
222
9k
Thoughts on Productivity
jonyablonski
68
4.4k
The Cost Of JavaScript in 2023
addyosmani
46
7k
The Language of Interfaces
destraynor
155
24k
個人開発の失敗を避けるイケてる考え方 / tips for indie hackers
panda_program
97
17k
Helping Users Find Their Own Way: Creating Modern Search Experiences
danielanewman
29
2.3k
ReactJS: Keep Simple. Everything can be a component!
pedronauck
666
120k
How STYLIGHT went responsive
nonsquared
96
5.2k
Writing Fast Ruby
sferik
628
61k
Transcript
Infrastructure management with Ansible PyCon PL 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 :)