SlideShare a Scribd company logo
Adm04.The Lazy Admin Wins
the Game. A 'How To' guide
Daniele Vistalli @ Factor-y Srl
Matteo Bisi @ Factor-y Srl
1#engageug
Our Agenda
• Our "lazyness" defininition
• Tools available
• Some examples
• Links
2#engageug
3
Daniele Vistalli – CEO & CTO
IBM Champion Social Business 2017,2018
Social:
• @danielevistalli
• https://www.linkedin.com/in/dvistalli
• daniele.vistalli@factor-y.com
4
Matteo Bisi – Senior System Engineer
IBM Champion Social Business 2014,15,16,17,18
Blogger – www.msbiro.net, blog.msbiro.net
Social:
• @mbisi78
• https://it.linkedin.com/in/matteobisi
• matteo.bisi@factor-y.com
Let’s set expectations
1. This is not a crash course
2. You won’t be throwing your way of life out of the
window right after this presentation
3. This is an introductory overview of tools you may or
may not know, please interact & share experience
4. Everything happens in steps, choose the one that fits
your need better and start improving your life with
some laziness. Don’t try to do it all at once.. that’s
anti-lazy
5
"lazyness" defined
Our lazy admin
• Can do his work, he’s a pro
• Does not avoid learning new tricks
but
• He is smart enough to not reinvent the wheel
6
Everyday problems
Memory loss ... how was that command ???
Configuration issues ... I changed it last
week.. what was before
Tedious work .... A lot of mouse click (or cut
& paste)
7
Tools of the modern (lazy) admin
• Git
• Ansible
• Jenkins
• Special mention:
• IBM Installation Manager
9#engageug
Git is your «time machine»
Version everything to prevent memory loss
10
git
Git is born in 2005 to manage sources of the “simplest”
project ever: The Linux Kernel
Today it is the de-facto standard for
• source code (or any kind of file based repository) tracking
and versioning
• NPM Modules, Node Projects, Java, Ansible, Jenkins…
add your own
• Available everywhere, integrated everywere
11#engageug
Git manages «Repositories»
• Git is extremely complex (if you like to deep dive)
• Git is extremely easy (if you focus on your need)
A repository is a directory containing:
• Your code, let’s call this the «working copy»
• Git history files and configuration, in the .git hidden folder
Create a repository >> git init
• It adds a «.git» folder to your directory
• Nothing is added to the history so far
12#engageug
Working on sources and staging
Work in your directory as you do today
• Add files
• Make changes
• Delete files
Now it’s time to manage your changes:
git status: shows you changes
git add: tells git you want to «track» changes on a file
git rm: removes a file
git commit: saves your chages into a «commit» giving the changeset a trackable
identifier and a comment
Many options exist, you learn over time, or you use a powerful client (eg. SourceTree) 13#engageug
Introducing «Remotes»
• You can use git «locally» and have an entire version control but if you need
to
• Share & work with others
• Secure yourself a backup
Then you need «Remotes» or «Remote repository»
A server-based replica of the repository from which you can
• pull changes
• and then push your modifications
Servers: GitHub / BitBucket / GitLab / Git Server
14#engageug
Branches
If you need to test changes:
1. Create a «branch»
2. Make your changes
3. Stage your changes & commit
4. Test your changes (build, deploy, whatever)
All your changes are in a «branch», those changes to not impact other’s work
till you decide to «merge».
You can have as many branches as you like.
You want to have a «master» branch which represents the real/true/valid
content for your project 15#engageug
Merges
After you created branches you may need to consolidate
• Make a valid change into the «master» branch
• Accept changes done by others and consolidate
Merging is a process:
1. Involves 2 branches
2. A source and a target
3. Applies «diffs» and resolution to changes on files
4. Creates a new «commit» in the target branch with the
merged files
16#engageug
A few resources
• SourceTree (my favorite UI client)
• The Git Book: https://git-scm.com/book/en/v2
• This is a good ready, don’t try to memorize it
• The GitFlow Workflow (most important for developers,
but better you know)
• https://www.atlassian.com/git/tutorials/comparing-
workflows/gitflow-workflow
• http://nvie.com/posts/a-successful-git-branching-model/
17#engageug
Admin’s usage of Git (a few ideas)
In a CI/CD environment
• Is the source for code / scripts
In an «ansible» context
• Manage your inventories and playbooks
• Create modules & roles
In an IBM Connections World (we use it)
• Store & track changes to LotusConnectionsConfig folder
• Store & track connections customizations
• Store & track «TDISOL»
18#engageug
Jenkins, your butler
Computers were created to take work away from you … let’s do
it
19#engageug
Jenkins
Jenkins is a CI / CD server to do work in place of you
• CI : Continuous integration
• CD: Continuous delivery
Born in 2004 at Sun as “Hudson” it later was forked by the
community as Jenkins. Oracle claimed Hudson as its
trademarks. The community went away.
Guess what… Jenkins is today the winner.
Get it at: https://jenkins.io/
20#engageug
What can Jenkins do for me
If it’s repeatable, Jenkins can help, and adds:
• Configuration repository for «Jobs» & «Pipelines»
• Credentials store (so you don’t save password in code/scripts)
• Plugins (to integrate anything)
• Historical perspective on executions
• Pipeline «mindset», follows you from dev to production.
21#engageug
What’s a Job
A set of steps to achieve a result
No, it’s not a script because:
• A job has an history
• Stores outputs
• Track exit code
• Track the execution environment
• Can be run on remote hosts (Jenkins nodes)
22#engageug
What’s a Job, part 2 – Build it
1. Check out code from git (scripts ?)
2. Set the context, parameters, variables
3. Use jenkins plugins to do things
4. Get credentials from the credential store
5. Manage outcomes conditionally
6. Fire other cascading jobs
23#engageug
When a jub runs …
Executes steps you defined
After a jub has run
• Review & keep the output
• Check the execution environment
• Run «post» steps to consolidate results
• Save files
• Fire events
• Send notifications
• More plugins -> More capabilities
Explore jenkins plugins: https://plugins.jenkins.io/
24#engageug
Other tricks
• Invoke a jenkins job as a REST API
• Deploy remote «nodes» to distribute load
• Use Ansible with Jenkins to improve automation (key for
system administrators)
• If you need something (and it makes sense) there’s
probably a plugin for that.
25#engageug
What we use it for ?
• Building our code (this is for devs)
• Deploying apps to 6 lines of WebSphere Portal Servers at
a customer
• Applications
• Configurations
• Reporting
• Deploying apps to customers
• Track every deploy, notify changes and generate reports
26#engageug
Ansible
Scripting for admins, done right
28#engageug
Ansible
29#engageug
• Agentless , it runs over SSH (or PowerShell remote)
• Powerfull , based on Python
Agentless and powerful open source IT automation tool
Use Cases
• Provisioning
• Configuration management
• Application deployement
• Continuous delivery
• Security & Compliance
• Orchestration
Inventory
30#engageug
Default /etc/ansible/hosts
Multiple inventory allowed to , use –i <path> on command line to specify others
INI YAML
Variables
stored inside Inventory
host
Group
31#engageug
variables
Groups of Groups, and Group Variables
32#engageug
variables
Default groups
• All
• ungrouped
The order/precedence is (from lowest to highest)
• all group (because it is the ‘parent’ of all other groups)
• parent group
• child group
• Host
Ansible use Jinja2 templating to enable dynamic expressions and access to variables
33#engageug
Ready to run commands?
Play with Ansible
Ad Hoc Command (some examples)
34#engageug
Play with Ansible
• Playbook
It’s a READABLE collections of Ansible commands , written inside a YAML file and could be
launched against host(s) or group(s).
Commands are grouped by tasks who calls ansible modules
35#engageug
Play with Ansible
• Role(s)
It’s a collections of files with folder structur that allow admins to keep simple and flexible
complex authomation.
Example projext structure:
36#engageug
IBM Installation Manger
It’s an installer
• /opt/ibm/InstallationManger/eclipse/IBMIM
It’s a SMART installer ☺
• Install from local ad remote repository
• It could record and play cofigurations
• It could roll back versions and config
• It owns also a Web Interface !
/opt/ibm/InstallationManger/eclipse/web/ibmim-web
http://serverIP:9090/ibmim
Record and play !
Record
/opt/IBM/InstallationManager/eclipse/IBMIM -record
/root/connections6dev.xml -skipInstall /tmp/SkipInstall
Play
/opt/IBM/InstallationManager/eclipse/tools/imcl -acceptLicense -
sVP -log /tmp/swInstall.log -input /tmp/response/swResp.rsp
Let’s go to use this with Ansible !
Intsallation manager inside Ansible playbooks
39 5/25/2018
Example: deploy DB2 11.1FP3
40#engageug
Response file -> template
Example: deploy DB2 11.1
41#engageug
42#engageug
Links
43#engageug
http://www.ansible.com
https://github.com/ebasso/ansible-ibm-websphere
https://github.com/Factor-y/ansible-ibm-websphere
44#engageug

More Related Content

PDF
CI is dead, long live CI
PDF
Git best practices workshop
PDF
Git best practices 2016
PPTX
Git Merge, Resets and Branches
PDF
Master Continuous Delivery with CloudBees Jenkins Platform
PPT
Git 101 - Crash Course in Version Control using Git
PPTX
Introduction to github slideshare
PPTX
Introduction to jenkins for the net developer
CI is dead, long live CI
Git best practices workshop
Git best practices 2016
Git Merge, Resets and Branches
Master Continuous Delivery with CloudBees Jenkins Platform
Git 101 - Crash Course in Version Control using Git
Introduction to github slideshare
Introduction to jenkins for the net developer

What's hot (20)

PPTX
Git Lab Introduction
PDF
Git and Github workshop
PPTX
Github basics
PDF
How to Contribute to Pinax
KEY
Git with bitbucket
KEY
Essential Plone development tools - Plone conf 2012
PDF
Introducing GitLab (June 2018)
PPTX
Bitbucket
PDF
Gitlab Training with GIT and SourceTree
PPTX
GitLab 8.5 Highlights and Step-by-step tutorial
PDF
Getting Started with GitHub
PDF
Introducing GitLab
PPTX
Continuous integration jenkins-installation in ec2 instace linux
PPTX
Workshop on Git and GitHub
PPTX
BitBucket presentation
PPTX
GitHub Actions - Melbourne UG
PDF
Collaborating on GitHub for Open Source Documentation
PPTX
GitFlow, SourceTree and GitLab
PDF
Intro to Git & GitHub
PPTX
Collaborating on GitHub for Open Source Documentation
Git Lab Introduction
Git and Github workshop
Github basics
How to Contribute to Pinax
Git with bitbucket
Essential Plone development tools - Plone conf 2012
Introducing GitLab (June 2018)
Bitbucket
Gitlab Training with GIT and SourceTree
GitLab 8.5 Highlights and Step-by-step tutorial
Getting Started with GitHub
Introducing GitLab
Continuous integration jenkins-installation in ec2 instace linux
Workshop on Git and GitHub
BitBucket presentation
GitHub Actions - Melbourne UG
Collaborating on GitHub for Open Source Documentation
GitFlow, SourceTree and GitLab
Intro to Git & GitHub
Collaborating on GitHub for Open Source Documentation
Ad

Similar to Engage 2018 adm04 The lazy admin wins (20)

PPTX
Que nos espera a los ALM Dudes para el 2013?
PPTX
finall_(1).pptx
PDF
Git Makes Me Angry Inside
PDF
Software Engineering Tools and Practices Learn Git
PPTX
La importancia de versionar el código: GitHub, portafolio y recursos para est...
PPTX
Saleforce For Domino Dogs
PDF
Git for folk who like GUIs
PDF
Detecting secrets in code committed to gitlab (in real time)
PDF
Introduction to GitHub Actions
PPTX
Automation: The Good, The Bad and The Ugly with DevOpsGuys - AppD Summit Europe
PPTX
DevOpsGuys - DevOps Automation - The Good, The Bad and The Ugly
PDF
Git workshop
PDF
Portable CI wGitLab and Github led by Gavin Pickin.pdf
PDF
Bedjango talk about Git & GitHub
PPTX
Learn Git form Beginners to Master
PDF
PuppetConf 2016: A Tale of Two Hierarchies: Group Policy & Puppet – Matt Ston...
PDF
Git workshop
ZIP
Beginner's Guide to Version Control with Git
PPTX
Techoalien git
PPTX
Techoalien git
Que nos espera a los ALM Dudes para el 2013?
finall_(1).pptx
Git Makes Me Angry Inside
Software Engineering Tools and Practices Learn Git
La importancia de versionar el código: GitHub, portafolio y recursos para est...
Saleforce For Domino Dogs
Git for folk who like GUIs
Detecting secrets in code committed to gitlab (in real time)
Introduction to GitHub Actions
Automation: The Good, The Bad and The Ugly with DevOpsGuys - AppD Summit Europe
DevOpsGuys - DevOps Automation - The Good, The Bad and The Ugly
Git workshop
Portable CI wGitLab and Github led by Gavin Pickin.pdf
Bedjango talk about Git & GitHub
Learn Git form Beginners to Master
PuppetConf 2016: A Tale of Two Hierarchies: Group Policy & Puppet – Matt Ston...
Git workshop
Beginner's Guide to Version Control with Git
Techoalien git
Techoalien git
Ad

Recently uploaded (20)

PDF
Modernizing your data center with Dell and AMD
PPTX
Cloud computing and distributed systems.
PDF
Advanced methodologies resolving dimensionality complications for autism neur...
PPTX
VMware vSphere Foundation How to Sell Presentation-Ver1.4-2-14-2024.pptx
PDF
Approach and Philosophy of On baking technology
PDF
NewMind AI Weekly Chronicles - August'25 Week I
PDF
NewMind AI Monthly Chronicles - July 2025
PDF
Empathic Computing: Creating Shared Understanding
PDF
Encapsulation theory and applications.pdf
PDF
Chapter 3 Spatial Domain Image Processing.pdf
PDF
Peak of Data & AI Encore- AI for Metadata and Smarter Workflows
PPTX
KOM of Painting work and Equipment Insulation REV00 update 25-dec.pptx
PDF
KodekX | Application Modernization Development
PPTX
MYSQL Presentation for SQL database connectivity
PDF
Unlocking AI with Model Context Protocol (MCP)
PDF
Dropbox Q2 2025 Financial Results & Investor Presentation
PDF
Machine learning based COVID-19 study performance prediction
DOCX
The AUB Centre for AI in Media Proposal.docx
PDF
Bridging biosciences and deep learning for revolutionary discoveries: a compr...
PDF
Blue Purple Modern Animated Computer Science Presentation.pdf.pdf
Modernizing your data center with Dell and AMD
Cloud computing and distributed systems.
Advanced methodologies resolving dimensionality complications for autism neur...
VMware vSphere Foundation How to Sell Presentation-Ver1.4-2-14-2024.pptx
Approach and Philosophy of On baking technology
NewMind AI Weekly Chronicles - August'25 Week I
NewMind AI Monthly Chronicles - July 2025
Empathic Computing: Creating Shared Understanding
Encapsulation theory and applications.pdf
Chapter 3 Spatial Domain Image Processing.pdf
Peak of Data & AI Encore- AI for Metadata and Smarter Workflows
KOM of Painting work and Equipment Insulation REV00 update 25-dec.pptx
KodekX | Application Modernization Development
MYSQL Presentation for SQL database connectivity
Unlocking AI with Model Context Protocol (MCP)
Dropbox Q2 2025 Financial Results & Investor Presentation
Machine learning based COVID-19 study performance prediction
The AUB Centre for AI in Media Proposal.docx
Bridging biosciences and deep learning for revolutionary discoveries: a compr...
Blue Purple Modern Animated Computer Science Presentation.pdf.pdf

Engage 2018 adm04 The lazy admin wins

  • 1. Adm04.The Lazy Admin Wins the Game. A 'How To' guide Daniele Vistalli @ Factor-y Srl Matteo Bisi @ Factor-y Srl 1#engageug
  • 2. Our Agenda • Our "lazyness" defininition • Tools available • Some examples • Links 2#engageug
  • 3. 3 Daniele Vistalli – CEO & CTO IBM Champion Social Business 2017,2018 Social: • @danielevistalli • https://www.linkedin.com/in/dvistalli • daniele.vistalli@factor-y.com
  • 4. 4 Matteo Bisi – Senior System Engineer IBM Champion Social Business 2014,15,16,17,18 Blogger – www.msbiro.net, blog.msbiro.net Social: • @mbisi78 • https://it.linkedin.com/in/matteobisi • matteo.bisi@factor-y.com
  • 5. Let’s set expectations 1. This is not a crash course 2. You won’t be throwing your way of life out of the window right after this presentation 3. This is an introductory overview of tools you may or may not know, please interact & share experience 4. Everything happens in steps, choose the one that fits your need better and start improving your life with some laziness. Don’t try to do it all at once.. that’s anti-lazy 5
  • 6. "lazyness" defined Our lazy admin • Can do his work, he’s a pro • Does not avoid learning new tricks but • He is smart enough to not reinvent the wheel 6
  • 7. Everyday problems Memory loss ... how was that command ??? Configuration issues ... I changed it last week.. what was before Tedious work .... A lot of mouse click (or cut & paste) 7
  • 8. Tools of the modern (lazy) admin • Git • Ansible • Jenkins • Special mention: • IBM Installation Manager 9#engageug
  • 9. Git is your «time machine» Version everything to prevent memory loss 10
  • 10. git Git is born in 2005 to manage sources of the “simplest” project ever: The Linux Kernel Today it is the de-facto standard for • source code (or any kind of file based repository) tracking and versioning • NPM Modules, Node Projects, Java, Ansible, Jenkins… add your own • Available everywhere, integrated everywere 11#engageug
  • 11. Git manages «Repositories» • Git is extremely complex (if you like to deep dive) • Git is extremely easy (if you focus on your need) A repository is a directory containing: • Your code, let’s call this the «working copy» • Git history files and configuration, in the .git hidden folder Create a repository >> git init • It adds a «.git» folder to your directory • Nothing is added to the history so far 12#engageug
  • 12. Working on sources and staging Work in your directory as you do today • Add files • Make changes • Delete files Now it’s time to manage your changes: git status: shows you changes git add: tells git you want to «track» changes on a file git rm: removes a file git commit: saves your chages into a «commit» giving the changeset a trackable identifier and a comment Many options exist, you learn over time, or you use a powerful client (eg. SourceTree) 13#engageug
  • 13. Introducing «Remotes» • You can use git «locally» and have an entire version control but if you need to • Share & work with others • Secure yourself a backup Then you need «Remotes» or «Remote repository» A server-based replica of the repository from which you can • pull changes • and then push your modifications Servers: GitHub / BitBucket / GitLab / Git Server 14#engageug
  • 14. Branches If you need to test changes: 1. Create a «branch» 2. Make your changes 3. Stage your changes & commit 4. Test your changes (build, deploy, whatever) All your changes are in a «branch», those changes to not impact other’s work till you decide to «merge». You can have as many branches as you like. You want to have a «master» branch which represents the real/true/valid content for your project 15#engageug
  • 15. Merges After you created branches you may need to consolidate • Make a valid change into the «master» branch • Accept changes done by others and consolidate Merging is a process: 1. Involves 2 branches 2. A source and a target 3. Applies «diffs» and resolution to changes on files 4. Creates a new «commit» in the target branch with the merged files 16#engageug
  • 16. A few resources • SourceTree (my favorite UI client) • The Git Book: https://git-scm.com/book/en/v2 • This is a good ready, don’t try to memorize it • The GitFlow Workflow (most important for developers, but better you know) • https://www.atlassian.com/git/tutorials/comparing- workflows/gitflow-workflow • http://nvie.com/posts/a-successful-git-branching-model/ 17#engageug
  • 17. Admin’s usage of Git (a few ideas) In a CI/CD environment • Is the source for code / scripts In an «ansible» context • Manage your inventories and playbooks • Create modules & roles In an IBM Connections World (we use it) • Store & track changes to LotusConnectionsConfig folder • Store & track connections customizations • Store & track «TDISOL» 18#engageug
  • 18. Jenkins, your butler Computers were created to take work away from you … let’s do it 19#engageug
  • 19. Jenkins Jenkins is a CI / CD server to do work in place of you • CI : Continuous integration • CD: Continuous delivery Born in 2004 at Sun as “Hudson” it later was forked by the community as Jenkins. Oracle claimed Hudson as its trademarks. The community went away. Guess what… Jenkins is today the winner. Get it at: https://jenkins.io/ 20#engageug
  • 20. What can Jenkins do for me If it’s repeatable, Jenkins can help, and adds: • Configuration repository for «Jobs» & «Pipelines» • Credentials store (so you don’t save password in code/scripts) • Plugins (to integrate anything) • Historical perspective on executions • Pipeline «mindset», follows you from dev to production. 21#engageug
  • 21. What’s a Job A set of steps to achieve a result No, it’s not a script because: • A job has an history • Stores outputs • Track exit code • Track the execution environment • Can be run on remote hosts (Jenkins nodes) 22#engageug
  • 22. What’s a Job, part 2 – Build it 1. Check out code from git (scripts ?) 2. Set the context, parameters, variables 3. Use jenkins plugins to do things 4. Get credentials from the credential store 5. Manage outcomes conditionally 6. Fire other cascading jobs 23#engageug
  • 23. When a jub runs … Executes steps you defined After a jub has run • Review & keep the output • Check the execution environment • Run «post» steps to consolidate results • Save files • Fire events • Send notifications • More plugins -> More capabilities Explore jenkins plugins: https://plugins.jenkins.io/ 24#engageug
  • 24. Other tricks • Invoke a jenkins job as a REST API • Deploy remote «nodes» to distribute load • Use Ansible with Jenkins to improve automation (key for system administrators) • If you need something (and it makes sense) there’s probably a plugin for that. 25#engageug
  • 25. What we use it for ? • Building our code (this is for devs) • Deploying apps to 6 lines of WebSphere Portal Servers at a customer • Applications • Configurations • Reporting • Deploying apps to customers • Track every deploy, notify changes and generate reports 26#engageug
  • 26. Ansible Scripting for admins, done right 28#engageug
  • 27. Ansible 29#engageug • Agentless , it runs over SSH (or PowerShell remote) • Powerfull , based on Python Agentless and powerful open source IT automation tool Use Cases • Provisioning • Configuration management • Application deployement • Continuous delivery • Security & Compliance • Orchestration
  • 28. Inventory 30#engageug Default /etc/ansible/hosts Multiple inventory allowed to , use –i <path> on command line to specify others INI YAML
  • 30. variables Groups of Groups, and Group Variables 32#engageug
  • 31. variables Default groups • All • ungrouped The order/precedence is (from lowest to highest) • all group (because it is the ‘parent’ of all other groups) • parent group • child group • Host Ansible use Jinja2 templating to enable dynamic expressions and access to variables 33#engageug Ready to run commands?
  • 32. Play with Ansible Ad Hoc Command (some examples) 34#engageug
  • 33. Play with Ansible • Playbook It’s a READABLE collections of Ansible commands , written inside a YAML file and could be launched against host(s) or group(s). Commands are grouped by tasks who calls ansible modules 35#engageug
  • 34. Play with Ansible • Role(s) It’s a collections of files with folder structur that allow admins to keep simple and flexible complex authomation. Example projext structure: 36#engageug
  • 35. IBM Installation Manger It’s an installer • /opt/ibm/InstallationManger/eclipse/IBMIM It’s a SMART installer ☺ • Install from local ad remote repository • It could record and play cofigurations • It could roll back versions and config • It owns also a Web Interface ! /opt/ibm/InstallationManger/eclipse/web/ibmim-web http://serverIP:9090/ibmim
  • 36. Record and play ! Record /opt/IBM/InstallationManager/eclipse/IBMIM -record /root/connections6dev.xml -skipInstall /tmp/SkipInstall Play /opt/IBM/InstallationManager/eclipse/tools/imcl -acceptLicense - sVP -log /tmp/swInstall.log -input /tmp/response/swResp.rsp Let’s go to use this with Ansible !
  • 37. Intsallation manager inside Ansible playbooks 39 5/25/2018
  • 38. Example: deploy DB2 11.1FP3 40#engageug Response file -> template
  • 39. Example: deploy DB2 11.1 41#engageug