SlideShare a Scribd company logo
Continuous delivery &
DevOps with Jenkins and
Puppet
Everything as Code
Brian Dawson & Carl Caum
Carl Caum
Technical Marketing Manager
Puppet
Brian Dawson
DevOps Evangelist
CloudBees
DevOps
It’s about giving a shit
Sound familiar?
5
“Why won’t Ops just make this
change? It’s small”
“Don’t the developers know
anything about logging?”
“Why does it take so long for Ops
to deploy this code?”
“Why can’t the developers
build packages?”
“The devs don’t care that this
code doesn’t scale.”
“Ops won’t let us use the latest
Ruby for some reason.”
The cause
6
Dev Ops
Empathy rarely
extends beyond our
line of sight.
The solution
8
Dev OpsDevOps
…. except not really though
Product Delivery Process
Problem
Statement
Problem
Prioritization
Design /
Development Deployment Monitoring
Engineering
OpsProduct
management DevOps?DevOps?
DevOps?
Shared goals with
transparency and
accountability build
a shared sense of
purpose.
DevOps
Why are we even talking about it?
PuppetConf 2016: Continuous Delivery and DevOps with Jenkins and Puppet Enterprise – Carl Caum, Puppet & Brian Dawson, CloudBees
High-performing organizations
are decisively outperforming
their lower-performing peers
in terms of throughput.
Because they address security
at every stage, high-performing
teams spend less time fixing
security issues.
Get your copy of the
2016 State of DevOps Report
puppet.com/devops-report-2016
DevOps
Great...err, but what is it?
17
The DevOps Trinity
17
Upstream Downstream
People &
Culture
Process &
Practices
Tools &
Technology
Agile, Scrum, Kanban PMBOK, ITIL, etc
Point Tools,
Grassroots, Rapid Change
Move Fast, Innovate Maintain Quality Stability, Uptime
Enterprise class, Stable,
Repeatable, traceable
Define Plan Code Build Integrate Test Release Deploy Operate
Culture
Automation
Measurement
Sharing
The Three Ways - Gene Kim
Systems Thinking
Understand the performance of the entire system, not each
individual silo
20
Amplify Feedback Loops
Build quick, short, feedback into the process
21
Culture of Experimentation and Learning
Enforce a culture of continuous experimentation, risk taking, and
learning.
22
Continuous Delivery
Prove every change is deployable
24
The DevOps Trinity and the Chasms
24
Upstream Downstream
People &
Culture
Process &
Practices
Tools &
Technology
Agile, Scrum, Kanban PMBOK, ITIL, Waterfall etc
Point Tools,
Grassroots, Rapid Change
Move Fast, Innovate Maintain Quality Stability, Uptime
Enterprise class, Corp
procurement, Stable
Define Plan Code Build Integrate Test Release Deploy Operate
25
The Foundation
25
Upstream Downstream
People &
Culture
Process &
Practices
Tools &
Technology
Agile, Scrum, Kanban PMBOK, ITIL, Waterfall etc
Point Tools,
Grassroots, Rapid Change
Move Fast, Innovate Maintain Quality Stability, Uptime
Enterprise class, Corp
procurement, Stable
Define Plan Code Build Integrate Test Release Deploy Operate
https://www.perforce.com/pdf/continuous-delivery-report.pdf
26
27
continuous
deployment
continuous
deliverycontinuous integration
DevOps → Cultural focus on shared objectives
Reliable
Repeatable
Fast
agile
CD and DevOps in Context
27
28
Software changes
continuously
deployed to live
production
continuous
deployment
Software changes
continuously delivered to
stakeholders in any
environment
continuous
deliverycontinuous integration
Automated commit, build and testing of
code in the development environment
Feedback
Rapid Changes
Discipline
agile
An incremental
approach to
identifying,
prioritizing, and
coordinating feature
development
Development Production / Prod-like Live Production
Env.Stage
Release Deploy Monitor
Upstream (left) Downstream (right)
Define Plan Code Commit Build Non-Func Test Scan Integrate Int. Test Package Deploy Acct. Test Load Test
Change Mgt.
Production
CD and DevOps in Context
28
DevOps → Cultural focus on shared objectives
Continuous delivery doesn’t mean every change is
deployed to production ASAP
But with every change it is release ready
(which includes depoyable!)
30
Automation is the Key
Photo	courtesy	of	Steve	Jurvetson	via	Flickr
Jenkins
Continuous integration and delivery tool
32
Complex Delivery Pipelines
Delivery of App and Config
Robust and Highly Available
Results Report
SOURCE
CODE
CONTROL
SYSTEM
Code
Commit
</>
Development Production
Continuous Integration/Delivery
Commit Build Test Stage Deploy
P
P
P
Jenkins – #1 Automation Platform for CI àCD
3333© 2016 CloudBees, Inc. All Rights Reserved.
Code & Commit Build & Config Scan & Test Release Deploy
Over 1.2 Million Users 1200+ plugins cover every
stage of delivery
Jenkins is the Hub of Continuous Delivery
Why?
It connects all
the things
It’s extensible
Source: State of Jenkins Survey Sept. 2015
How Do We Know?
Source: 2016 Jenkins Community Survey
Mission Possible: Make CD Accessible to All
Cross functional
Accessible
Simplified
Visual
Maintainable
Pipeline-as-code
Declarative Pipeline
Blue Ocean
+
Infrastructure-as-code
The future of CD
4141
Drive CD with Jenkins Pipeline
Development Production
Commit Build Stage Deploy
? ?
Pipelines Need:
P  Branching
P  Looping
P  Restarts
P  Checkpoints
P  Manual Input
Sonar Test
Selenium Test
Perf Test
Jenkins Pipeline
Pipeline as Code
Introduce “pipeline” as a first class in Jenkins
Codify stages into an explicit Jenkinsfile in your source repository
Resumability/durability of the pipeline state
Extend the DSL with your own steps
github.com/jenkinsci/pipeline-examples
43
Pipeline DSL
node('docker')	{	
				checkout	scm	
	
				/*	Grab	the	abbreviated	SHA1	of	our	pipeline’s	commit.*/	
				sh	'git	rev-parse	HEAD	>	GIT_COMMIT'	
				def	shortCommit	=	readFile('GIT_COMMIT').take(6)	
	
				stage	'Build'	
				def	image	=	docker.build("jenkinsciinfra/bind:build-${shortCommit}")	
	
				stage	'Deploy'	
				image.push()	
}
44
Jenkins Pipeline Stage View
Restartable Checkpoints
Artifact Downloads
45
Declarative Pipeline
Pipelines can now be defined with a simpler syntax.
46
Blue Ocean - Pipeline Creation
47
Blue Ocean - Pipeline Visualization
48
Tools & Technologies enable “crossing the chasm”
Normalized
✓  Language and
practice agnostic
✓  Not Dev or Ops
specific
✓  Distributed
Rich Integration
Support
✓  Tools as
microservices
✓  Modular
Automated
✓  Repeatability
✓  Reportability
✓  Flexibility
Confidence In
Downstream
Deliverables
✓  Support supply-
chain
✓  Traceability
✓  Immutability
✓  Measure and report
Scale To
Enterprise
✓  Cross-domain
visibility metrics
✓  Security and
governance
✓  Supported
49
Puppet Enterprise
And Jenkins
Promote & Deploy with Puppet
The toolchain
… across all technologies.
Version control
Infrastructure
automation
Continuous Integration
Deployment
automation
Monitoring
and
others
…
and
others
…
and
others
…
Where to start
Infrastructure as Code
Collaboration IterationFast Feedback Visibility
Infrastructure
Automation
Version Control
& Peer Review
Continuous
Integration &
Delivery
Automated
Testing
Deployment
Automation
Infrastructure as code and
continuous delivery pipelines push
quality to the left, getting ever
closer to the keyboard.
Push quality left
●  Infrastructure code is portable
●  Infrastructure code is repeatable
●  Puppet is idempotent (same result
regardless of beginning state)
●  Puppet is declarative (less DevOoops)
Puppet Enterprise
Orchestration
Example application
App relies on multiple services that span infrastructure
Glass Fish F5 LB
App API
Kerberos
SSH
Log stash
WebSphere
App API
SSH
Log stash
F5 LB MS SQL
Database
HTTP
Example application
Use Puppet language to model your application
WebSphereApp API
SSHLog stash
F5 LB
MS SQL
●  Services
●  Relationships
●  Dependencies
●  Instances
–  Dev, Staging, Production, etc.
Example application
Puppet Enterprise determines order and deploys your application.
Puppet Enterprise
Code Management
Code management
●  Know exactly when your Puppet code
deployments are complete
●  Control who can deploy code into
what areas with built-in integration to
Role-Based Access Control
Deploy code confidently with a new command line interface and API
Jenkinsfile
Everything as code
PuppetConf 2016: Continuous Delivery and DevOps with Jenkins and Puppet Enterprise – Carl Caum, Puppet & Brian Dawson, CloudBees
PuppetConf 2016: Continuous Delivery and DevOps with Jenkins and Puppet Enterprise – Carl Caum, Puppet & Brian Dawson, CloudBees
Demo
So what?
Use cases
Infrastructure Pipelinehttps://github.com/puppetlabs/jenkins-pipeline-puppet-enterprise-plugin/blob/master/
examples/Jenkinsfile-infrastructure_pipeline
Application Deploymentshttps://github.com/puppetlabs/jenkins-pipeline-puppet-enterprise-plugin/blob/master/
examples/Jenkinsfile-application_service_pipeline
Canary Deploymentshttps://github.com/puppetlabs/jenkins-pipeline-puppet-enterprise-plugin/blob/master/
examples/Jenkinsfile-canary_deployments
Phased Deploymentshttps://github.com/puppetlabs/jenkins-pipeline-puppet-enterprise-plugin/blob/master/
examples/Jenkinsfile-canary_deployments
Jenkins Update Center
Available today
Tier 2 CloudBees Certified
In the next few weeks
Questions
https://puppet.com/Jenkins
https://go.cloudbees.com

More Related Content

PDF
PuppetConf 2016: Successful Puppet Implementation in Large Organizations – Ja...
Puppet
 
PDF
Introduction to DevOps Tools | DevOps Training | DevOps Tutorial for Beginner...
Edureka!
 
PDF
Introduction to CICD
Knoldus Inc.
 
PPTX
Chef for DevOps - an Introduction
Sanjeev Sharma
 
PDF
Intro to DevOps 4 undergraduates
Liran Levy
 
PPTX
DevOps introduction
Mettje Heegstra
 
PPTX
Jenkins - From Continuous Integration to Continuous Delivery
Virendra Bhalothia
 
PPTX
Fundamentals of DevOps and CI/CD
Batyr Nuryyev
 
PuppetConf 2016: Successful Puppet Implementation in Large Organizations – Ja...
Puppet
 
Introduction to DevOps Tools | DevOps Training | DevOps Tutorial for Beginner...
Edureka!
 
Introduction to CICD
Knoldus Inc.
 
Chef for DevOps - an Introduction
Sanjeev Sharma
 
Intro to DevOps 4 undergraduates
Liran Levy
 
DevOps introduction
Mettje Heegstra
 
Jenkins - From Continuous Integration to Continuous Delivery
Virendra Bhalothia
 
Fundamentals of DevOps and CI/CD
Batyr Nuryyev
 

What's hot (20)

PDF
CI/CD (DevOps) 101
Hazzim Anaya
 
PDF
Continuous Delivery Distilled
Matt Callanan
 
PDF
CI and CD Across the Enterprise with Jenkins (devops.com Nov 2014)
CloudBees
 
PPT
How to Build a DevOps Toolchain
IBM UrbanCode Products
 
PDF
"DevOps > CI+CD "
Innovation Roots
 
PPTX
CI/CD Best Practices for Your DevOps Journey
DevOps.com
 
PPTX
From Continuous Integration to DevOps
IBM UrbanCode Products
 
PDF
What is Continuous Integration? | Continuous Integration with Jenkins | DevOp...
Edureka!
 
PDF
Journée DevOps : De l'intégration continue au déploiement continu avec Jenkins
Publicis Sapient Engineering
 
PDF
Standardizing Jenkins with CloudBees Jenkins Team
Deborah Schalm
 
PPTX
Devops
lakmal123
 
PDF
Continuous Delivery vs Continuous Deployment | DevOps Methodology | Devops Tr...
Edureka!
 
PPTX
CI/CD
AmitDhodi
 
PPTX
DevOps - Continuous Integration, Continuous Delivery - let's talk
D Z
 
PDF
CI CD Pipeline Using Jenkins | Continuous Integration and Deployment | DevOps...
Edureka!
 
PDF
Devops course content
Thota Ravindra Reddy
 
PPTX
Why to docker
Karthik Gaekwad
 
PPTX
Transforming Organizations with CI/CD
Cprime
 
PPTX
Introduction To DevOps | Devops Tutorial For Beginners | DevOps Training For ...
Simplilearn
 
PDF
What manufacturing teaches about DevOps
Gordon Haff
 
CI/CD (DevOps) 101
Hazzim Anaya
 
Continuous Delivery Distilled
Matt Callanan
 
CI and CD Across the Enterprise with Jenkins (devops.com Nov 2014)
CloudBees
 
How to Build a DevOps Toolchain
IBM UrbanCode Products
 
"DevOps > CI+CD "
Innovation Roots
 
CI/CD Best Practices for Your DevOps Journey
DevOps.com
 
From Continuous Integration to DevOps
IBM UrbanCode Products
 
What is Continuous Integration? | Continuous Integration with Jenkins | DevOp...
Edureka!
 
Journée DevOps : De l'intégration continue au déploiement continu avec Jenkins
Publicis Sapient Engineering
 
Standardizing Jenkins with CloudBees Jenkins Team
Deborah Schalm
 
Devops
lakmal123
 
Continuous Delivery vs Continuous Deployment | DevOps Methodology | Devops Tr...
Edureka!
 
CI/CD
AmitDhodi
 
DevOps - Continuous Integration, Continuous Delivery - let's talk
D Z
 
CI CD Pipeline Using Jenkins | Continuous Integration and Deployment | DevOps...
Edureka!
 
Devops course content
Thota Ravindra Reddy
 
Why to docker
Karthik Gaekwad
 
Transforming Organizations with CI/CD
Cprime
 
Introduction To DevOps | Devops Tutorial For Beginners | DevOps Training For ...
Simplilearn
 
What manufacturing teaches about DevOps
Gordon Haff
 
Ad

Viewers also liked (19)

PPTX
Automated Deployment Pipeline using Jenkins, Puppet, Mcollective and AWS
Bamdad Dashtban
 
PPTX
Continuous Development with Jenkins - Stephen Connolly at PuppetCamp Dublin '12
Puppet
 
PDF
Build and deploy to the cloud using NetflixOSS (Gradle Summit 2016)
Mike McGarr
 
PPTX
Delivery Pipeline as Code: using Jenkins 2.0 Pipeline
Slawa Giterman
 
PPTX
Introducing DevOps
Nishanth K Hydru
 
PPTX
DevOps and Continuous Delivery Reference Architectures (including Nexus and o...
Sonatype
 
PDF
PuppetConf track overview: Puppet Applied
Puppet
 
PPTX
Scaling Continuous Integration for Puppet
Salesforce Engineering
 
PDF
Drupal Continuous Integration and devops - Beyond Jenkins
Promet Source
 
PDF
Building and Testing from Scratch a Puppet Environment with Docker - PuppetCo...
Puppet
 
PDF
Trust & Transparency – Foundations for Europe’s Best Workplace
Lean Enterprise Software and Systems Conference
 
PDF
Agile Deployments with Puppet
Puppet
 
PPTX
It All Started With a Wager About System Upgrades
Threat Stack
 
PDF
Building a deployment pipeline
Noam Shochat
 
PDF
Highly efficient container orchestration and continuous delivery with DC/OS a...
Christian Bogeberg
 
PDF
Continuous Delivery Pipeline - Patterns and Anti-patterns
Sonatype
 
PDF
Building Self-Defending Applications With OWASP AppSensor JavaOne 2016
jtmelton
 
PDF
Puppet & Jenkins
Matthew Barr
 
PDF
Ultimate DevOps - Jenkins Enterprise & Red Hat OpenShift
Andy Pemberton
 
Automated Deployment Pipeline using Jenkins, Puppet, Mcollective and AWS
Bamdad Dashtban
 
Continuous Development with Jenkins - Stephen Connolly at PuppetCamp Dublin '12
Puppet
 
Build and deploy to the cloud using NetflixOSS (Gradle Summit 2016)
Mike McGarr
 
Delivery Pipeline as Code: using Jenkins 2.0 Pipeline
Slawa Giterman
 
Introducing DevOps
Nishanth K Hydru
 
DevOps and Continuous Delivery Reference Architectures (including Nexus and o...
Sonatype
 
PuppetConf track overview: Puppet Applied
Puppet
 
Scaling Continuous Integration for Puppet
Salesforce Engineering
 
Drupal Continuous Integration and devops - Beyond Jenkins
Promet Source
 
Building and Testing from Scratch a Puppet Environment with Docker - PuppetCo...
Puppet
 
Trust & Transparency – Foundations for Europe’s Best Workplace
Lean Enterprise Software and Systems Conference
 
Agile Deployments with Puppet
Puppet
 
It All Started With a Wager About System Upgrades
Threat Stack
 
Building a deployment pipeline
Noam Shochat
 
Highly efficient container orchestration and continuous delivery with DC/OS a...
Christian Bogeberg
 
Continuous Delivery Pipeline - Patterns and Anti-patterns
Sonatype
 
Building Self-Defending Applications With OWASP AppSensor JavaOne 2016
jtmelton
 
Puppet & Jenkins
Matthew Barr
 
Ultimate DevOps - Jenkins Enterprise & Red Hat OpenShift
Andy Pemberton
 
Ad

Similar to PuppetConf 2016: Continuous Delivery and DevOps with Jenkins and Puppet Enterprise – Carl Caum, Puppet & Brian Dawson, CloudBees (20)

PDF
Agile Bodensee - Testautomation & Continuous Delivery Workshop
Michael Palotas
 
PPTX
Agile Chennai 2021 | Achieving High DevOps Maturity through Platform Engineer...
AgileNetwork
 
PDF
TMF2014 CI-CD Workshop Michael Palotas
KJR
 
PDF
CICD_BestPractices.pdf
motupalli2
 
PDF
DevOps-Ebook
PrathapM32
 
PPTX
CICD Pipeline - AWS Azure
Ratan Das
 
PPTX
Perforce on Tour 2015 - Optimising the Developer Pipeline: Deliver Faster & ...
Perforce
 
PPTX
Devops CI-CD pipeline with Containers
NuSpace
 
PPTX
Continuous delivery applied (RJUG)
Mike McGarr
 
PPTX
Continues Integration and Continuous Delivery with Azure DevOps - Deploy Anyt...
Janusz Nowak
 
PDF
Scale security for a dollar or less
Mohammed A. Imran
 
PPTX
Azure DevOps in Action
Callon Campbell
 
PDF
Strengthen and Scale Security for a dollar or less
Mohammed A. Imran
 
PPTX
Tour of Azure DevOps
Callon Campbell
 
PDF
gopaddle-meetup
Sujai Sivasamy
 
PPTX
DevOps
RavneetArora
 
PDF
Top CI/CD Tools Every QA Automation Engineer Should Use
digitaljignect
 
PDF
Devops : Automate Your Infrastructure with Puppet
Edureka!
 
PDF
Introduction to dev ops
Abdul Rahim
 
PPTX
Innovate 2014 DevOps: Release and Deploy Keynote
Daniel Berg
 
Agile Bodensee - Testautomation & Continuous Delivery Workshop
Michael Palotas
 
Agile Chennai 2021 | Achieving High DevOps Maturity through Platform Engineer...
AgileNetwork
 
TMF2014 CI-CD Workshop Michael Palotas
KJR
 
CICD_BestPractices.pdf
motupalli2
 
DevOps-Ebook
PrathapM32
 
CICD Pipeline - AWS Azure
Ratan Das
 
Perforce on Tour 2015 - Optimising the Developer Pipeline: Deliver Faster & ...
Perforce
 
Devops CI-CD pipeline with Containers
NuSpace
 
Continuous delivery applied (RJUG)
Mike McGarr
 
Continues Integration and Continuous Delivery with Azure DevOps - Deploy Anyt...
Janusz Nowak
 
Scale security for a dollar or less
Mohammed A. Imran
 
Azure DevOps in Action
Callon Campbell
 
Strengthen and Scale Security for a dollar or less
Mohammed A. Imran
 
Tour of Azure DevOps
Callon Campbell
 
gopaddle-meetup
Sujai Sivasamy
 
DevOps
RavneetArora
 
Top CI/CD Tools Every QA Automation Engineer Should Use
digitaljignect
 
Devops : Automate Your Infrastructure with Puppet
Edureka!
 
Introduction to dev ops
Abdul Rahim
 
Innovate 2014 DevOps: Release and Deploy Keynote
Daniel Berg
 

More from Puppet (20)

PPTX
Puppet Community Day: Planning the Future Together
Puppet
 
PPTX
The Evolution of Puppet: Key Changes and Modernization Tips
Puppet
 
PPTX
Can You Help Me Upgrade to Puppet 8? Tips, Tools & Best Practices for Your Up...
Puppet
 
PPTX
Bolt Dynamic Inventory: Making Puppet Easier
Puppet
 
PPTX
Customizing Reporting with the Puppet Report Processor
Puppet
 
PPTX
Puppet at ConfigMgmtCamp 2025 Sponsor Deck
Puppet
 
PPTX
The State of Puppet in 2025: A Presentation from Developer Relations Lead Dav...
Puppet
 
PPTX
Let Red be Red and Green be Green: The Automated Workflow Restarter in GitHub...
Puppet
 
PDF
Puppet camp2021 testing modules and controlrepo
Puppet
 
PPTX
Puppetcamp r10kyaml
Puppet
 
PDF
2021 04-15 operational verification (with notes)
Puppet
 
PPTX
Puppet camp vscode
Puppet
 
PDF
Modules of the twenties
Puppet
 
PDF
Applying Roles and Profiles method to compliance code
Puppet
 
PPTX
KGI compliance as-code approach
Puppet
 
PDF
Enforce compliance policy with model-driven automation
Puppet
 
PDF
Keynote: Puppet camp compliance
Puppet
 
PPTX
Automating it management with Puppet + ServiceNow
Puppet
 
PPTX
Puppet: The best way to harden Windows
Puppet
 
PPTX
Simplified Patch Management with Puppet - Oct. 2020
Puppet
 
Puppet Community Day: Planning the Future Together
Puppet
 
The Evolution of Puppet: Key Changes and Modernization Tips
Puppet
 
Can You Help Me Upgrade to Puppet 8? Tips, Tools & Best Practices for Your Up...
Puppet
 
Bolt Dynamic Inventory: Making Puppet Easier
Puppet
 
Customizing Reporting with the Puppet Report Processor
Puppet
 
Puppet at ConfigMgmtCamp 2025 Sponsor Deck
Puppet
 
The State of Puppet in 2025: A Presentation from Developer Relations Lead Dav...
Puppet
 
Let Red be Red and Green be Green: The Automated Workflow Restarter in GitHub...
Puppet
 
Puppet camp2021 testing modules and controlrepo
Puppet
 
Puppetcamp r10kyaml
Puppet
 
2021 04-15 operational verification (with notes)
Puppet
 
Puppet camp vscode
Puppet
 
Modules of the twenties
Puppet
 
Applying Roles and Profiles method to compliance code
Puppet
 
KGI compliance as-code approach
Puppet
 
Enforce compliance policy with model-driven automation
Puppet
 
Keynote: Puppet camp compliance
Puppet
 
Automating it management with Puppet + ServiceNow
Puppet
 
Puppet: The best way to harden Windows
Puppet
 
Simplified Patch Management with Puppet - Oct. 2020
Puppet
 

Recently uploaded (20)

PDF
A Strategic Analysis of the MVNO Wave in Emerging Markets.pdf
IPLOOK Networks
 
PDF
Software Development Methodologies in 2025
KodekX
 
PDF
Automating ArcGIS Content Discovery with FME: A Real World Use Case
Safe Software
 
PDF
Research-Fundamentals-and-Topic-Development.pdf
ayesha butalia
 
PDF
Make GenAI investments go further with the Dell AI Factory
Principled Technologies
 
PPTX
Applied-Statistics-Mastering-Data-Driven-Decisions.pptx
parmaryashparmaryash
 
PDF
Responsible AI and AI Ethics - By Sylvester Ebhonu
Sylvester Ebhonu
 
PPTX
Simple and concise overview about Quantum computing..pptx
mughal641
 
PDF
Unlocking the Future- AI Agents Meet Oracle Database 23ai - AIOUG Yatra 2025.pdf
Sandesh Rao
 
PPTX
Agile Chennai 18-19 July 2025 | Emerging patterns in Agentic AI by Bharani Su...
AgileNetwork
 
PDF
CIFDAQ's Market Wrap : Bears Back in Control?
CIFDAQ
 
PPTX
The-Ethical-Hackers-Imperative-Safeguarding-the-Digital-Frontier.pptx
sujalchauhan1305
 
PDF
The Future of Artificial Intelligence (AI)
Mukul
 
PDF
How ETL Control Logic Keeps Your Pipelines Safe and Reliable.pdf
Stryv Solutions Pvt. Ltd.
 
PDF
Data_Analytics_vs_Data_Science_vs_BI_by_CA_Suvidha_Chaplot.pdf
CA Suvidha Chaplot
 
PDF
Accelerating Oracle Database 23ai Troubleshooting with Oracle AHF Fleet Insig...
Sandesh Rao
 
PDF
Economic Impact of Data Centres to the Malaysian Economy
flintglobalapac
 
PDF
AI-Cloud-Business-Management-Platforms-The-Key-to-Efficiency-Growth.pdf
Artjoker Software Development Company
 
PPTX
OA presentation.pptx OA presentation.pptx
pateldhruv002338
 
PDF
Brief History of Internet - Early Days of Internet
sutharharshit158
 
A Strategic Analysis of the MVNO Wave in Emerging Markets.pdf
IPLOOK Networks
 
Software Development Methodologies in 2025
KodekX
 
Automating ArcGIS Content Discovery with FME: A Real World Use Case
Safe Software
 
Research-Fundamentals-and-Topic-Development.pdf
ayesha butalia
 
Make GenAI investments go further with the Dell AI Factory
Principled Technologies
 
Applied-Statistics-Mastering-Data-Driven-Decisions.pptx
parmaryashparmaryash
 
Responsible AI and AI Ethics - By Sylvester Ebhonu
Sylvester Ebhonu
 
Simple and concise overview about Quantum computing..pptx
mughal641
 
Unlocking the Future- AI Agents Meet Oracle Database 23ai - AIOUG Yatra 2025.pdf
Sandesh Rao
 
Agile Chennai 18-19 July 2025 | Emerging patterns in Agentic AI by Bharani Su...
AgileNetwork
 
CIFDAQ's Market Wrap : Bears Back in Control?
CIFDAQ
 
The-Ethical-Hackers-Imperative-Safeguarding-the-Digital-Frontier.pptx
sujalchauhan1305
 
The Future of Artificial Intelligence (AI)
Mukul
 
How ETL Control Logic Keeps Your Pipelines Safe and Reliable.pdf
Stryv Solutions Pvt. Ltd.
 
Data_Analytics_vs_Data_Science_vs_BI_by_CA_Suvidha_Chaplot.pdf
CA Suvidha Chaplot
 
Accelerating Oracle Database 23ai Troubleshooting with Oracle AHF Fleet Insig...
Sandesh Rao
 
Economic Impact of Data Centres to the Malaysian Economy
flintglobalapac
 
AI-Cloud-Business-Management-Platforms-The-Key-to-Efficiency-Growth.pdf
Artjoker Software Development Company
 
OA presentation.pptx OA presentation.pptx
pateldhruv002338
 
Brief History of Internet - Early Days of Internet
sutharharshit158
 

PuppetConf 2016: Continuous Delivery and DevOps with Jenkins and Puppet Enterprise – Carl Caum, Puppet & Brian Dawson, CloudBees