SlideShare une entreprise Scribd logo
1  sur  153
geemus (Wesley Beary)

cloud architect




                  field, sun reflected - dsevilla - flickr.com/photos/dsevilla/3531297705
Why?




   York Minster in the Fog - karlequin - flickr.com/photos/karlequin/440648686
Why?
seize the infrastructure




                York Minster in the Fog - karlequin - flickr.com/photos/karlequin/440648686
Leave with




             Theft - ibcbulk - flickr.com/photos/ibcbulk/256435870
Leave with
 provisioning
    config




                Theft - ibcbulk - flickr.com/photos/ibcbulk/256435870
Leave with
 provisioning
    config
     DIY




                Theft - ibcbulk - flickr.com/photos/ibcbulk/256435870
The Plan




     Blueprints for Willborough Home - btobin - flickr.com/photos/btobin/4456582998
The Plan
Yet Another Cloud Library?




               Blueprints for Willborough Home - btobin - flickr.com/photos/btobin/4456582998
The Plan
Yet Another Cloud Library?
        Blind Date




                Blueprints for Willborough Home - btobin - flickr.com/photos/btobin/4456582998
The Plan
Yet Another Cloud Library?
        Blind Date
    Reader Exercises




                Blueprints for Willborough Home - btobin - flickr.com/photos/btobin/4456582998
The Plan
Yet Another Cloud Library?
        Blind Date
    Reader Exercises
       Next Steps




                Blueprints for Willborough Home - btobin - flickr.com/photos/btobin/4456582998
Yet Another
   Cloud
  Library?
the commodity market - baconandeggs - flickr.com/photos/baconandeggs/1490449135
Want




  the commodity market - baconandeggs - flickr.com/photos/baconandeggs/1490449135
Vendor Lockin




        Jail Kitty - 50362297@N07 - flickr.com/photos/50362297@N07/4673066549
Vendor Lockin



    Have




        Jail Kitty - 50362297@N07 - flickr.com/photos/50362297@N07/4673066549
Non-Standard - olivander - flickr.com/photos/olivander/198180580
Hope?




        Non-Standard - olivander - flickr.com/photos/olivander/198180580
Knowledge Silos




            Silos - zoomzoom - flickr.com/photos/zoomzoom/304135268
Knowledge Silos



  Demolish!




              Silos - zoomzoom - flickr.com/photos/zoomzoom/304135268
Progress




           Nice. - ianhampton - flickr.com/photos/ianhampton/1197107567
Progress

615+ followers




                 Nice. - ianhampton - flickr.com/photos/ianhampton/1197107567
Progress

615+ followers
  54+ forks




                 Nice. - ianhampton - flickr.com/photos/ianhampton/1197107567
Progress

615+ followers
  54+ forks
28+ contributors




                 Nice. - ianhampton - flickr.com/photos/ianhampton/1197107567
Progress

 615+ followers
   54+ forks
 28+ contributors
25,000+ downloads



                  Nice. - ianhampton - flickr.com/photos/ianhampton/1197107567
Blind Date
Golfland start - twid - flickr.com/photos/twid/410697715
overabundance of choice
   lack of experience




                     Golfland start - twid - flickr.com/photos/twid/410697715
overabundance of choice
   lack of experience




exploratory programming



                     Golfland start - twid - flickr.com/photos/twid/410697715
Installation
Installation
geymus ~ ⌘ sudo gem install fog
Installation
geymus ~ ⌘ sudo gem install fog
Successfully installed fog-X.Y.Z
Installation
geymus ~ ⌘ sudo gem install fog
Successfully installed fog-X.Y.Z
geymus ~ ⌘ fog
Installation
geymus ~ ⌘ sudo gem install fog
Successfully installed fog-X.Y.Z
geymus ~ ⌘ fog
 To run as 'default', add the following to ~/.fog

:default:
  :aws_access_key_id:   INTENTIONALLY_LEFT_BLANK
  :aws_secret_access_key: INTENTIONALLY_LEFT_BLANK
  [...]
bin/fog
bin/fog
geymus ~ ⌘ fog
bin/fog
geymus ~ ⌘ fog
 Welcome to fog interactive!
 :default credentials provide AWS
bin/fog
geymus ~ ⌘ fog
 Welcome to fog interactive!
 :default credentials provide AWS
>> command_goes_here
bin/fog
geymus ~ ⌘ fog
 Welcome to fog interactive!
 :default credentials provide AWS
>> command_goes_here
return_value_goes_here
Providers
Providers
>> providers
Providers
>> providers
[AWS]
Providers
>> providers
[AWS]

                      Support for:
 AWS, Bluebox, Rackspace, Slicehost, Terremark vCloud
                  Initial support for:
          GoGrid, Linode, Local, NewServers
Services
Services
>> AWS.services
Services
>> AWS.services
[:compute, :elb, :simpledb, :storage]
Services
>> AWS.services
[:compute, :elb, :simpledb, :storage]

            compute and storage are shared
               other services are unique
Collections
Collections
>> AWS[:compute].collections
Collections
>> AWS[:compute].collections
[:addresses, ..., :volumes]
Collections
>> AWS[:compute].collections
[:addresses, ..., :volumes]

  flavors, images and servers are shared in compute
      directories and files are shared in storage
             other collections are unique
Collections




         Star Wars Collection - ception - flickr.com/photos/ception/356449209
Collections
interface to cloud resources




                    Star Wars Collection - ception - flickr.com/photos/ception/356449209
Collections
    interface to cloud resources
#all - returns all matching resources
#new - initializes a local model
#create - provisions a new resource
#get - returns a particular resource
#reload - update to latest remote state




                          Star Wars Collection - ception - flickr.com/photos/ception/356449209
Collection #all
Collection #all
returns all matching resources
Collection #all
           returns all matching resources
>> AWS[:compute].addresses.all
Collection #all
           returns all matching resources
>> AWS[:compute].addresses.all
<Fog::AWS::Compute::Addresses ... []>
Collection #all
           returns all matching resources
>> AWS[:compute].addresses.all
<Fog::AWS::Compute::Addresses ... []>
>> AWS[:compute].addresses
Collection #all
           returns all matching resources
>> AWS[:compute].addresses.all
<Fog::AWS::Compute::Addresses ... []>
>> AWS[:compute].addresses
<Fog::AWS::Compute::Addresses ... []>
Collection #new
Collection #new
 initializes a local model
Collection #new
              initializes a local model
>> AWS[:compute].addresses.new
Collection #new
                initializes a local model
>> AWS[:compute].addresses.new
<Fog::AWS::Compute::Address public_ip=nil ... >
Collection #create
Collection #create
  provisions a new resource
Collection #create
              provisions a new resource
>> AWS[:compute].addresses.create
Collection #create
               provisions a new resource
>> AWS[:compute].addresses.create
<Fog::AWS::Compute::Address public_ip=‘x.y.z’ ... >
Collection #create
               provisions a new resource
>> AWS[:compute].addresses.create
<Fog::AWS::Compute::Address public_ip=‘x.y.z’ ... >
>> AWS[:compute].servers.create
Collection #create
               provisions a new resource
>> AWS[:compute].addresses.create
<Fog::AWS::Compute::Address public_ip=‘x.y.z’ ... >
>> AWS[:compute].servers.create
ArgumentError: image_id is required ...
Collection #get
Collection #get
returns a particular resource
Collection #get
             returns a particular resource
>> AWS[:compute].addresses.get(‘x.y.z’)
Collection #get
             returns a particular resource
>> AWS[:compute].addresses.get(‘x.y.z’)
<Fog::AWS::Compute::Address public_ip=‘x.y.z’ ... >
Collection #reload
Collection #reload
 update to latest remote state
Collection #reload
             update to latest remote state
>> AWS[:compute].addresses.all.reload
Collection #reload
             update to latest remote state
>> AWS[:compute].addresses.all.reload
<Fog::AWS::Compute::Addresses ... []>
Models




    Flying Into Boston 005 - Tilt Shift - tostie14 - flickr.com/photos/tostie14/117610830
Models
representation of a cloud resource




                   Flying Into Boston 005 - Tilt Shift - tostie14 - flickr.com/photos/tostie14/117610830
Models
  representation of a cloud resource
  #save - provision or update resource
 #reload - update to latest remote state
#wait_for - poll block until timeout or true
       #destroy - destroy resource




                        Flying Into Boston 005 - Tilt Shift - tostie14 - flickr.com/photos/tostie14/117610830
Model #save
Model #save
provision or update resource
Model #save
            provision or update resource
>> AWS[:compute].addresses.new.save
Model #save
             provision or update resource
>> AWS[:compute].addresses.new.save
<Fog::AWS::Compute::Address public_ip=‘x.y.z’ ... >
Model #save
             provision or update resource
>> AWS[:compute].addresses.new.save
<Fog::AWS::Compute::Address public_ip=‘x.y.z’ ... >
>> AWS[:compute].servers.new.save
Model #save
             provision or update resource
>> AWS[:compute].addresses.new.save
<Fog::AWS::Compute::Address public_ip=‘x.y.z’ ... >
>> AWS[:compute].servers.new.save
ArgumentError: image_id is required ...
Model #reload
Model #reload
update to latest remote state
Model #reload
            update to latest remote state
>> address = AWS[:compute].addresses.new.save
Model #reload
             update to latest remote state
>> address = AWS[:compute].addresses.new.save
<Fog::AWS::Compute::Address public_ip=‘x.y.z’ ... >
Model #reload
             update to latest remote state
>> address = AWS[:compute].addresses.new.save
<Fog::AWS::Compute::Address public_ip=‘x.y.z’ ... >
>> address.reload
Model #reload
             update to latest remote state
>> address = AWS[:compute].addresses.new.save
<Fog::AWS::Compute::Address public_ip=‘x.y.z’ ... >
>> address.reload
<Fog::AWS::Compute::Address public_ip=‘x.y.z’ ... >
Model #wait_for
Model #wait_for
poll a block until timeout or true
Model #wait_for
           poll a block until timeout or true
>> AWS[:compute].servers.create(:image_id => ‘ami’)
Model #wait_for
           poll a block until timeout or true
>> AWS[:compute].servers.create(:image_id => ‘ami’)
<Fog::AWS::Compute::Server ... []>
Model #wait_for
           poll a block until timeout or true
>> AWS[:compute].servers.create(:image_id => ‘ami’)
<Fog::AWS::Compute::Server ... []>
>> _.wait_for { ready? }
Model #wait_for
           poll a block until timeout or true
>> AWS[:compute].servers.create(:image_id => ‘ami’)
<Fog::AWS::Compute::Server ... []>
>> _.wait_for { ready? }
{:duration=>20}
Model #destroy
Model #destroy
   destroy resource
Model #destroy
                   destroy resource
>> AWS[:compute].servers.create(:image_id => ‘i-x’)
Model #destroy
                   destroy resource
>> AWS[:compute].servers.create(:image_id => ‘i-x’)
<Fog::AWS::Compute::Server ... []>
Model #destroy
                   destroy resource
>> AWS[:compute].servers.create(:image_id => ‘i-x’)
<Fog::AWS::Compute::Server ... []>
>> _.destroy
Model #destroy
                   destroy resource
>> AWS[:compute].servers.create(:image_id => ‘i-x’)
<Fog::AWS::Compute::Server ... []>
>> _.destroy
true
Requests




           API Docs - thesmith - flickr.com/photos/thesmith/4574969567
Requests
down and dirty with specifics




                     API Docs - thesmith - flickr.com/photos/thesmith/4574969567
Requests
down and dirty with specifics
 provides flexibility and power
 but requires vendor specifics




                        API Docs - thesmith - flickr.com/photos/thesmith/4574969567
Requests
Requests
>> AWS[:compute].requests
Requests
>> AWS[:compute].requests
[:allocate_address, ..., :stop_instances]
Requests
>> AWS[:compute].requests
[:allocate_address, ..., :stop_instances]

          requests are unique across providers
e.g. #allocate_address
e.g. #allocate_address
>> AWS[:compute].allocate_address
e.g. #allocate_address
>> AWS[:compute].allocate_address
#<Excon::Response
@headers={...},
@body={"requestId"=>"a-b-c", "publicIp"=>"x.y.z"},
@status=200
>
Reader
Exercises
Got Infrastructure




           New IBM Z10 Mainframe - pchow98 - flickr.com/photos/pchow98/2545281504
Got Infrastructure
      now what?




             New IBM Z10 Mainframe - pchow98 - flickr.com/photos/pchow98/2545281504
servers#bootstrap
servers#bootstrap
>> AWS[:compute].servers.bootstrap(
  :image_id => ‘ami’,
  :private_key_path => ‘~/.ssh/id_rsa’,
  :public_key_path => ‘~/.ssh/id_rsa.pub’
)
servers#bootstrap
>> AWS[:compute].servers.bootstrap(
  :image_id => ‘ami’,
  :private_key_path => ‘~/.ssh/id_rsa’,
  :public_key_path => ‘~/.ssh/id_rsa.pub’
)
<Fog::AWS::Compute::Server ... []>
servers#bootstrap
>> AWS[:compute].servers.bootstrap(
  :image_id => ‘ami’,
  :private_key_path => ‘~/.ssh/id_rsa’,
  :public_key_path => ‘~/.ssh/id_rsa.pub’
)
<Fog::AWS::Compute::Server ... []>
>> _.ssh(‘pwd’)
servers#bootstrap
>> AWS[:compute].servers.bootstrap(
  :image_id => ‘ami’,
  :private_key_path => ‘~/.ssh/id_rsa’,
  :public_key_path => ‘~/.ssh/id_rsa.pub’
)
<Fog::AWS::Compute::Server ... []>
>> _.ssh(‘pwd’)
[#<Fog::SSH::Result @stdout=”/Users/root” ...>]
servers#bootstrap
>> AWS[:compute].servers.bootstrap(
  :image_id => ‘ami’,
  :private_key_path => ‘~/.ssh/id_rsa’,
  :public_key_path => ‘~/.ssh/id_rsa.pub’
)
<Fog::AWS::Compute::Server ... []>
>> _.ssh(‘pwd’)
[#<Fog::SSH::Result @stdout=”/Users/root” ...>]
>> _.ssh(‘foo’, ‘bar’)
servers#bootstrap
>> AWS[:compute].servers.bootstrap(
  :image_id => ‘ami’,
  :private_key_path => ‘~/.ssh/id_rsa’,
  :public_key_path => ‘~/.ssh/id_rsa.pub’
)
<Fog::AWS::Compute::Server ... []>
>> _.ssh(‘pwd’)
[#<Fog::SSH::Result @stdout=”/Users/root” ...>]
>> _.ssh(‘foo’, ‘bar’)
[#<Fog::SSH::Result ...>, #<Fog::SSH::Result ...>]
Configuration
Configuration
for more complex/repeatable setup
Configuration
      for more complex/repeatable setup
  chef - http://opscode.com/chef
puppet - http://puppetlabs.com/puppet/introduction
Switching Providers?




            Light Switch Complicator - lenore-m - flickr.com/photos/lenore-m/510420532
servers#create
servers#create
>> Bluebox[:compute].servers.create
servers#create
>> Bluebox[:compute].servers.create
ArgumentError: image_id is required ...
servers#create
>> Bluebox[:compute].servers.create
ArgumentError: image_id is required ...
>> Rackspace[:compute].servers.create
servers#create
>> Bluebox[:compute].servers.create
ArgumentError: image_id is required ...
>> Rackspace[:compute].servers.create
ArgumentError: image_id and name are required ...
servers#create
>> Bluebox[:compute].servers.create
ArgumentError: image_id is required ...
>> Rackspace[:compute].servers.create
ArgumentError: image_id and name are required ...
>> Slicehost[:compute].servers.create
servers#create
>> Bluebox[:compute].servers.create
ArgumentError: image_id is required ...
>> Rackspace[:compute].servers.create
ArgumentError: image_id and name are required ...
>> Slicehost[:compute].servers.create
ArgumentError: image_id and name are required ...
servers#create
>> Bluebox[:compute].servers.create
ArgumentError: image_id is required ...
>> Rackspace[:compute].servers.create
ArgumentError: image_id and name are required ...
>> Slicehost[:compute].servers.create
ArgumentError: image_id and name are required ...

         different parameters, same methods
Simulation




      John Manning John’s Flight Simulator - yugen - flickr.com/photos/yugen/3119723360
Simulation
   make believing
    your way to
better infrastructure




             John Manning John’s Flight Simulator - yugen - flickr.com/photos/yugen/3119723360
Simulation
    make believing
     your way to
 better infrastructure
     Fog.mock!
         or
⌘ FOG_MOCK=true fog




              John Manning John’s Flight Simulator - yugen - flickr.com/photos/yugen/3119723360
Next Steps
Getting Help
Getting Help
additional resources (see also: README)
Getting Help
    additional resources (see also: README)
      bugs - http://github.com/geemus/fog/issues
         irc - irc://irc.freenode.net/ruby-fog
mailing list - http://groups.google.com/group/ruby-fog
The Future




        Rettrofuturism - grumbler - flickr.com/photos/grumbler/297064185
The Future
  modularity




               Rettrofuturism - grumbler - flickr.com/photos/grumbler/297064185
The Future
  modularity
  providers




               Rettrofuturism - grumbler - flickr.com/photos/grumbler/297064185
The Future
  modularity
  providers
 abstractions




                Rettrofuturism - grumbler - flickr.com/photos/grumbler/297064185
The Future
  modularity
  providers
 abstractions
   testing




                Rettrofuturism - grumbler - flickr.com/photos/grumbler/297064185
Get Involved
Get Involved
additional resources (see also: README)
Get Involved
      additional resources (see also: README)
   guide - github.com/geemus/fog/wiki/contributor-guide
providers - github.com/geemus/fog/wiki/providers
   users - github.com/geemus/fog/wiki/in-the-wild
Questions?




        Clouds oven IL-RT50 - richardcox - flickr.com/photos/richardcox/3892767597

Contenu connexe

Tendances

Dealing with Continuous Data Processing, ConFoo 2012
Dealing with Continuous Data Processing, ConFoo 2012Dealing with Continuous Data Processing, ConFoo 2012
Dealing with Continuous Data Processing, ConFoo 2012Michael Peacock
 
Powershell for Log Analysis and Data Crunching
 Powershell for Log Analysis and Data Crunching Powershell for Log Analysis and Data Crunching
Powershell for Log Analysis and Data CrunchingMichelle D'israeli
 
優しいWAFの作り方
優しいWAFの作り方優しいWAFの作り方
優しいWAFの作り方techmemo
 
Fullstack Conference - Proxies before proxies: The hidden gems of Javascript...
Fullstack Conference -  Proxies before proxies: The hidden gems of Javascript...Fullstack Conference -  Proxies before proxies: The hidden gems of Javascript...
Fullstack Conference - Proxies before proxies: The hidden gems of Javascript...Tim Chaplin
 
PowerShell User Group Hamburg - PowerCLI
PowerShell User Group Hamburg - PowerCLIPowerShell User Group Hamburg - PowerCLI
PowerShell User Group Hamburg - PowerCLIMarkus Kraus
 
Amazon Route53へのドメイン移管
Amazon Route53へのドメイン移管Amazon Route53へのドメイン移管
Amazon Route53へのドメイン移管Jin k
 
We All Live in a Yellow (Serverless) Submarine
We All Live in a Yellow (Serverless) SubmarineWe All Live in a Yellow (Serverless) Submarine
We All Live in a Yellow (Serverless) SubmarineFITC
 
Real time voice call integration - Confoo 2012
Real time voice call integration - Confoo 2012Real time voice call integration - Confoo 2012
Real time voice call integration - Confoo 2012Michael Peacock
 
Terraform in deployment pipeline
Terraform in deployment pipelineTerraform in deployment pipeline
Terraform in deployment pipelineAnton Babenko
 
Deep Dive: AWS Command Line Interface
Deep Dive: AWS Command Line InterfaceDeep Dive: AWS Command Line Interface
Deep Dive: AWS Command Line InterfaceAmazon Web Services
 
3 things you must know to think reactive - Geecon Kraków 2015
3 things you must know to think reactive - Geecon Kraków 20153 things you must know to think reactive - Geecon Kraków 2015
3 things you must know to think reactive - Geecon Kraków 2015Manuel Bernhardt
 
VMUGIT UC 2013 - 07c Veeam
VMUGIT UC 2013 - 07c VeeamVMUGIT UC 2013 - 07c Veeam
VMUGIT UC 2013 - 07c VeeamVMUG IT
 
Developing Terraform Modules at Scale - HashiTalks 2021
Developing Terraform Modules at Scale - HashiTalks 2021Developing Terraform Modules at Scale - HashiTalks 2021
Developing Terraform Modules at Scale - HashiTalks 2021TomStraub5
 
Charla - SharePoint en la Nube (17Jul2013)
Charla - SharePoint en la Nube (17Jul2013)Charla - SharePoint en la Nube (17Jul2013)
Charla - SharePoint en la Nube (17Jul2013)Juan Andrés Valenzuela
 
(DEV201) AWS SDK For Go: Gophers Get Going with AWS
(DEV201) AWS SDK For Go: Gophers Get Going with AWS(DEV201) AWS SDK For Go: Gophers Get Going with AWS
(DEV201) AWS SDK For Go: Gophers Get Going with AWSAmazon Web Services
 

Tendances (20)

Nubilus Perl
Nubilus PerlNubilus Perl
Nubilus Perl
 
Final terraform
Final terraformFinal terraform
Final terraform
 
Dealing with Continuous Data Processing, ConFoo 2012
Dealing with Continuous Data Processing, ConFoo 2012Dealing with Continuous Data Processing, ConFoo 2012
Dealing with Continuous Data Processing, ConFoo 2012
 
Powershell for Log Analysis and Data Crunching
 Powershell for Log Analysis and Data Crunching Powershell for Log Analysis and Data Crunching
Powershell for Log Analysis and Data Crunching
 
優しいWAFの作り方
優しいWAFの作り方優しいWAFの作り方
優しいWAFの作り方
 
Fullstack Conference - Proxies before proxies: The hidden gems of Javascript...
Fullstack Conference -  Proxies before proxies: The hidden gems of Javascript...Fullstack Conference -  Proxies before proxies: The hidden gems of Javascript...
Fullstack Conference - Proxies before proxies: The hidden gems of Javascript...
 
PowerShell User Group Hamburg - PowerCLI
PowerShell User Group Hamburg - PowerCLIPowerShell User Group Hamburg - PowerCLI
PowerShell User Group Hamburg - PowerCLI
 
Amazon Route53へのドメイン移管
Amazon Route53へのドメイン移管Amazon Route53へのドメイン移管
Amazon Route53へのドメイン移管
 
Refactoring Infrastructure Code
Refactoring Infrastructure CodeRefactoring Infrastructure Code
Refactoring Infrastructure Code
 
We All Live in a Yellow (Serverless) Submarine
We All Live in a Yellow (Serverless) SubmarineWe All Live in a Yellow (Serverless) Submarine
We All Live in a Yellow (Serverless) Submarine
 
Real time voice call integration - Confoo 2012
Real time voice call integration - Confoo 2012Real time voice call integration - Confoo 2012
Real time voice call integration - Confoo 2012
 
Deploying SharePoint @ Cloud
Deploying SharePoint @ CloudDeploying SharePoint @ Cloud
Deploying SharePoint @ Cloud
 
Terraform in deployment pipeline
Terraform in deployment pipelineTerraform in deployment pipeline
Terraform in deployment pipeline
 
Deep Dive: AWS Command Line Interface
Deep Dive: AWS Command Line InterfaceDeep Dive: AWS Command Line Interface
Deep Dive: AWS Command Line Interface
 
3 things you must know to think reactive - Geecon Kraków 2015
3 things you must know to think reactive - Geecon Kraków 20153 things you must know to think reactive - Geecon Kraków 2015
3 things you must know to think reactive - Geecon Kraków 2015
 
VMUGIT UC 2013 - 07c Veeam
VMUGIT UC 2013 - 07c VeeamVMUGIT UC 2013 - 07c Veeam
VMUGIT UC 2013 - 07c Veeam
 
Developing Terraform Modules at Scale - HashiTalks 2021
Developing Terraform Modules at Scale - HashiTalks 2021Developing Terraform Modules at Scale - HashiTalks 2021
Developing Terraform Modules at Scale - HashiTalks 2021
 
Charla - SharePoint en la Nube (17Jul2013)
Charla - SharePoint en la Nube (17Jul2013)Charla - SharePoint en la Nube (17Jul2013)
Charla - SharePoint en la Nube (17Jul2013)
 
Dockercompose
DockercomposeDockercompose
Dockercompose
 
(DEV201) AWS SDK For Go: Gophers Get Going with AWS
(DEV201) AWS SDK For Go: Gophers Get Going with AWS(DEV201) AWS SDK For Go: Gophers Get Going with AWS
(DEV201) AWS SDK For Go: Gophers Get Going with AWS
 

Similaire à geemus (Wesley Beary) cloud architect

Kube-AWS
Kube-AWSKube-AWS
Kube-AWSCoreOS
 
Kubernetes Networking
Kubernetes NetworkingKubernetes Networking
Kubernetes NetworkingCJ Cullen
 
Cutting through the fog of cloud
Cutting through the fog of cloudCutting through the fog of cloud
Cutting through the fog of cloudKyle Rames
 
What Is AWS Elastic Kubernetes Service
 What Is AWS Elastic Kubernetes Service What Is AWS Elastic Kubernetes Service
What Is AWS Elastic Kubernetes ServiceAMELIAOLIVIA2
 
Shakr - Container CI/CD with Google Cloud Platform
Shakr - Container CI/CD with Google Cloud PlatformShakr - Container CI/CD with Google Cloud Platform
Shakr - Container CI/CD with Google Cloud PlatformMinku Lee
 
A Crash Course on Serverless Applications in Python
A Crash Course on Serverless Applications in PythonA Crash Course on Serverless Applications in Python
A Crash Course on Serverless Applications in PythonJames Saryerwinnie
 
An intro to Docker, Terraform, and Amazon ECS
An intro to Docker, Terraform, and Amazon ECSAn intro to Docker, Terraform, and Amazon ECS
An intro to Docker, Terraform, and Amazon ECSYevgeniy Brikman
 
VSTS/ TFS automated Release Pipelines for Web Applications with Docker
VSTS/ TFS automated Release Pipelines for Web Applications with DockerVSTS/ TFS automated Release Pipelines for Web Applications with Docker
VSTS/ TFS automated Release Pipelines for Web Applications with DockerMarc Müller
 
Assembling an Open Source Toolchain to Manage Public, Private and Hybrid Clou...
Assembling an Open Source Toolchain to Manage Public, Private and Hybrid Clou...Assembling an Open Source Toolchain to Manage Public, Private and Hybrid Clou...
Assembling an Open Source Toolchain to Manage Public, Private and Hybrid Clou...POSSCON
 
Running Docker in Development & Production (#ndcoslo 2015)
Running Docker in Development & Production (#ndcoslo 2015)Running Docker in Development & Production (#ndcoslo 2015)
Running Docker in Development & Production (#ndcoslo 2015)Ben Hall
 
Itb session v_memcached
Itb session v_memcachedItb session v_memcached
Itb session v_memcachedSkills Matter
 
CoreOS in a Nutshell
CoreOS in a NutshellCoreOS in a Nutshell
CoreOS in a NutshellCoreOS
 
Crud operations using aws dynamo db with flask ap is and boto3
Crud operations using aws dynamo db with flask ap is and boto3Crud operations using aws dynamo db with flask ap is and boto3
Crud operations using aws dynamo db with flask ap is and boto3Katy Slemon
 
Kubernetes: Wie Chefkoch.de mit Containern arbeitet
Kubernetes: Wie Chefkoch.de mit Containern arbeitetKubernetes: Wie Chefkoch.de mit Containern arbeitet
Kubernetes: Wie Chefkoch.de mit Containern arbeitetPer Bernhardt
 
OpenSource ToolChain for the Hybrid Cloud
OpenSource ToolChain for the Hybrid CloudOpenSource ToolChain for the Hybrid Cloud
OpenSource ToolChain for the Hybrid CloudIsaac Christoffersen
 
Single Page Web Applications with CoffeeScript, Backbone and Jasmine
Single Page Web Applications with CoffeeScript, Backbone and JasmineSingle Page Web Applications with CoffeeScript, Backbone and Jasmine
Single Page Web Applications with CoffeeScript, Backbone and JasminePaulo Ragonha
 
What\'s new in Rails 2.1
What\'s new in Rails 2.1What\'s new in Rails 2.1
What\'s new in Rails 2.1Keith Pitty
 
fog or: How I Learned to Stop Worrying and Love the Cloud
fog or: How I Learned to Stop Worrying and Love the Cloudfog or: How I Learned to Stop Worrying and Love the Cloud
fog or: How I Learned to Stop Worrying and Love the CloudWesley Beary
 
Symfony tips and tricks
Symfony tips and tricksSymfony tips and tricks
Symfony tips and tricksJavier Eguiluz
 
RESTful API を Chalice で紐解く 〜 Python Serverless Microframework for AWS 〜
RESTful API を Chalice で紐解く 〜 Python Serverless Microframework for AWS 〜RESTful API を Chalice で紐解く 〜 Python Serverless Microframework for AWS 〜
RESTful API を Chalice で紐解く 〜 Python Serverless Microframework for AWS 〜崇之 清水
 

Similaire à geemus (Wesley Beary) cloud architect (20)

Kube-AWS
Kube-AWSKube-AWS
Kube-AWS
 
Kubernetes Networking
Kubernetes NetworkingKubernetes Networking
Kubernetes Networking
 
Cutting through the fog of cloud
Cutting through the fog of cloudCutting through the fog of cloud
Cutting through the fog of cloud
 
What Is AWS Elastic Kubernetes Service
 What Is AWS Elastic Kubernetes Service What Is AWS Elastic Kubernetes Service
What Is AWS Elastic Kubernetes Service
 
Shakr - Container CI/CD with Google Cloud Platform
Shakr - Container CI/CD with Google Cloud PlatformShakr - Container CI/CD with Google Cloud Platform
Shakr - Container CI/CD with Google Cloud Platform
 
A Crash Course on Serverless Applications in Python
A Crash Course on Serverless Applications in PythonA Crash Course on Serverless Applications in Python
A Crash Course on Serverless Applications in Python
 
An intro to Docker, Terraform, and Amazon ECS
An intro to Docker, Terraform, and Amazon ECSAn intro to Docker, Terraform, and Amazon ECS
An intro to Docker, Terraform, and Amazon ECS
 
VSTS/ TFS automated Release Pipelines for Web Applications with Docker
VSTS/ TFS automated Release Pipelines for Web Applications with DockerVSTS/ TFS automated Release Pipelines for Web Applications with Docker
VSTS/ TFS automated Release Pipelines for Web Applications with Docker
 
Assembling an Open Source Toolchain to Manage Public, Private and Hybrid Clou...
Assembling an Open Source Toolchain to Manage Public, Private and Hybrid Clou...Assembling an Open Source Toolchain to Manage Public, Private and Hybrid Clou...
Assembling an Open Source Toolchain to Manage Public, Private and Hybrid Clou...
 
Running Docker in Development & Production (#ndcoslo 2015)
Running Docker in Development & Production (#ndcoslo 2015)Running Docker in Development & Production (#ndcoslo 2015)
Running Docker in Development & Production (#ndcoslo 2015)
 
Itb session v_memcached
Itb session v_memcachedItb session v_memcached
Itb session v_memcached
 
CoreOS in a Nutshell
CoreOS in a NutshellCoreOS in a Nutshell
CoreOS in a Nutshell
 
Crud operations using aws dynamo db with flask ap is and boto3
Crud operations using aws dynamo db with flask ap is and boto3Crud operations using aws dynamo db with flask ap is and boto3
Crud operations using aws dynamo db with flask ap is and boto3
 
Kubernetes: Wie Chefkoch.de mit Containern arbeitet
Kubernetes: Wie Chefkoch.de mit Containern arbeitetKubernetes: Wie Chefkoch.de mit Containern arbeitet
Kubernetes: Wie Chefkoch.de mit Containern arbeitet
 
OpenSource ToolChain for the Hybrid Cloud
OpenSource ToolChain for the Hybrid CloudOpenSource ToolChain for the Hybrid Cloud
OpenSource ToolChain for the Hybrid Cloud
 
Single Page Web Applications with CoffeeScript, Backbone and Jasmine
Single Page Web Applications with CoffeeScript, Backbone and JasmineSingle Page Web Applications with CoffeeScript, Backbone and Jasmine
Single Page Web Applications with CoffeeScript, Backbone and Jasmine
 
What\'s new in Rails 2.1
What\'s new in Rails 2.1What\'s new in Rails 2.1
What\'s new in Rails 2.1
 
fog or: How I Learned to Stop Worrying and Love the Cloud
fog or: How I Learned to Stop Worrying and Love the Cloudfog or: How I Learned to Stop Worrying and Love the Cloud
fog or: How I Learned to Stop Worrying and Love the Cloud
 
Symfony tips and tricks
Symfony tips and tricksSymfony tips and tricks
Symfony tips and tricks
 
RESTful API を Chalice で紐解く 〜 Python Serverless Microframework for AWS 〜
RESTful API を Chalice で紐解く 〜 Python Serverless Microframework for AWS 〜RESTful API を Chalice で紐解く 〜 Python Serverless Microframework for AWS 〜
RESTful API を Chalice で紐解く 〜 Python Serverless Microframework for AWS 〜
 

Dernier

"Debugging python applications inside k8s environment", Andrii Soldatenko
"Debugging python applications inside k8s environment", Andrii Soldatenko"Debugging python applications inside k8s environment", Andrii Soldatenko
"Debugging python applications inside k8s environment", Andrii SoldatenkoFwdays
 
Time Series Foundation Models - current state and future directions
Time Series Foundation Models - current state and future directionsTime Series Foundation Models - current state and future directions
Time Series Foundation Models - current state and future directionsNathaniel Shimoni
 
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024BookNet Canada
 
Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!Commit University
 
A Journey Into the Emotions of Software Developers
A Journey Into the Emotions of Software DevelopersA Journey Into the Emotions of Software Developers
A Journey Into the Emotions of Software DevelopersNicole Novielli
 
The Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and ConsThe Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and ConsPixlogix Infotech
 
DSPy a system for AI to Write Prompts and Do Fine Tuning
DSPy a system for AI to Write Prompts and Do Fine TuningDSPy a system for AI to Write Prompts and Do Fine Tuning
DSPy a system for AI to Write Prompts and Do Fine TuningLars Bell
 
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptx
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptxThe Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptx
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptxLoriGlavin3
 
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024BookNet Canada
 
TeamStation AI System Report LATAM IT Salaries 2024
TeamStation AI System Report LATAM IT Salaries 2024TeamStation AI System Report LATAM IT Salaries 2024
TeamStation AI System Report LATAM IT Salaries 2024Lonnie McRorey
 
Ryan Mahoney - Will Artificial Intelligence Replace Real Estate Agents
Ryan Mahoney - Will Artificial Intelligence Replace Real Estate AgentsRyan Mahoney - Will Artificial Intelligence Replace Real Estate Agents
Ryan Mahoney - Will Artificial Intelligence Replace Real Estate AgentsRyan Mahoney
 
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptx
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptxMerck Moving Beyond Passwords: FIDO Paris Seminar.pptx
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptxLoriGlavin3
 
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptxUse of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptxLoriGlavin3
 
What is DBT - The Ultimate Data Build Tool.pdf
What is DBT - The Ultimate Data Build Tool.pdfWhat is DBT - The Ultimate Data Build Tool.pdf
What is DBT - The Ultimate Data Build Tool.pdfMounikaPolabathina
 
The State of Passkeys with FIDO Alliance.pptx
The State of Passkeys with FIDO Alliance.pptxThe State of Passkeys with FIDO Alliance.pptx
The State of Passkeys with FIDO Alliance.pptxLoriGlavin3
 
What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024Stephanie Beckett
 
"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr BaganFwdays
 
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptx
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptxPasskey Providers and Enabling Portability: FIDO Paris Seminar.pptx
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptxLoriGlavin3
 
Sample pptx for embedding into website for demo
Sample pptx for embedding into website for demoSample pptx for embedding into website for demo
Sample pptx for embedding into website for demoHarshalMandlekar2
 
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)Mark Simos
 

Dernier (20)

"Debugging python applications inside k8s environment", Andrii Soldatenko
"Debugging python applications inside k8s environment", Andrii Soldatenko"Debugging python applications inside k8s environment", Andrii Soldatenko
"Debugging python applications inside k8s environment", Andrii Soldatenko
 
Time Series Foundation Models - current state and future directions
Time Series Foundation Models - current state and future directionsTime Series Foundation Models - current state and future directions
Time Series Foundation Models - current state and future directions
 
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
 
Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!
 
A Journey Into the Emotions of Software Developers
A Journey Into the Emotions of Software DevelopersA Journey Into the Emotions of Software Developers
A Journey Into the Emotions of Software Developers
 
The Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and ConsThe Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and Cons
 
DSPy a system for AI to Write Prompts and Do Fine Tuning
DSPy a system for AI to Write Prompts and Do Fine TuningDSPy a system for AI to Write Prompts and Do Fine Tuning
DSPy a system for AI to Write Prompts and Do Fine Tuning
 
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptx
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptxThe Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptx
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptx
 
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
 
TeamStation AI System Report LATAM IT Salaries 2024
TeamStation AI System Report LATAM IT Salaries 2024TeamStation AI System Report LATAM IT Salaries 2024
TeamStation AI System Report LATAM IT Salaries 2024
 
Ryan Mahoney - Will Artificial Intelligence Replace Real Estate Agents
Ryan Mahoney - Will Artificial Intelligence Replace Real Estate AgentsRyan Mahoney - Will Artificial Intelligence Replace Real Estate Agents
Ryan Mahoney - Will Artificial Intelligence Replace Real Estate Agents
 
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptx
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptxMerck Moving Beyond Passwords: FIDO Paris Seminar.pptx
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptx
 
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptxUse of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
 
What is DBT - The Ultimate Data Build Tool.pdf
What is DBT - The Ultimate Data Build Tool.pdfWhat is DBT - The Ultimate Data Build Tool.pdf
What is DBT - The Ultimate Data Build Tool.pdf
 
The State of Passkeys with FIDO Alliance.pptx
The State of Passkeys with FIDO Alliance.pptxThe State of Passkeys with FIDO Alliance.pptx
The State of Passkeys with FIDO Alliance.pptx
 
What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024
 
"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan
 
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptx
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptxPasskey Providers and Enabling Portability: FIDO Paris Seminar.pptx
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptx
 
Sample pptx for embedding into website for demo
Sample pptx for embedding into website for demoSample pptx for embedding into website for demo
Sample pptx for embedding into website for demo
 
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
 

geemus (Wesley Beary) cloud architect

Notes de l'éditeur