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

What's hot

Introduction to jenkins for the net developer
Introduction to jenkins for the net developerIntroduction to jenkins for the net developer
Introduction to jenkins for the net developer
Abe Diaz
 
Git Lab Introduction
Git Lab IntroductionGit Lab Introduction
Git Lab Introduction
Krunal Doshi
 
Git and Github workshop
Git and Github workshopGit and Github workshop
Git and Github workshop
Otto Kekäläinen
 
Github basics
Github basicsGithub basics
Github basics
Radoslav Georgiev
 
How to Contribute to Pinax
How to Contribute to PinaxHow to Contribute to Pinax
How to Contribute to Pinax
jtauber
 
Git with bitbucket
Git with bitbucketGit with bitbucket
Git with bitbucket
Sumin Byeon
 
Essential Plone development tools - Plone conf 2012
Essential Plone development tools - Plone conf 2012Essential Plone development tools - Plone conf 2012
Essential Plone development tools - Plone conf 2012
Kim Chee Leong
 
Introducing GitLab (June 2018)
Introducing GitLab (June 2018)Introducing GitLab (June 2018)
Introducing GitLab (June 2018)
Noa Harel
 
Bitbucket
BitbucketBitbucket
Bitbucket
Okba Mahdjoub
 
Gitlab Training with GIT and SourceTree
Gitlab Training with GIT and SourceTreeGitlab Training with GIT and SourceTree
Gitlab Training with GIT and SourceTree
Teerapat Khunpech
 
GitLab 8.5 Highlights and Step-by-step tutorial
GitLab 8.5 Highlights and Step-by-step tutorialGitLab 8.5 Highlights and Step-by-step tutorial
GitLab 8.5 Highlights and Step-by-step tutorial
Heather McNamee
 
Getting Started with GitHub
Getting Started with GitHubGetting Started with GitHub
Getting Started with GitHub
Michael Redlich
 
Introducing GitLab
Introducing GitLabIntroducing GitLab
Introducing GitLab
Taisuke Inoue
 
Continuous integration jenkins-installation in ec2 instace linux
Continuous integration jenkins-installation in ec2 instace linuxContinuous integration jenkins-installation in ec2 instace linux
Continuous integration jenkins-installation in ec2 instace linux
Maheshnagakumar Tokala
 
Workshop on Git and GitHub
Workshop on Git and GitHubWorkshop on Git and GitHub
Workshop on Git and GitHub
DSCVSSUT
 
BitBucket presentation
BitBucket presentationBitBucket presentation
BitBucket presentation
Jonathan Lawerh
 
GitHub Actions - Melbourne UG
GitHub Actions - Melbourne UGGitHub Actions - Melbourne UG
GitHub Actions - Melbourne UG
Natraj Yegnaraman
 
Collaborating on GitHub for Open Source Documentation
Collaborating on GitHub for Open Source DocumentationCollaborating on GitHub for Open Source Documentation
Collaborating on GitHub for Open Source Documentation
Anne Gentle
 
GitFlow, SourceTree and GitLab
GitFlow, SourceTree and GitLabGitFlow, SourceTree and GitLab
GitFlow, SourceTree and GitLab
Shinu Suresh
 
Intro to Git & GitHub
Intro to Git & GitHubIntro to Git & GitHub
Intro to Git & GitHub
GoogleDevelopersStud
 

What's hot (20)

Introduction to jenkins for the net developer
Introduction to jenkins for the net developerIntroduction to jenkins for the net developer
Introduction to jenkins for the net developer
 
Git Lab Introduction
Git Lab IntroductionGit Lab Introduction
Git Lab Introduction
 
Git and Github workshop
Git and Github workshopGit and Github workshop
Git and Github workshop
 
Github basics
Github basicsGithub basics
Github basics
 
How to Contribute to Pinax
How to Contribute to PinaxHow to Contribute to Pinax
How to Contribute to Pinax
 
Git with bitbucket
Git with bitbucketGit with bitbucket
Git with bitbucket
 
Essential Plone development tools - Plone conf 2012
Essential Plone development tools - Plone conf 2012Essential Plone development tools - Plone conf 2012
Essential Plone development tools - Plone conf 2012
 
Introducing GitLab (June 2018)
Introducing GitLab (June 2018)Introducing GitLab (June 2018)
Introducing GitLab (June 2018)
 
Bitbucket
BitbucketBitbucket
Bitbucket
 
Gitlab Training with GIT and SourceTree
Gitlab Training with GIT and SourceTreeGitlab Training with GIT and SourceTree
Gitlab Training with GIT and SourceTree
 
GitLab 8.5 Highlights and Step-by-step tutorial
GitLab 8.5 Highlights and Step-by-step tutorialGitLab 8.5 Highlights and Step-by-step tutorial
GitLab 8.5 Highlights and Step-by-step tutorial
 
Getting Started with GitHub
Getting Started with GitHubGetting Started with GitHub
Getting Started with GitHub
 
Introducing GitLab
Introducing GitLabIntroducing GitLab
Introducing GitLab
 
Continuous integration jenkins-installation in ec2 instace linux
Continuous integration jenkins-installation in ec2 instace linuxContinuous integration jenkins-installation in ec2 instace linux
Continuous integration jenkins-installation in ec2 instace linux
 
Workshop on Git and GitHub
Workshop on Git and GitHubWorkshop on Git and GitHub
Workshop on Git and GitHub
 
BitBucket presentation
BitBucket presentationBitBucket presentation
BitBucket presentation
 
GitHub Actions - Melbourne UG
GitHub Actions - Melbourne UGGitHub Actions - Melbourne UG
GitHub Actions - Melbourne UG
 
Collaborating on GitHub for Open Source Documentation
Collaborating on GitHub for Open Source DocumentationCollaborating on GitHub for Open Source Documentation
Collaborating on GitHub for Open Source Documentation
 
GitFlow, SourceTree and GitLab
GitFlow, SourceTree and GitLabGitFlow, SourceTree and GitLab
GitFlow, SourceTree and GitLab
 
Intro to Git & GitHub
Intro to Git & GitHubIntro to Git & GitHub
Intro to Git & GitHub
 

Similar to Engage 2018 adm04 The lazy admin wins

Que nos espera a los ALM Dudes para el 2013?
Que nos espera a los ALM Dudes para el 2013?Que nos espera a los ALM Dudes para el 2013?
Que nos espera a los ALM Dudes para el 2013?
Bruno Capuano
 
finall_(1).pptx
finall_(1).pptxfinall_(1).pptx
finall_(1).pptx
meseret akalu
 
Git Makes Me Angry Inside
Git Makes Me Angry InsideGit Makes Me Angry Inside
Git Makes Me Angry Inside
Emma Jane Hogbin Westby
 
La importancia de versionar el código: GitHub, portafolio y recursos para est...
La importancia de versionar el código: GitHub, portafolio y recursos para est...La importancia de versionar el código: GitHub, portafolio y recursos para est...
La importancia de versionar el código: GitHub, portafolio y recursos para est...
CloudNativeElSalvado
 
Saleforce For Domino Dogs
Saleforce For Domino DogsSaleforce For Domino Dogs
Saleforce For Domino Dogs
Mark Myers
 
Git for folk who like GUIs
Git for folk who like GUIsGit for folk who like GUIs
Git for folk who like GUIs
Tim Osborn
 
Detecting secrets in code committed to gitlab (in real time)
Detecting secrets in code committed to gitlab (in real time)Detecting secrets in code committed to gitlab (in real time)
Detecting secrets in code committed to gitlab (in real time)
Chandrapal Badshah
 
Introduction to GitHub Actions
Introduction to GitHub ActionsIntroduction to GitHub Actions
Introduction to GitHub Actions
Knoldus Inc.
 
Automation: The Good, The Bad and The Ugly with DevOpsGuys - AppD Summit Europe
Automation: The Good, The Bad and The Ugly with DevOpsGuys - AppD Summit EuropeAutomation: The Good, The Bad and The Ugly with DevOpsGuys - AppD Summit Europe
Automation: The Good, The Bad and The Ugly with DevOpsGuys - AppD Summit Europe
AppDynamics
 
DevOpsGuys - DevOps Automation - The Good, The Bad and The Ugly
DevOpsGuys - DevOps Automation - The Good, The Bad and The UglyDevOpsGuys - DevOps Automation - The Good, The Bad and The Ugly
DevOpsGuys - DevOps Automation - The Good, The Bad and The Ugly
DevOpsGroup
 
Git workshop
Git workshopGit workshop
Git workshop
Al Sayed Gamal
 
Bedjango talk about Git & GitHub
Bedjango talk about Git & GitHubBedjango talk about Git & GitHub
Bedjango talk about Git & GitHub
BeDjango
 
Learn Git form Beginners to Master
Learn Git form Beginners to MasterLearn Git form Beginners to Master
Learn Git form Beginners to Master
C. M. Abdullah Khan
 
PuppetConf 2016: A Tale of Two Hierarchies: Group Policy & Puppet – Matt Ston...
PuppetConf 2016: A Tale of Two Hierarchies: Group Policy & Puppet – Matt Ston...PuppetConf 2016: A Tale of Two Hierarchies: Group Policy & Puppet – Matt Ston...
PuppetConf 2016: A Tale of Two Hierarchies: Group Policy & Puppet – Matt Ston...
Puppet
 
Git workshop
Git workshopGit workshop
Git workshop
Reslan Al Tinawi
 
Beginner's Guide to Version Control with Git
Beginner's Guide to Version Control with GitBeginner's Guide to Version Control with Git
Beginner's Guide to Version Control with Git
Robert Lee-Cann
 
Techoalien git
Techoalien gitTechoalien git
Techoalien git
Aditya Tiwari
 
Techoalien git
Techoalien gitTechoalien git
Techoalien git
Aditya Tiwari
 
Techoalien git
Techoalien gitTechoalien git
Techoalien git
Aditya Tiwari
 
Mini-training: Let’s Git It!
Mini-training: Let’s Git It!Mini-training: Let’s Git It!
Mini-training: Let’s Git It!
Betclic Everest Group Tech Team
 

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

Que nos espera a los ALM Dudes para el 2013?
Que nos espera a los ALM Dudes para el 2013?Que nos espera a los ALM Dudes para el 2013?
Que nos espera a los ALM Dudes para el 2013?
 
finall_(1).pptx
finall_(1).pptxfinall_(1).pptx
finall_(1).pptx
 
Git Makes Me Angry Inside
Git Makes Me Angry InsideGit Makes Me Angry Inside
Git Makes Me Angry Inside
 
La importancia de versionar el código: GitHub, portafolio y recursos para est...
La importancia de versionar el código: GitHub, portafolio y recursos para est...La importancia de versionar el código: GitHub, portafolio y recursos para est...
La importancia de versionar el código: GitHub, portafolio y recursos para est...
 
Saleforce For Domino Dogs
Saleforce For Domino DogsSaleforce For Domino Dogs
Saleforce For Domino Dogs
 
Git for folk who like GUIs
Git for folk who like GUIsGit for folk who like GUIs
Git for folk who like GUIs
 
Detecting secrets in code committed to gitlab (in real time)
Detecting secrets in code committed to gitlab (in real time)Detecting secrets in code committed to gitlab (in real time)
Detecting secrets in code committed to gitlab (in real time)
 
Introduction to GitHub Actions
Introduction to GitHub ActionsIntroduction to GitHub Actions
Introduction to GitHub Actions
 
Automation: The Good, The Bad and The Ugly with DevOpsGuys - AppD Summit Europe
Automation: The Good, The Bad and The Ugly with DevOpsGuys - AppD Summit EuropeAutomation: The Good, The Bad and The Ugly with DevOpsGuys - AppD Summit Europe
Automation: The Good, The Bad and The Ugly with DevOpsGuys - AppD Summit Europe
 
DevOpsGuys - DevOps Automation - The Good, The Bad and The Ugly
DevOpsGuys - DevOps Automation - The Good, The Bad and The UglyDevOpsGuys - DevOps Automation - The Good, The Bad and The Ugly
DevOpsGuys - DevOps Automation - The Good, The Bad and The Ugly
 
Git workshop
Git workshopGit workshop
Git workshop
 
Bedjango talk about Git & GitHub
Bedjango talk about Git & GitHubBedjango talk about Git & GitHub
Bedjango talk about Git & GitHub
 
Learn Git form Beginners to Master
Learn Git form Beginners to MasterLearn Git form Beginners to Master
Learn Git form Beginners to Master
 
PuppetConf 2016: A Tale of Two Hierarchies: Group Policy & Puppet – Matt Ston...
PuppetConf 2016: A Tale of Two Hierarchies: Group Policy & Puppet – Matt Ston...PuppetConf 2016: A Tale of Two Hierarchies: Group Policy & Puppet – Matt Ston...
PuppetConf 2016: A Tale of Two Hierarchies: Group Policy & Puppet – Matt Ston...
 
Git workshop
Git workshopGit workshop
Git workshop
 
Beginner's Guide to Version Control with Git
Beginner's Guide to Version Control with GitBeginner's Guide to Version Control with Git
Beginner's Guide to Version Control with Git
 
Techoalien git
Techoalien gitTechoalien git
Techoalien git
 
Techoalien git
Techoalien gitTechoalien git
Techoalien git
 
Techoalien git
Techoalien gitTechoalien git
Techoalien git
 
Mini-training: Let’s Git It!
Mini-training: Let’s Git It!Mini-training: Let’s Git It!
Mini-training: Let’s Git It!
 

Recently uploaded

20240607 QFM018 Elixir Reading List May 2024
20240607 QFM018 Elixir Reading List May 202420240607 QFM018 Elixir Reading List May 2024
20240607 QFM018 Elixir Reading List May 2024
Matthew Sinclair
 
Ocean lotus Threat actors project by John Sitima 2024 (1).pptx
Ocean lotus Threat actors project by John Sitima 2024 (1).pptxOcean lotus Threat actors project by John Sitima 2024 (1).pptx
Ocean lotus Threat actors project by John Sitima 2024 (1).pptx
SitimaJohn
 
Columbus Data & Analytics Wednesdays - June 2024
Columbus Data & Analytics Wednesdays - June 2024Columbus Data & Analytics Wednesdays - June 2024
Columbus Data & Analytics Wednesdays - June 2024
Jason Packer
 
HCL Notes and Domino License Cost Reduction in the World of DLAU
HCL Notes and Domino License Cost Reduction in the World of DLAUHCL Notes and Domino License Cost Reduction in the World of DLAU
HCL Notes and Domino License Cost Reduction in the World of DLAU
panagenda
 
Uni Systems Copilot event_05062024_C.Vlachos.pdf
Uni Systems Copilot event_05062024_C.Vlachos.pdfUni Systems Copilot event_05062024_C.Vlachos.pdf
Uni Systems Copilot event_05062024_C.Vlachos.pdf
Uni Systems S.M.S.A.
 
GenAI Pilot Implementation in the organizations
GenAI Pilot Implementation in the organizationsGenAI Pilot Implementation in the organizations
GenAI Pilot Implementation in the organizations
kumardaparthi1024
 
Fueling AI with Great Data with Airbyte Webinar
Fueling AI with Great Data with Airbyte WebinarFueling AI with Great Data with Airbyte Webinar
Fueling AI with Great Data with Airbyte Webinar
Zilliz
 
20240609 QFM020 Irresponsible AI Reading List May 2024
20240609 QFM020 Irresponsible AI Reading List May 202420240609 QFM020 Irresponsible AI Reading List May 2024
20240609 QFM020 Irresponsible AI Reading List May 2024
Matthew Sinclair
 
Building Production Ready Search Pipelines with Spark and Milvus
Building Production Ready Search Pipelines with Spark and MilvusBuilding Production Ready Search Pipelines with Spark and Milvus
Building Production Ready Search Pipelines with Spark and Milvus
Zilliz
 
National Security Agency - NSA mobile device best practices
National Security Agency - NSA mobile device best practicesNational Security Agency - NSA mobile device best practices
National Security Agency - NSA mobile device best practices
Quotidiano Piemontese
 
Taking AI to the Next Level in Manufacturing.pdf
Taking AI to the Next Level in Manufacturing.pdfTaking AI to the Next Level in Manufacturing.pdf
Taking AI to the Next Level in Manufacturing.pdf
ssuserfac0301
 
Presentation of the OECD Artificial Intelligence Review of Germany
Presentation of the OECD Artificial Intelligence Review of GermanyPresentation of the OECD Artificial Intelligence Review of Germany
Presentation of the OECD Artificial Intelligence Review of Germany
innovationoecd
 
Infrastructure Challenges in Scaling RAG with Custom AI models
Infrastructure Challenges in Scaling RAG with Custom AI modelsInfrastructure Challenges in Scaling RAG with Custom AI models
Infrastructure Challenges in Scaling RAG with Custom AI models
Zilliz
 
Programming Foundation Models with DSPy - Meetup Slides
Programming Foundation Models with DSPy - Meetup SlidesProgramming Foundation Models with DSPy - Meetup Slides
Programming Foundation Models with DSPy - Meetup Slides
Zilliz
 
GraphRAG for Life Science to increase LLM accuracy
GraphRAG for Life Science to increase LLM accuracyGraphRAG for Life Science to increase LLM accuracy
GraphRAG for Life Science to increase LLM accuracy
Tomaz Bratanic
 
Monitoring and Managing Anomaly Detection on OpenShift.pdf
Monitoring and Managing Anomaly Detection on OpenShift.pdfMonitoring and Managing Anomaly Detection on OpenShift.pdf
Monitoring and Managing Anomaly Detection on OpenShift.pdf
Tosin Akinosho
 
Essentials of Automations: The Art of Triggers and Actions in FME
Essentials of Automations: The Art of Triggers and Actions in FMEEssentials of Automations: The Art of Triggers and Actions in FME
Essentials of Automations: The Art of Triggers and Actions in FME
Safe Software
 
AI-Powered Food Delivery Transforming App Development in Saudi Arabia.pdf
AI-Powered Food Delivery Transforming App Development in Saudi Arabia.pdfAI-Powered Food Delivery Transforming App Development in Saudi Arabia.pdf
AI-Powered Food Delivery Transforming App Development in Saudi Arabia.pdf
Techgropse Pvt.Ltd.
 
TrustArc Webinar - 2024 Global Privacy Survey
TrustArc Webinar - 2024 Global Privacy SurveyTrustArc Webinar - 2024 Global Privacy Survey
TrustArc Webinar - 2024 Global Privacy Survey
TrustArc
 
Microsoft - Power Platform_G.Aspiotis.pdf
Microsoft - Power Platform_G.Aspiotis.pdfMicrosoft - Power Platform_G.Aspiotis.pdf
Microsoft - Power Platform_G.Aspiotis.pdf
Uni Systems S.M.S.A.
 

Recently uploaded (20)

20240607 QFM018 Elixir Reading List May 2024
20240607 QFM018 Elixir Reading List May 202420240607 QFM018 Elixir Reading List May 2024
20240607 QFM018 Elixir Reading List May 2024
 
Ocean lotus Threat actors project by John Sitima 2024 (1).pptx
Ocean lotus Threat actors project by John Sitima 2024 (1).pptxOcean lotus Threat actors project by John Sitima 2024 (1).pptx
Ocean lotus Threat actors project by John Sitima 2024 (1).pptx
 
Columbus Data & Analytics Wednesdays - June 2024
Columbus Data & Analytics Wednesdays - June 2024Columbus Data & Analytics Wednesdays - June 2024
Columbus Data & Analytics Wednesdays - June 2024
 
HCL Notes and Domino License Cost Reduction in the World of DLAU
HCL Notes and Domino License Cost Reduction in the World of DLAUHCL Notes and Domino License Cost Reduction in the World of DLAU
HCL Notes and Domino License Cost Reduction in the World of DLAU
 
Uni Systems Copilot event_05062024_C.Vlachos.pdf
Uni Systems Copilot event_05062024_C.Vlachos.pdfUni Systems Copilot event_05062024_C.Vlachos.pdf
Uni Systems Copilot event_05062024_C.Vlachos.pdf
 
GenAI Pilot Implementation in the organizations
GenAI Pilot Implementation in the organizationsGenAI Pilot Implementation in the organizations
GenAI Pilot Implementation in the organizations
 
Fueling AI with Great Data with Airbyte Webinar
Fueling AI with Great Data with Airbyte WebinarFueling AI with Great Data with Airbyte Webinar
Fueling AI with Great Data with Airbyte Webinar
 
20240609 QFM020 Irresponsible AI Reading List May 2024
20240609 QFM020 Irresponsible AI Reading List May 202420240609 QFM020 Irresponsible AI Reading List May 2024
20240609 QFM020 Irresponsible AI Reading List May 2024
 
Building Production Ready Search Pipelines with Spark and Milvus
Building Production Ready Search Pipelines with Spark and MilvusBuilding Production Ready Search Pipelines with Spark and Milvus
Building Production Ready Search Pipelines with Spark and Milvus
 
National Security Agency - NSA mobile device best practices
National Security Agency - NSA mobile device best practicesNational Security Agency - NSA mobile device best practices
National Security Agency - NSA mobile device best practices
 
Taking AI to the Next Level in Manufacturing.pdf
Taking AI to the Next Level in Manufacturing.pdfTaking AI to the Next Level in Manufacturing.pdf
Taking AI to the Next Level in Manufacturing.pdf
 
Presentation of the OECD Artificial Intelligence Review of Germany
Presentation of the OECD Artificial Intelligence Review of GermanyPresentation of the OECD Artificial Intelligence Review of Germany
Presentation of the OECD Artificial Intelligence Review of Germany
 
Infrastructure Challenges in Scaling RAG with Custom AI models
Infrastructure Challenges in Scaling RAG with Custom AI modelsInfrastructure Challenges in Scaling RAG with Custom AI models
Infrastructure Challenges in Scaling RAG with Custom AI models
 
Programming Foundation Models with DSPy - Meetup Slides
Programming Foundation Models with DSPy - Meetup SlidesProgramming Foundation Models with DSPy - Meetup Slides
Programming Foundation Models with DSPy - Meetup Slides
 
GraphRAG for Life Science to increase LLM accuracy
GraphRAG for Life Science to increase LLM accuracyGraphRAG for Life Science to increase LLM accuracy
GraphRAG for Life Science to increase LLM accuracy
 
Monitoring and Managing Anomaly Detection on OpenShift.pdf
Monitoring and Managing Anomaly Detection on OpenShift.pdfMonitoring and Managing Anomaly Detection on OpenShift.pdf
Monitoring and Managing Anomaly Detection on OpenShift.pdf
 
Essentials of Automations: The Art of Triggers and Actions in FME
Essentials of Automations: The Art of Triggers and Actions in FMEEssentials of Automations: The Art of Triggers and Actions in FME
Essentials of Automations: The Art of Triggers and Actions in FME
 
AI-Powered Food Delivery Transforming App Development in Saudi Arabia.pdf
AI-Powered Food Delivery Transforming App Development in Saudi Arabia.pdfAI-Powered Food Delivery Transforming App Development in Saudi Arabia.pdf
AI-Powered Food Delivery Transforming App Development in Saudi Arabia.pdf
 
TrustArc Webinar - 2024 Global Privacy Survey
TrustArc Webinar - 2024 Global Privacy SurveyTrustArc Webinar - 2024 Global Privacy Survey
TrustArc Webinar - 2024 Global Privacy Survey
 
Microsoft - Power Platform_G.Aspiotis.pdf
Microsoft - Power Platform_G.Aspiotis.pdfMicrosoft - Power Platform_G.Aspiotis.pdf
Microsoft - Power Platform_G.Aspiotis.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