SlideShare a Scribd company logo
1 of 49
Don’t Mind the Gap
Doing DevOps in an Air-gapped World
Galen Emery
Federal Solutions Architect
3/8/2017
Who am I?
I work with the Federal Government and
Integrators
DoD, Civilian, or IC? Yes.
I help users understand how to build and
structure their infrastructure (using Chef) to
solve their problems
Former Windows Server Admin
Been with Chef since March 2014
Born and raised in Seattle (Nathen, you’re
wrong about Seattle crab)
What we cover
What is “air-gapped”?
What issues do we encounter?
Assumptions
How to solve it (technical)
How to solve it (process)
What about … ?
Food for Thought
What is air-gapped?
air-gapped
adjective
(of a computer) having no direct
connection to the Internet or to any
other computer that is connected to
the Internet, for security reasons.
"a USB drive or other hardware
approach would be required to
infect the air-gapped machine"
What about mitm?
• Corporate man-in-the-middle
• Terminates SSL sessions and re-initiates
• Often includes packet inspection
• Requires you to trust its generated certificates
• May still include a firewall blocking access to sites
Maybe its just a firewall
• Restricts access to:
• Github or gist.github.com
• slack
• Pastebin
• Rubygems.org / some other artifact repository
• etc
No restrictions?
• Congratulations!
• You might still have a
firewall/proxy, its just permissive
• Do you trust those systems will
be up when you need them?
Issues
Getting stuff into production
• How do we “cross the gap”?
• How do we distribute it?
• How do we ensure its integrity?
Process?!
You want to talk about PROCESS? You kidding me?!
I just hope we can make one change!
Velocity
How do we achieve velocity if we burn a DVD for every change?
Or if a proxy is inspecting all of our packets, every time we download a
package?
Okay, I’m not air-gapped but…
• I have a firewall between my systems and the internet
• I have a proxy that inspects all traffic and slows me down
• I don’t have {level of access necessary} to make changes
• Tool {X} does not understand authenticating proxies
Ground Rules
You know that I know that you know…
• How you get code into your
high-side environment
Everything is code
• If its source code, it goes into SCM
• If it is an artifact, it goes into artifact store, and has a checksum
• We can (and do) write tests
• We build a pipeline
Solution (High-Level)
Go from Low to High
Assume you don’t have internet
• Even if you do
• Build this into your pipeline
• Test this on the low side
• Your systems should NOT assume internet access
• Most tooling by default assumes it does
Do this work on the low-side
Build your pipeline in a way that removes internet access for your systems,
they must grab their code and artifacts locally
If you can build your infrastructure without internet access in Dev, you can
absolutely do it in Prod
Protect the Data, not the Infra
The data is sensitive, not the infrastructure itself. Keep the data in the high-
side, but ensure that you build your infrastructure with the same code in Dev
and Prod
Workstation
This is your “loading dock” for the rest of the infrastructure
Everything comes through here
It needs:
• A way to serve files (directly or indirectly)
• A way to create artifacts (zip, tar, etc)
• built programmatically
Workstation
Use the workstation to:
• Stand up your artifact repo
• Stand up your configuration management infra
• Publish your artifacts
• Run tests
Workstation (Chef Example)
Bring in to the workstation a zip/tar with the following
• ChefDK
• A FTP/SSH/SCP Server binary (if it doesn’t already exist on your box)
• Your cookbooks
• Any extra gems necessary
• Chef packages (client, server)
Use Chef Zero to stand up your FTP Server, populate it with the artifacts and
prepare it for use in the rest of the process
What about dependencies?
I could download, transfer, attempt to install, download, transfer, attempt to
install..
I could skip using the gem and instead write it myself
I can create a full gem mirror of all 80,000+ gems on rubygems.org
I can install what I need into a directory, and then move that directory over as
an artifact
Simplest is to create an artifact
I used “gem install –i $PATH $GEM” && tar cf $PATH
Its not pretty but it works
Benefit is: I have a moment-in-time artifact of the gems I’m using
Ideally you’d create this at the end of your development pipeline
You should be using an artifact repo
• Use something that can store and manage your artifacts
• You can version your artifacts
• Often supports the correct dependency structure for your artifacts
Once you have Workstation + Artifact
• You can setup your configuration management
• Use a tool, running from your workstation to setup the infrastructure you
need
• Example
• Chef Provisioning SSH
• Doesn’t require internet access
• Can bootstrap Chef from a FTP or SCP server
Everything is set, right?
• Have workstation, Config Mgmt + Artifact store
• But I haven’t told any of my infrastructure that it shouldn’t reach out to the
internet for X, Y or Z
Tell your systems to stay inside
• Remove unreachable Satellite repositories
• If using ruby, remove rubygems from your sources. Add your artifact store
• If using Chef, update berksfile to an internal supermarket
• If using X, update Y to Z
• Don’t do this manually, do it with code and test it on the low side!
What if I have a proxy instead?
Most of the tooling supports HTTP_PROXY and HTTPS_PROXY
Some of it does not
It is often easier to design the system to assume no network access than to
keep fighting proxies
That said, if you can poke holes out to slack, rubygems, github, chef, etc you’ll
be much happier (unless they go down)
Changing the Process
Do this in Dev
• Do not wait for Prod to test your systems without internet access
• Along these lines, harden your Dev systems to the same standards as Prod
Create and Use
• CI/CD Pipelines
• Unit and Integration Tests
Identify where you assume risk
• If you let users ssh/rdp into production, that is where the risk lies
• If you only let users make changes to production through a pipeline, that’s
where the risk lies
• If the risk lies in a pipeline and someone else has to approve code changes,
the risk of any single change/actor is much lower
Imagine This Scenario
• Nobody can ever log into Production
• All changes flow through a pipeline that tracks who committed, reviewed
and shipped the change
• All changes are tested through Dev, QA, etc before deploying to Prod
• We build a new Prod every time we make a change
What About … ?
My laptop can’t reach X
• If you can’t reach GitHub, or Slack, etc ever; not just in Production that’s an
issue
Security won’t let me!
• Work with them. They are a vital component of
your business (or should be)
• Identify where the risk is. The risk is with the
data, not with the user.
• Consume Risk in Dev, not in Prod (Fail Fast)
• Progress is coming
How often do we update our packages?
Where are the gates?
What are the metrics?
Velocity: How fast we ship
Efficiency: How good we are at shipping
Risk: How long does it take us to fix
Food for Thought
Alaskan King Crab
• Biggest crab, legs alone can be a meal
• Served steamed or chilled with drawn butter and lemon
• Fishing Season:
• October
• January
Dungeness Crab
• Similar size to blue crab, hard shell
• Served steamed or chilled with drawn butter and lemon
• Fishing Season:
• Starts in November
• Ends in June/July
Blue Crab
• #CrabFeast
• Old Bay
• Fishing Season:
• Starts In April
Proof of Concept code
www.github.com/galenemery/chef-mre
Want a USB Key with it?
Google “stuxnet” or “vault 7”
If you asked for a USB Key, please let me know who holds your clearance so
we can have it revoked
ACKNOWLEDGEMENTS
Robb Kidd
ChefConf 2014: Mind the Gap:
Deployments with Chef in
unforgiving Environments
ACKNOWLEDGEMENTs
Thank you JOKES ON YOU, THERES NOTHING HERE
Thank you DevOpsDays Baltimore

More Related Content

What's hot

Release the Monkeys ! Testing in the Wild at Netflix
Release the Monkeys !  Testing in the Wild at NetflixRelease the Monkeys !  Testing in the Wild at Netflix
Release the Monkeys ! Testing in the Wild at NetflixGareth Bowles
 
Puppet Camp Melbourne 2014:
Puppet Camp Melbourne 2014: Puppet Camp Melbourne 2014:
Puppet Camp Melbourne 2014: Puppet
 
Hashicorp at holaluz
Hashicorp at holaluzHashicorp at holaluz
Hashicorp at holaluzRicard Clau
 
The New Frontend Toolchain
The New Frontend ToolchainThe New Frontend Toolchain
The New Frontend ToolchainBruno Abrantes
 
Continuous delivery with Codeship
Continuous delivery with CodeshipContinuous delivery with Codeship
Continuous delivery with CodeshipTetiana Chupryna
 
Managing changes to eZPublish Database
Managing changes to eZPublish DatabaseManaging changes to eZPublish Database
Managing changes to eZPublish DatabaseGaetano Giunta
 
Powerful Automation Made Simple
Powerful Automation Made SimplePowerful Automation Made Simple
Powerful Automation Made SimpleGaetano Giunta
 
How to Test PowerShell Code Using Pester
How to Test PowerShell Code Using PesterHow to Test PowerShell Code Using Pester
How to Test PowerShell Code Using PesterChris Wahl
 
Effective approaches to web application security
Effective approaches to web application security Effective approaches to web application security
Effective approaches to web application security Zane Lackey
 
My Little Webap - DevOpsSec is Magic
My Little Webap - DevOpsSec is MagicMy Little Webap - DevOpsSec is Magic
My Little Webap - DevOpsSec is MagicApollo Clark
 
Lares from LOW to PWNED
Lares from LOW to PWNEDLares from LOW to PWNED
Lares from LOW to PWNEDChris Gates
 
What we talk about when we talk about DevOps
What we talk about when we talk about DevOpsWhat we talk about when we talk about DevOps
What we talk about when we talk about DevOpsRicard Clau
 
Five Easy Ways to QA Your Drupal Site
Five Easy Ways to QA Your Drupal SiteFive Easy Ways to QA Your Drupal Site
Five Easy Ways to QA Your Drupal SiteMediacurrent
 
Puppet Camp Sydney Feb 2014 - A Build Engineering Team’s Journey of Infrastru...
Puppet Camp Sydney Feb 2014 - A Build Engineering Team’s Journey of Infrastru...Puppet Camp Sydney Feb 2014 - A Build Engineering Team’s Journey of Infrastru...
Puppet Camp Sydney Feb 2014 - A Build Engineering Team’s Journey of Infrastru...Peter Leschev
 
DevOpsSec: Appling DevOps Principles to Security, DevOpsDays Austin 2012
DevOpsSec: Appling DevOps Principles to Security, DevOpsDays Austin 2012DevOpsSec: Appling DevOps Principles to Security, DevOpsDays Austin 2012
DevOpsSec: Appling DevOps Principles to Security, DevOpsDays Austin 2012Nick Galbreath
 
eZ Publish 5: from zero to automated deployment (and no regressions!) in one ...
eZ Publish 5: from zero to automated deployment (and no regressions!) in one ...eZ Publish 5: from zero to automated deployment (and no regressions!) in one ...
eZ Publish 5: from zero to automated deployment (and no regressions!) in one ...Gaetano Giunta
 

What's hot (20)

Release the Monkeys ! Testing in the Wild at Netflix
Release the Monkeys !  Testing in the Wild at NetflixRelease the Monkeys !  Testing in the Wild at Netflix
Release the Monkeys ! Testing in the Wild at Netflix
 
Puppet Camp Melbourne 2014:
Puppet Camp Melbourne 2014: Puppet Camp Melbourne 2014:
Puppet Camp Melbourne 2014:
 
Hashicorp at holaluz
Hashicorp at holaluzHashicorp at holaluz
Hashicorp at holaluz
 
The New Frontend Toolchain
The New Frontend ToolchainThe New Frontend Toolchain
The New Frontend Toolchain
 
Continuous delivery with Codeship
Continuous delivery with CodeshipContinuous delivery with Codeship
Continuous delivery with Codeship
 
Managing changes to eZPublish Database
Managing changes to eZPublish DatabaseManaging changes to eZPublish Database
Managing changes to eZPublish Database
 
Powerful Automation Made Simple
Powerful Automation Made SimplePowerful Automation Made Simple
Powerful Automation Made Simple
 
How to Test PowerShell Code Using Pester
How to Test PowerShell Code Using PesterHow to Test PowerShell Code Using Pester
How to Test PowerShell Code Using Pester
 
Effective approaches to web application security
Effective approaches to web application security Effective approaches to web application security
Effective approaches to web application security
 
My Little Webap - DevOpsSec is Magic
My Little Webap - DevOpsSec is MagicMy Little Webap - DevOpsSec is Magic
My Little Webap - DevOpsSec is Magic
 
Lares from LOW to PWNED
Lares from LOW to PWNEDLares from LOW to PWNED
Lares from LOW to PWNED
 
What DevOps Isn't
What DevOps Isn'tWhat DevOps Isn't
What DevOps Isn't
 
What we talk about when we talk about DevOps
What we talk about when we talk about DevOpsWhat we talk about when we talk about DevOps
What we talk about when we talk about DevOps
 
Five Easy Ways to QA Your Drupal Site
Five Easy Ways to QA Your Drupal SiteFive Easy Ways to QA Your Drupal Site
Five Easy Ways to QA Your Drupal Site
 
Hacking on gems
Hacking on gemsHacking on gems
Hacking on gems
 
Raise the bar! Reloaded
Raise the bar! ReloadedRaise the bar! Reloaded
Raise the bar! Reloaded
 
Puppet Camp Sydney Feb 2014 - A Build Engineering Team’s Journey of Infrastru...
Puppet Camp Sydney Feb 2014 - A Build Engineering Team’s Journey of Infrastru...Puppet Camp Sydney Feb 2014 - A Build Engineering Team’s Journey of Infrastru...
Puppet Camp Sydney Feb 2014 - A Build Engineering Team’s Journey of Infrastru...
 
DevOpsSec: Appling DevOps Principles to Security, DevOpsDays Austin 2012
DevOpsSec: Appling DevOps Principles to Security, DevOpsDays Austin 2012DevOpsSec: Appling DevOps Principles to Security, DevOpsDays Austin 2012
DevOpsSec: Appling DevOps Principles to Security, DevOpsDays Austin 2012
 
eZ Publish 5: from zero to automated deployment (and no regressions!) in one ...
eZ Publish 5: from zero to automated deployment (and no regressions!) in one ...eZ Publish 5: from zero to automated deployment (and no regressions!) in one ...
eZ Publish 5: from zero to automated deployment (and no regressions!) in one ...
 
Oscp preparation
Oscp preparationOscp preparation
Oscp preparation
 

Viewers also liked

Getting Away from it All - Living an Unplugged Life as an IT Pro by Leon Adato
Getting Away from it All - Living an Unplugged Life as an IT Pro by Leon AdatoGetting Away from it All - Living an Unplugged Life as an IT Pro by Leon Adato
Getting Away from it All - Living an Unplugged Life as an IT Pro by Leon AdatoDevOpsDays Baltimore
 
Third-Wave DevOps: What we can learn from Coffee by Jason Yee
Third-Wave DevOps: What we can learn from Coffee by Jason YeeThird-Wave DevOps: What we can learn from Coffee by Jason Yee
Third-Wave DevOps: What we can learn from Coffee by Jason YeeDevOpsDays Baltimore
 
Transversal Delivery Pipeline by Mike Nescot and Nick Grace
Transversal Delivery Pipeline by Mike Nescot and Nick GraceTransversal Delivery Pipeline by Mike Nescot and Nick Grace
Transversal Delivery Pipeline by Mike Nescot and Nick GraceDevOpsDays Baltimore
 
Making Your Product Manager Productive by Clinton Wolfe
Making Your Product Manager Productive by Clinton WolfeMaking Your Product Manager Productive by Clinton Wolfe
Making Your Product Manager Productive by Clinton WolfeDevOpsDays Baltimore
 
DevOps: It's just a game by Tom Larrow
DevOps: It's just a game by Tom LarrowDevOps: It's just a game by Tom Larrow
DevOps: It's just a game by Tom LarrowDevOpsDays Baltimore
 
Deploying 30 times a day, and making sure everything stays 200 OK by Eric Sigler
Deploying 30 times a day, and making sure everything stays 200 OK by Eric SiglerDeploying 30 times a day, and making sure everything stays 200 OK by Eric Sigler
Deploying 30 times a day, and making sure everything stays 200 OK by Eric SiglerDevOpsDays Baltimore
 
~~Putting~~ Convincing the Ops in DevOps by Jamie Jones
~~Putting~~ Convincing the Ops in DevOps by Jamie Jones~~Putting~~ Convincing the Ops in DevOps by Jamie Jones
~~Putting~~ Convincing the Ops in DevOps by Jamie JonesDevOpsDays Baltimore
 
DevSecOpsNess: Adding the business dimension to DevOps by Tanusree McCabe
DevSecOpsNess: Adding the business dimension to DevOps by Tanusree McCabeDevSecOpsNess: Adding the business dimension to DevOps by Tanusree McCabe
DevSecOpsNess: Adding the business dimension to DevOps by Tanusree McCabeDevOpsDays Baltimore
 
Decoding Culture: Beyond the Fluff and Back to Business by Jeff Gallimore
Decoding Culture: Beyond the Fluff and Back to Business by Jeff GallimoreDecoding Culture: Beyond the Fluff and Back to Business by Jeff Gallimore
Decoding Culture: Beyond the Fluff and Back to Business by Jeff GallimoreDevOpsDays Baltimore
 
Lost art of troubleshooting by Leon Fayer
Lost art of troubleshooting by Leon FayerLost art of troubleshooting by Leon Fayer
Lost art of troubleshooting by Leon FayerDevOpsDays Baltimore
 
Best Practices for IT management: Investment‐based Budgeting by Elias Senter
Best Practices for IT management: Investment‐based Budgeting by Elias SenterBest Practices for IT management: Investment‐based Budgeting by Elias Senter
Best Practices for IT management: Investment‐based Budgeting by Elias SenterDevOpsDays Baltimore
 
Building the Baltimore DevOps Community by Nathen Harvey
Building the Baltimore DevOps Community by Nathen HarveyBuilding the Baltimore DevOps Community by Nathen Harvey
Building the Baltimore DevOps Community by Nathen HarveyDevOpsDays Baltimore
 
Continuous Integration: a bittersweet love story by Suzie Prince
Continuous Integration: a bittersweet love story by Suzie PrinceContinuous Integration: a bittersweet love story by Suzie Prince
Continuous Integration: a bittersweet love story by Suzie PrinceDevOpsDays Baltimore
 
Slideshare workshop presentation
Slideshare workshop presentationSlideshare workshop presentation
Slideshare workshop presentationLara El Feghali
 
Sistema de Captación, Acumulación y aprovechamiento de aguas lluvias para la ...
Sistema de Captación, Acumulación y aprovechamiento de aguas lluvias para la ...Sistema de Captación, Acumulación y aprovechamiento de aguas lluvias para la ...
Sistema de Captación, Acumulación y aprovechamiento de aguas lluvias para la ...Rgta Región de O'Higgins
 
Mejoramiento genético y adaptación al cambio climático
Mejoramiento genético y adaptación al cambio climáticoMejoramiento genético y adaptación al cambio climático
Mejoramiento genético y adaptación al cambio climáticoRgta Región de O'Higgins
 
How design helped me to learn English
How design helped me to learn EnglishHow design helped me to learn English
How design helped me to learn EnglishMasaki Haruta
 

Viewers also liked (20)

Getting Away from it All - Living an Unplugged Life as an IT Pro by Leon Adato
Getting Away from it All - Living an Unplugged Life as an IT Pro by Leon AdatoGetting Away from it All - Living an Unplugged Life as an IT Pro by Leon Adato
Getting Away from it All - Living an Unplugged Life as an IT Pro by Leon Adato
 
Third-Wave DevOps: What we can learn from Coffee by Jason Yee
Third-Wave DevOps: What we can learn from Coffee by Jason YeeThird-Wave DevOps: What we can learn from Coffee by Jason Yee
Third-Wave DevOps: What we can learn from Coffee by Jason Yee
 
Hacking the A3 by Alan Kraft
Hacking the A3 by Alan KraftHacking the A3 by Alan Kraft
Hacking the A3 by Alan Kraft
 
Transversal Delivery Pipeline by Mike Nescot and Nick Grace
Transversal Delivery Pipeline by Mike Nescot and Nick GraceTransversal Delivery Pipeline by Mike Nescot and Nick Grace
Transversal Delivery Pipeline by Mike Nescot and Nick Grace
 
Making Your Product Manager Productive by Clinton Wolfe
Making Your Product Manager Productive by Clinton WolfeMaking Your Product Manager Productive by Clinton Wolfe
Making Your Product Manager Productive by Clinton Wolfe
 
DevOps: It's just a game by Tom Larrow
DevOps: It's just a game by Tom LarrowDevOps: It's just a game by Tom Larrow
DevOps: It's just a game by Tom Larrow
 
Deploying 30 times a day, and making sure everything stays 200 OK by Eric Sigler
Deploying 30 times a day, and making sure everything stays 200 OK by Eric SiglerDeploying 30 times a day, and making sure everything stays 200 OK by Eric Sigler
Deploying 30 times a day, and making sure everything stays 200 OK by Eric Sigler
 
~~Putting~~ Convincing the Ops in DevOps by Jamie Jones
~~Putting~~ Convincing the Ops in DevOps by Jamie Jones~~Putting~~ Convincing the Ops in DevOps by Jamie Jones
~~Putting~~ Convincing the Ops in DevOps by Jamie Jones
 
DevSecOpsNess: Adding the business dimension to DevOps by Tanusree McCabe
DevSecOpsNess: Adding the business dimension to DevOps by Tanusree McCabeDevSecOpsNess: Adding the business dimension to DevOps by Tanusree McCabe
DevSecOpsNess: Adding the business dimension to DevOps by Tanusree McCabe
 
Decoding Culture: Beyond the Fluff and Back to Business by Jeff Gallimore
Decoding Culture: Beyond the Fluff and Back to Business by Jeff GallimoreDecoding Culture: Beyond the Fluff and Back to Business by Jeff Gallimore
Decoding Culture: Beyond the Fluff and Back to Business by Jeff Gallimore
 
Lost art of troubleshooting by Leon Fayer
Lost art of troubleshooting by Leon FayerLost art of troubleshooting by Leon Fayer
Lost art of troubleshooting by Leon Fayer
 
Best Practices for IT management: Investment‐based Budgeting by Elias Senter
Best Practices for IT management: Investment‐based Budgeting by Elias SenterBest Practices for IT management: Investment‐based Budgeting by Elias Senter
Best Practices for IT management: Investment‐based Budgeting by Elias Senter
 
Building the Baltimore DevOps Community by Nathen Harvey
Building the Baltimore DevOps Community by Nathen HarveyBuilding the Baltimore DevOps Community by Nathen Harvey
Building the Baltimore DevOps Community by Nathen Harvey
 
Continuous Integration: a bittersweet love story by Suzie Prince
Continuous Integration: a bittersweet love story by Suzie PrinceContinuous Integration: a bittersweet love story by Suzie Prince
Continuous Integration: a bittersweet love story by Suzie Prince
 
The Microscope
The MicroscopeThe Microscope
The Microscope
 
Slideshare workshop presentation
Slideshare workshop presentationSlideshare workshop presentation
Slideshare workshop presentation
 
Sistema de Captación, Acumulación y aprovechamiento de aguas lluvias para la ...
Sistema de Captación, Acumulación y aprovechamiento de aguas lluvias para la ...Sistema de Captación, Acumulación y aprovechamiento de aguas lluvias para la ...
Sistema de Captación, Acumulación y aprovechamiento de aguas lluvias para la ...
 
Mejoramiento genético y adaptación al cambio climático
Mejoramiento genético y adaptación al cambio climáticoMejoramiento genético y adaptación al cambio climático
Mejoramiento genético y adaptación al cambio climático
 
Crossfit
CrossfitCrossfit
Crossfit
 
How design helped me to learn English
How design helped me to learn EnglishHow design helped me to learn English
How design helped me to learn English
 

Similar to Don't Mind the Gap by Galen Emery

Creating Havoc using Human Interface Device
Creating Havoc using Human Interface DeviceCreating Havoc using Human Interface Device
Creating Havoc using Human Interface DevicePositive Hack Days
 
Beyond TDD: Enabling Your Team to Continuously Deliver Software
Beyond TDD: Enabling Your Team to Continuously Deliver SoftwareBeyond TDD: Enabling Your Team to Continuously Deliver Software
Beyond TDD: Enabling Your Team to Continuously Deliver SoftwareChris Weldon
 
Confoo-Montreal-2016: Controlling Your Environments using Infrastructure as Code
Confoo-Montreal-2016: Controlling Your Environments using Infrastructure as CodeConfoo-Montreal-2016: Controlling Your Environments using Infrastructure as Code
Confoo-Montreal-2016: Controlling Your Environments using Infrastructure as CodeSteve Mercier
 
ProdSec: A Technical Approach
ProdSec: A Technical ApproachProdSec: A Technical Approach
ProdSec: A Technical ApproachJeremy Brown
 
Continuous Integration with Open Source Tools - PHPUgFfm 2014-11-20
Continuous Integration with Open Source Tools - PHPUgFfm 2014-11-20Continuous Integration with Open Source Tools - PHPUgFfm 2014-11-20
Continuous Integration with Open Source Tools - PHPUgFfm 2014-11-20Michael Lihs
 
'Intro to Infrastructure as Code' - DevOps Belfast
'Intro to Infrastructure as Code' - DevOps Belfast'Intro to Infrastructure as Code' - DevOps Belfast
'Intro to Infrastructure as Code' - DevOps BelfastJohn Fitzpatrick
 
Automated Acceptance Testing from Scratch
Automated Acceptance Testing from ScratchAutomated Acceptance Testing from Scratch
Automated Acceptance Testing from ScratchExcella
 
Sai devops - the art of being specializing generalist
Sai   devops - the art of being specializing generalistSai   devops - the art of being specializing generalist
Sai devops - the art of being specializing generalistOdd-e
 
Dev ops ci-ap-is-oh-my_security-gone-agile_ut-austin
Dev ops ci-ap-is-oh-my_security-gone-agile_ut-austinDev ops ci-ap-is-oh-my_security-gone-agile_ut-austin
Dev ops ci-ap-is-oh-my_security-gone-agile_ut-austinMatt Tesauro
 
Django production
Django productionDjango production
Django productionpythonsd
 
Smart Platform Infrastructure with AWS
Smart Platform Infrastructure with AWSSmart Platform Infrastructure with AWS
Smart Platform Infrastructure with AWSJames Huston
 
DCRUG: Achieving Development-Production Parity
DCRUG: Achieving Development-Production ParityDCRUG: Achieving Development-Production Parity
DCRUG: Achieving Development-Production ParityGeoff Harcourt
 
OSDC 2016 - Continous Integration in Data Centers - Further 3 Years later by ...
OSDC 2016 - Continous Integration in Data Centers - Further 3 Years later by ...OSDC 2016 - Continous Integration in Data Centers - Further 3 Years later by ...
OSDC 2016 - Continous Integration in Data Centers - Further 3 Years later by ...NETWAYS
 
Continuous integration, delivery & deployment
Continuous integration,  delivery & deploymentContinuous integration,  delivery & deployment
Continuous integration, delivery & deploymentMartijn van der Kamp
 
Deploying software at Scale
Deploying software at ScaleDeploying software at Scale
Deploying software at ScaleKris Buytaert
 
Continuos Integration and Delivery: from Zero to Hero with TeamCity, Docker a...
Continuos Integration and Delivery: from Zero to Hero with TeamCity, Docker a...Continuos Integration and Delivery: from Zero to Hero with TeamCity, Docker a...
Continuos Integration and Delivery: from Zero to Hero with TeamCity, Docker a...Lean IT Consulting
 
Code Coverage for Total Security in Application Migrations
Code Coverage for Total Security in Application MigrationsCode Coverage for Total Security in Application Migrations
Code Coverage for Total Security in Application MigrationsDana Luther
 
[HES2013] Virtually secure, analysis to remote root 0day on an industry leadi...
[HES2013] Virtually secure, analysis to remote root 0day on an industry leadi...[HES2013] Virtually secure, analysis to remote root 0day on an industry leadi...
[HES2013] Virtually secure, analysis to remote root 0day on an industry leadi...Hackito Ergo Sum
 
Owasp tds
Owasp tdsOwasp tds
Owasp tdssnyff
 

Similar to Don't Mind the Gap by Galen Emery (20)

Creating Havoc using Human Interface Device
Creating Havoc using Human Interface DeviceCreating Havoc using Human Interface Device
Creating Havoc using Human Interface Device
 
Beyond TDD: Enabling Your Team to Continuously Deliver Software
Beyond TDD: Enabling Your Team to Continuously Deliver SoftwareBeyond TDD: Enabling Your Team to Continuously Deliver Software
Beyond TDD: Enabling Your Team to Continuously Deliver Software
 
Confoo-Montreal-2016: Controlling Your Environments using Infrastructure as Code
Confoo-Montreal-2016: Controlling Your Environments using Infrastructure as CodeConfoo-Montreal-2016: Controlling Your Environments using Infrastructure as Code
Confoo-Montreal-2016: Controlling Your Environments using Infrastructure as Code
 
ProdSec: A Technical Approach
ProdSec: A Technical ApproachProdSec: A Technical Approach
ProdSec: A Technical Approach
 
Dev Ops without the Ops
Dev Ops without the OpsDev Ops without the Ops
Dev Ops without the Ops
 
Continuous Integration with Open Source Tools - PHPUgFfm 2014-11-20
Continuous Integration with Open Source Tools - PHPUgFfm 2014-11-20Continuous Integration with Open Source Tools - PHPUgFfm 2014-11-20
Continuous Integration with Open Source Tools - PHPUgFfm 2014-11-20
 
'Intro to Infrastructure as Code' - DevOps Belfast
'Intro to Infrastructure as Code' - DevOps Belfast'Intro to Infrastructure as Code' - DevOps Belfast
'Intro to Infrastructure as Code' - DevOps Belfast
 
Automated Acceptance Testing from Scratch
Automated Acceptance Testing from ScratchAutomated Acceptance Testing from Scratch
Automated Acceptance Testing from Scratch
 
Sai devops - the art of being specializing generalist
Sai   devops - the art of being specializing generalistSai   devops - the art of being specializing generalist
Sai devops - the art of being specializing generalist
 
Dev ops ci-ap-is-oh-my_security-gone-agile_ut-austin
Dev ops ci-ap-is-oh-my_security-gone-agile_ut-austinDev ops ci-ap-is-oh-my_security-gone-agile_ut-austin
Dev ops ci-ap-is-oh-my_security-gone-agile_ut-austin
 
Django production
Django productionDjango production
Django production
 
Smart Platform Infrastructure with AWS
Smart Platform Infrastructure with AWSSmart Platform Infrastructure with AWS
Smart Platform Infrastructure with AWS
 
DCRUG: Achieving Development-Production Parity
DCRUG: Achieving Development-Production ParityDCRUG: Achieving Development-Production Parity
DCRUG: Achieving Development-Production Parity
 
OSDC 2016 - Continous Integration in Data Centers - Further 3 Years later by ...
OSDC 2016 - Continous Integration in Data Centers - Further 3 Years later by ...OSDC 2016 - Continous Integration in Data Centers - Further 3 Years later by ...
OSDC 2016 - Continous Integration in Data Centers - Further 3 Years later by ...
 
Continuous integration, delivery & deployment
Continuous integration,  delivery & deploymentContinuous integration,  delivery & deployment
Continuous integration, delivery & deployment
 
Deploying software at Scale
Deploying software at ScaleDeploying software at Scale
Deploying software at Scale
 
Continuos Integration and Delivery: from Zero to Hero with TeamCity, Docker a...
Continuos Integration and Delivery: from Zero to Hero with TeamCity, Docker a...Continuos Integration and Delivery: from Zero to Hero with TeamCity, Docker a...
Continuos Integration and Delivery: from Zero to Hero with TeamCity, Docker a...
 
Code Coverage for Total Security in Application Migrations
Code Coverage for Total Security in Application MigrationsCode Coverage for Total Security in Application Migrations
Code Coverage for Total Security in Application Migrations
 
[HES2013] Virtually secure, analysis to remote root 0day on an industry leadi...
[HES2013] Virtually secure, analysis to remote root 0day on an industry leadi...[HES2013] Virtually secure, analysis to remote root 0day on an industry leadi...
[HES2013] Virtually secure, analysis to remote root 0day on an industry leadi...
 
Owasp tds
Owasp tdsOwasp tds
Owasp tds
 

Recently uploaded

From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationSafe Software
 
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...Igalia
 
How to convert PDF to text with Nanonets
How to convert PDF to text with NanonetsHow to convert PDF to text with Nanonets
How to convert PDF to text with Nanonetsnaman860154
 
The Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxThe Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxMalak Abu Hammad
 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Drew Madelung
 
Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)Allon Mureinik
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationRadu Cotescu
 
08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking MenDelhi Call girls
 
Unblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen FramesUnblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen FramesSinan KOZAK
 
Salesforce Community Group Quito, Salesforce 101
Salesforce Community Group Quito, Salesforce 101Salesforce Community Group Quito, Salesforce 101
Salesforce Community Group Quito, Salesforce 101Paola De la Torre
 
Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...
Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...
Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...HostedbyConfluent
 
Presentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreterPresentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreternaman860154
 
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...Neo4j
 
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...shyamraj55
 
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024BookNet Canada
 
The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024Rafal Los
 
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking MenDelhi Call girls
 
Boost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityBoost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityPrincipled Technologies
 
A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024Results
 
Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024The Digital Insurer
 

Recently uploaded (20)

From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
 
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
 
How to convert PDF to text with Nanonets
How to convert PDF to text with NanonetsHow to convert PDF to text with Nanonets
How to convert PDF to text with Nanonets
 
The Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxThe Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptx
 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
 
Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organization
 
08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men
 
Unblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen FramesUnblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen Frames
 
Salesforce Community Group Quito, Salesforce 101
Salesforce Community Group Quito, Salesforce 101Salesforce Community Group Quito, Salesforce 101
Salesforce Community Group Quito, Salesforce 101
 
Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...
Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...
Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...
 
Presentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreterPresentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreter
 
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
 
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
 
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
 
The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024
 
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
 
Boost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityBoost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivity
 
A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024
 
Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024
 

Don't Mind the Gap by Galen Emery

  • 1. Don’t Mind the Gap Doing DevOps in an Air-gapped World Galen Emery Federal Solutions Architect 3/8/2017
  • 2. Who am I? I work with the Federal Government and Integrators DoD, Civilian, or IC? Yes. I help users understand how to build and structure their infrastructure (using Chef) to solve their problems Former Windows Server Admin Been with Chef since March 2014 Born and raised in Seattle (Nathen, you’re wrong about Seattle crab)
  • 3. What we cover What is “air-gapped”? What issues do we encounter? Assumptions How to solve it (technical) How to solve it (process) What about … ? Food for Thought
  • 4. What is air-gapped? air-gapped adjective (of a computer) having no direct connection to the Internet or to any other computer that is connected to the Internet, for security reasons. "a USB drive or other hardware approach would be required to infect the air-gapped machine"
  • 5. What about mitm? • Corporate man-in-the-middle • Terminates SSL sessions and re-initiates • Often includes packet inspection • Requires you to trust its generated certificates • May still include a firewall blocking access to sites
  • 6. Maybe its just a firewall • Restricts access to: • Github or gist.github.com • slack • Pastebin • Rubygems.org / some other artifact repository • etc
  • 7. No restrictions? • Congratulations! • You might still have a firewall/proxy, its just permissive • Do you trust those systems will be up when you need them?
  • 9. Getting stuff into production • How do we “cross the gap”? • How do we distribute it? • How do we ensure its integrity?
  • 10. Process?! You want to talk about PROCESS? You kidding me?! I just hope we can make one change!
  • 11. Velocity How do we achieve velocity if we burn a DVD for every change? Or if a proxy is inspecting all of our packets, every time we download a package?
  • 12. Okay, I’m not air-gapped but… • I have a firewall between my systems and the internet • I have a proxy that inspects all traffic and slows me down • I don’t have {level of access necessary} to make changes • Tool {X} does not understand authenticating proxies
  • 14. You know that I know that you know… • How you get code into your high-side environment
  • 15. Everything is code • If its source code, it goes into SCM • If it is an artifact, it goes into artifact store, and has a checksum • We can (and do) write tests • We build a pipeline
  • 17. Go from Low to High
  • 18. Assume you don’t have internet • Even if you do • Build this into your pipeline • Test this on the low side • Your systems should NOT assume internet access • Most tooling by default assumes it does
  • 19. Do this work on the low-side Build your pipeline in a way that removes internet access for your systems, they must grab their code and artifacts locally If you can build your infrastructure without internet access in Dev, you can absolutely do it in Prod
  • 20. Protect the Data, not the Infra The data is sensitive, not the infrastructure itself. Keep the data in the high- side, but ensure that you build your infrastructure with the same code in Dev and Prod
  • 21. Workstation This is your “loading dock” for the rest of the infrastructure Everything comes through here It needs: • A way to serve files (directly or indirectly) • A way to create artifacts (zip, tar, etc) • built programmatically
  • 22. Workstation Use the workstation to: • Stand up your artifact repo • Stand up your configuration management infra • Publish your artifacts • Run tests
  • 23. Workstation (Chef Example) Bring in to the workstation a zip/tar with the following • ChefDK • A FTP/SSH/SCP Server binary (if it doesn’t already exist on your box) • Your cookbooks • Any extra gems necessary • Chef packages (client, server) Use Chef Zero to stand up your FTP Server, populate it with the artifacts and prepare it for use in the rest of the process
  • 24. What about dependencies? I could download, transfer, attempt to install, download, transfer, attempt to install.. I could skip using the gem and instead write it myself I can create a full gem mirror of all 80,000+ gems on rubygems.org I can install what I need into a directory, and then move that directory over as an artifact
  • 25. Simplest is to create an artifact I used “gem install –i $PATH $GEM” && tar cf $PATH Its not pretty but it works Benefit is: I have a moment-in-time artifact of the gems I’m using Ideally you’d create this at the end of your development pipeline
  • 26. You should be using an artifact repo • Use something that can store and manage your artifacts • You can version your artifacts • Often supports the correct dependency structure for your artifacts
  • 27. Once you have Workstation + Artifact • You can setup your configuration management • Use a tool, running from your workstation to setup the infrastructure you need • Example • Chef Provisioning SSH • Doesn’t require internet access • Can bootstrap Chef from a FTP or SCP server
  • 28. Everything is set, right? • Have workstation, Config Mgmt + Artifact store • But I haven’t told any of my infrastructure that it shouldn’t reach out to the internet for X, Y or Z
  • 29. Tell your systems to stay inside • Remove unreachable Satellite repositories • If using ruby, remove rubygems from your sources. Add your artifact store • If using Chef, update berksfile to an internal supermarket • If using X, update Y to Z • Don’t do this manually, do it with code and test it on the low side!
  • 30. What if I have a proxy instead? Most of the tooling supports HTTP_PROXY and HTTPS_PROXY Some of it does not It is often easier to design the system to assume no network access than to keep fighting proxies That said, if you can poke holes out to slack, rubygems, github, chef, etc you’ll be much happier (unless they go down)
  • 32. Do this in Dev • Do not wait for Prod to test your systems without internet access • Along these lines, harden your Dev systems to the same standards as Prod
  • 33. Create and Use • CI/CD Pipelines • Unit and Integration Tests
  • 34. Identify where you assume risk • If you let users ssh/rdp into production, that is where the risk lies • If you only let users make changes to production through a pipeline, that’s where the risk lies • If the risk lies in a pipeline and someone else has to approve code changes, the risk of any single change/actor is much lower
  • 35. Imagine This Scenario • Nobody can ever log into Production • All changes flow through a pipeline that tracks who committed, reviewed and shipped the change • All changes are tested through Dev, QA, etc before deploying to Prod • We build a new Prod every time we make a change
  • 37. My laptop can’t reach X • If you can’t reach GitHub, or Slack, etc ever; not just in Production that’s an issue
  • 38. Security won’t let me! • Work with them. They are a vital component of your business (or should be) • Identify where the risk is. The risk is with the data, not with the user. • Consume Risk in Dev, not in Prod (Fail Fast) • Progress is coming
  • 39. How often do we update our packages?
  • 40. Where are the gates?
  • 41. What are the metrics? Velocity: How fast we ship Efficiency: How good we are at shipping Risk: How long does it take us to fix
  • 43. Alaskan King Crab • Biggest crab, legs alone can be a meal • Served steamed or chilled with drawn butter and lemon • Fishing Season: • October • January
  • 44. Dungeness Crab • Similar size to blue crab, hard shell • Served steamed or chilled with drawn butter and lemon • Fishing Season: • Starts in November • Ends in June/July
  • 45. Blue Crab • #CrabFeast • Old Bay • Fishing Season: • Starts In April
  • 46. Proof of Concept code www.github.com/galenemery/chef-mre Want a USB Key with it?
  • 47. Google “stuxnet” or “vault 7” If you asked for a USB Key, please let me know who holds your clearance so we can have it revoked
  • 48. ACKNOWLEDGEMENTS Robb Kidd ChefConf 2014: Mind the Gap: Deployments with Chef in unforgiving Environments
  • 49. ACKNOWLEDGEMENTs Thank you JOKES ON YOU, THERES NOTHING HERE Thank you DevOpsDays Baltimore