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
72
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
Outline View in SwiftUI
1024jp
1
340
Snowflake x dbtで作るセキュアでアジャイルなデータ基盤
tsoshiro
2
530
RubyLSPのマルチバイト文字対応
notfounds
0
120
Missing parts when designing and implementing Android UI
ericksli
0
150
リアーキテクチャxDDD 1年間の取り組みと進化
hsawaji
1
220
AWS Lambdaから始まった Serverlessの「熱」とキャリアパス / It started with AWS Lambda Serverless “fever” and career path
seike460
PRO
1
260
距離関数を極める! / SESSIONS 2024
gam0022
0
300
CSC509 Lecture 13
javiergs
PRO
0
110
Amazon Bedrock Agentsを用いてアプリ開発してみた!
har1101
0
340
Contemporary Test Cases
maaretp
0
140
ECS Service Connectのこれまでのアップデートと今後のRoadmapを見てみる
tkikuc
2
260
ペアーズにおけるAmazon Bedrockを⽤いた障害対応⽀援 ⽣成AIツールの導⼊事例 @ 20241115配信AWSウェビナー登壇
fukubaka0825
6
2k
Featured
See All Featured
Teambox: Starting and Learning
jrom
133
8.8k
"I'm Feeling Lucky" - Building Great Search Experiences for Today's Users (#IAC19)
danielanewman
226
22k
Happy Clients
brianwarren
98
6.7k
Git: the NoSQL Database
bkeepers
PRO
427
64k
Building a Scalable Design System with Sketch
lauravandoore
459
33k
Designing for humans not robots
tammielis
250
25k
[Rails World 2023 - Day 1 Closing Keynote] - The Magic of Rails
eileencodes
33
1.9k
Making Projects Easy
brettharned
115
5.9k
Rebuilding a faster, lazier Slack
samanthasiow
79
8.7k
Side Projects
sachag
452
42k
KATA
mclloyd
29
14k
GitHub's CSS Performance
jonrohan
1030
460k
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 :)