SlideShare a Scribd company logo
1 of 31
Download to read offline
Thomas Krille
“Vagrant is a tool for building complete development
environments. [...] Vagrant lowers development
environment setup time [...] and makes the "works
on my machine" excuse a relic of the past.”
Was ist Vagrant?
Quelle: https://www.vagrantup.com/about.html
Orchestrations-Tool für VMs
Provider: VirtualBox, VMware, AWS, libvirt, Docker …
Provisioner: Shell Scripts, Puppet, Ansible, Docker …
Ruby
Plugins
Was ist Vagrant?
2010 von Mitchell Hashimoto
Gründung von HashiCorp 2012
Open Source, MIT License
Linux, Mac OS X, Windows
Was ist Vagrant?
“development environments”
Was ist Vagrant?
isoliert
reproduzierbar
konsistent
Einweg-VMs
Einheitlicher Workflow
Einfache Installation
Warum Vagrant?
Devs
Ops
Designer
QS
...
Warum Vagrant?
Vagrantfile: “Saat” für VMs
Ruby-DSL
data-as-code
ähnlich Dockerfile
Vagrantfile
Demo
Vagrantfile
$ vagrant init ubuntu/trusty64
$ vagrant up
$ vagrant ssh
$ vagrant destroy
Vagrant.configure(2) do |config|
config.vm.box = 'ubuntu/trusty64'
end
Vagrantfile
fertige Templates für VMs
Versioniert, Gebunden an Provider
Standard-Quelle: HashiCorps Atlas box catalog
Selber machen: Packer
Beliebige weitere Quellen (Lokal, Web, ...)
Vagrantfile - Boxes
Technische Einstellungen der VM
Speicher, CPUs, …
Provider spezifische Einstellungen
Vagrant.configure(2) do |config|
...
config.vm.provider :virtualbox do |vb|
vb.memory = 1024
vb.cpus = 2
vb.gui = true
end
...
end
Vagrantfile - Provider Settings
Dateien mit Host teilen
Standard: Projektverzeichnis unter /vagrant
verschiedene Typen: VirtualBox, NFS, RSync, SMB
Vagrant.configure(2) do |config|
...
config.vm.synced_folder 'target/', '/media/wars'
config.vm.synced_folder '.', '/vagrant', :disabled => true
...
end
Vagrantfile - Synced Folders
reproduzierbares Aufsetzen
Mit dabei: Datei kopieren, Shell-Skript, Puppet,
Ansible, Docker, Chef, Salt, CFEngine
Weitere über Plugins
Vagrantfile - Provisioners
Datei kopieren
Vagrant.configure(2) do |config|
...
config.vm.provision :file, :source => 'my_file',
:destination => '/tmp/my_file'
...
end
Vagrantfile - File Provisioner
Shell-Skript ausführen
Vagrant.configure(2) do |config|
...
config.vm.provision :shell,
:path => 'bootstrap.sh'
config.vm.provision :shell,
:inline => 'apt-get install tomcat7'
...
end
Vagrantfile - Shell Provisioner
Puppet-Run starten ohne Master
Vagrant.configure(2) do |config|
...
config.vm.provision :puppet do |puppet|
puppet.manifests_path = 'puppet/manifests'
puppet.module_path = 'puppet/modules'
puppet.options = '--test'
end
...
end
Vagrantfile - Puppet Provisioner (apply)
Management Interface + NAT
Port Forwarding, Private Network, Bridge
DHCP oder Static IP
MAC-Adressen
Mehrere Netzwerke möglich
Vagrantfile - Network
Port Forwarding
Vagrant.configure(2) do |config|
...
config.vm.network :forwarded_port,
:guest => 5432, :host => 5432
config.vm.network :forwarded_port,
:guest => 8080, :host => 8080
...
end
Vagrantfile - Network
Private Network
Vagrant.configure(2) do |config|
...
config.vm.network :private_network, :type => 'dhcp'
config.vm.network :private_network, :ip => '192.168.20.2'
...
end
Vagrantfile - Network
Bridge
Vagrant.configure(2) do |config|
...
config.vm.network :public_network, :bridge => 'eth0',
:ip => '192.168.1.2'
...
end
Vagrantfile - Network
Demo
Vagrantfile
Installation von Docker
docker run
docker pull
docker build
Docker Provisioner
docker run
Vagrant.configure(2) do |config|
...
config.vm.provision :docker do |docker|
docker.run 'osiam',
:image => 'osiamorg/osiam:1.3.2',
:args => '-v /vagrant:/media/vagrant 
-p 8080:8080 
-p 5432:5432'
end
...
end
Docker Provisioner
Demo
Docker Provisioner
Standby: vagrant suspend
Poweroff: vagrant halt
Zerstören: vagrant destroy
VM Beenden
Sicherheit von Vagrant
==
Sicherheit von Provider
aber ...
Security
Vertrauen in Box
Selber machen: Packer
Wie bei Docker Hub, Maven Central, …
Security
vagrant user == root
Passwortloses sudo
Passwort: vagrant
root-Passwort: vagrant
Aber: frische, einzigartige SSH-Keys
Das ist gewollt!
Security
Externe Konfiguration
Multi VM Environments
Ausnutzen von Ruby
Zusätzlicher Storage
-> Lightning Talk am 4. Mai 2015
Advanced Vagrant
• https://www.vagrantup.com/
• https://docs.vagrantup.com/
• Vagrant: Up and Running (O'Reilly Media)
http://shop.oreilly.com/product/0636920026358.do
• Beispiele zum Talk
https://github.com/tkrille/tech-talk-vagrant
Links

More Related Content

What's hot

Docker and OpenStack Boston Meetup
Docker and OpenStack Boston MeetupDocker and OpenStack Boston Meetup
Docker and OpenStack Boston Meetup
Kamesh Pemmaraju
 
Microservices. Microservices everywhere! (At OSCON 2015)
Microservices. Microservices everywhere! (At OSCON 2015)Microservices. Microservices everywhere! (At OSCON 2015)
Microservices. Microservices everywhere! (At OSCON 2015)
Jérôme Petazzoni
 

What's hot (20)

Docker 101 - from 0 to Docker in 30 minutes
Docker 101 - from 0 to Docker in 30 minutesDocker 101 - from 0 to Docker in 30 minutes
Docker 101 - from 0 to Docker in 30 minutes
 
[DockerCon 2019] Hardening Docker daemon with Rootless mode
[DockerCon 2019] Hardening Docker daemon with Rootless mode[DockerCon 2019] Hardening Docker daemon with Rootless mode
[DockerCon 2019] Hardening Docker daemon with Rootless mode
 
LXC, Docker, and the future of software delivery | LinuxCon 2013
LXC, Docker, and the future of software delivery | LinuxCon 2013LXC, Docker, and the future of software delivery | LinuxCon 2013
LXC, Docker, and the future of software delivery | LinuxCon 2013
 
Learn docker in 90 minutes
Learn docker in 90 minutesLearn docker in 90 minutes
Learn docker in 90 minutes
 
Docker and OpenStack Boston Meetup
Docker and OpenStack Boston MeetupDocker and OpenStack Boston Meetup
Docker and OpenStack Boston Meetup
 
Docker open stack boston
Docker open stack bostonDocker open stack boston
Docker open stack boston
 
Perspectives on Docker
Perspectives on DockerPerspectives on Docker
Perspectives on Docker
 
Linux Container Brief for IEEE WG P2302
Linux Container Brief for IEEE WG P2302Linux Container Brief for IEEE WG P2302
Linux Container Brief for IEEE WG P2302
 
Containers: from development to production at DevNation 2015
Containers: from development to production at DevNation 2015Containers: from development to production at DevNation 2015
Containers: from development to production at DevNation 2015
 
The Lies We Tell Our Code (#seascale 2015 04-22)
The Lies We Tell Our Code (#seascale 2015 04-22)The Lies We Tell Our Code (#seascale 2015 04-22)
The Lies We Tell Our Code (#seascale 2015 04-22)
 
Introduction to Project atomic (CentOS Dojo Bangalore)
Introduction to Project atomic (CentOS Dojo Bangalore)Introduction to Project atomic (CentOS Dojo Bangalore)
Introduction to Project atomic (CentOS Dojo Bangalore)
 
App container rkt
App container rktApp container rkt
App container rkt
 
猿でもわかるコンテナ
猿でもわかるコンテナ猿でもわかるコンテナ
猿でもわかるコンテナ
 
Microservices. Microservices everywhere! (At OSCON 2015)
Microservices. Microservices everywhere! (At OSCON 2015)Microservices. Microservices everywhere! (At OSCON 2015)
Microservices. Microservices everywhere! (At OSCON 2015)
 
Introduction to docker
Introduction to dockerIntroduction to docker
Introduction to docker
 
JOSA TechTalk: Taking Docker to Production
JOSA TechTalk: Taking Docker to ProductionJOSA TechTalk: Taking Docker to Production
JOSA TechTalk: Taking Docker to Production
 
Introduction to Docker at SF Peninsula Software Development Meetup @Guidewire
Introduction to Docker at SF Peninsula Software Development Meetup @GuidewireIntroduction to Docker at SF Peninsula Software Development Meetup @Guidewire
Introduction to Docker at SF Peninsula Software Development Meetup @Guidewire
 
First steps to docker
First steps to dockerFirst steps to docker
First steps to docker
 
Docker 初探,實驗室中的運貨鯨
Docker 初探,實驗室中的運貨鯨Docker 初探,實驗室中的運貨鯨
Docker 初探,實驗室中的運貨鯨
 
Introduction to Docker, December 2014 "Tour de France" Bordeaux Special Edition
Introduction to Docker, December 2014 "Tour de France" Bordeaux Special EditionIntroduction to Docker, December 2014 "Tour de France" Bordeaux Special Edition
Introduction to Docker, December 2014 "Tour de France" Bordeaux Special Edition
 

Viewers also liked

Bmdsys für slideshow
Bmdsys für slideshowBmdsys für slideshow
Bmdsys für slideshow
heilholz
 
Contextos sec 99
Contextos sec 99Contextos sec 99
Contextos sec 99
Javier Sanchez
 
Polit monitor lëtzebuerg_-_rtl_luxemburger_wort_september_2013_volet_4_perspe...
Polit monitor lëtzebuerg_-_rtl_luxemburger_wort_september_2013_volet_4_perspe...Polit monitor lëtzebuerg_-_rtl_luxemburger_wort_september_2013_volet_4_perspe...
Polit monitor lëtzebuerg_-_rtl_luxemburger_wort_september_2013_volet_4_perspe...
Tns-Ilres
 

Viewers also liked (20)

Ansible Tower | Docker | Cisco ACI
Ansible Tower | Docker | Cisco ACIAnsible Tower | Docker | Cisco ACI
Ansible Tower | Docker | Cisco ACI
 
Vagrant, Puppet, Docker für Entwickler und Architekten
Vagrant, Puppet, Docker für Entwickler und ArchitektenVagrant, Puppet, Docker für Entwickler und Architekten
Vagrant, Puppet, Docker für Entwickler und Architekten
 
Flickr zerbitzuaren oinarrizko ezaugarriak
Flickr zerbitzuaren oinarrizko ezaugarriakFlickr zerbitzuaren oinarrizko ezaugarriak
Flickr zerbitzuaren oinarrizko ezaugarriak
 
Devops ohne root
Devops ohne rootDevops ohne root
Devops ohne root
 
Ensayo TC
Ensayo TCEnsayo TC
Ensayo TC
 
La esperanza 14mar2011
La esperanza 14mar2011La esperanza 14mar2011
La esperanza 14mar2011
 
BJC Abschlussdokumentation
BJC AbschlussdokumentationBJC Abschlussdokumentation
BJC Abschlussdokumentation
 
Bmdsys für slideshow
Bmdsys für slideshowBmdsys für slideshow
Bmdsys für slideshow
 
Botto S LemaTrabajo final 1º 3
Botto S LemaTrabajo final 1º 3 Botto S LemaTrabajo final 1º 3
Botto S LemaTrabajo final 1º 3
 
Contextos sec 99
Contextos sec 99Contextos sec 99
Contextos sec 99
 
Carnavales 2011
Carnavales 2011Carnavales 2011
Carnavales 2011
 
Sistemas de información
Sistemas de informaciónSistemas de información
Sistemas de información
 
USO BASICO DE EXCEL2010
USO BASICO DE EXCEL2010USO BASICO DE EXCEL2010
USO BASICO DE EXCEL2010
 
Poesía, lenguaje de los sentidos
Poesía, lenguaje de los sentidosPoesía, lenguaje de los sentidos
Poesía, lenguaje de los sentidos
 
Polit monitor lëtzebuerg_-_rtl_luxemburger_wort_september_2013_volet_4_perspe...
Polit monitor lëtzebuerg_-_rtl_luxemburger_wort_september_2013_volet_4_perspe...Polit monitor lëtzebuerg_-_rtl_luxemburger_wort_september_2013_volet_4_perspe...
Polit monitor lëtzebuerg_-_rtl_luxemburger_wort_september_2013_volet_4_perspe...
 
RidersON
RidersONRidersON
RidersON
 
Intervention Fabien Raimbaud - Structuration touristique - INTERPATT 2012
Intervention Fabien Raimbaud - Structuration touristique - INTERPATT 2012Intervention Fabien Raimbaud - Structuration touristique - INTERPATT 2012
Intervention Fabien Raimbaud - Structuration touristique - INTERPATT 2012
 
Presentacionelcaminohaci
Presentacionelcaminohaci Presentacionelcaminohaci
Presentacionelcaminohaci
 
Manual iniciacion
Manual iniciacionManual iniciacion
Manual iniciacion
 
La statistique du chômage au sens du BIT en Suisse
La statistique du chômage au sens du BIT en SuisseLa statistique du chômage au sens du BIT en Suisse
La statistique du chômage au sens du BIT en Suisse
 

Similar to Tech Talk - Vagrant

Continuous Delivery with Maven, Puppet and Tomcat - ApacheCon NA 2013
Continuous Delivery with Maven, Puppet and Tomcat - ApacheCon NA 2013Continuous Delivery with Maven, Puppet and Tomcat - ApacheCon NA 2013
Continuous Delivery with Maven, Puppet and Tomcat - ApacheCon NA 2013
Carlos Sanchez
 
Harmonious Development: Standardizing The Deployment Process via Vagrant and ...
Harmonious Development: Standardizing The Deployment Process via Vagrant and ...Harmonious Development: Standardizing The Deployment Process via Vagrant and ...
Harmonious Development: Standardizing The Deployment Process via Vagrant and ...
Acquia
 
Vagrant-Binding JUG Dortmund
Vagrant-Binding JUG DortmundVagrant-Binding JUG Dortmund
Vagrant-Binding JUG Dortmund
Hendrik Ebbers
 

Similar to Tech Talk - Vagrant (20)

Intro to vagrant
Intro to vagrantIntro to vagrant
Intro to vagrant
 
Vagrant - Version control your dev environment
Vagrant - Version control your dev environmentVagrant - Version control your dev environment
Vagrant - Version control your dev environment
 
Continuous Delivery with Maven, Puppet and Tomcat - ApacheCon NA 2013
Continuous Delivery with Maven, Puppet and Tomcat - ApacheCon NA 2013Continuous Delivery with Maven, Puppet and Tomcat - ApacheCon NA 2013
Continuous Delivery with Maven, Puppet and Tomcat - ApacheCon NA 2013
 
Postgres the hardway
Postgres the hardwayPostgres the hardway
Postgres the hardway
 
Open stack and_vagrant-os-meetup-2015
Open stack and_vagrant-os-meetup-2015Open stack and_vagrant-os-meetup-2015
Open stack and_vagrant-os-meetup-2015
 
Vagrant
Vagrant Vagrant
Vagrant
 
Continuous Delivery: The Next Frontier
Continuous Delivery: The Next FrontierContinuous Delivery: The Next Frontier
Continuous Delivery: The Next Frontier
 
Minicurso de Vagrant
Minicurso de VagrantMinicurso de Vagrant
Minicurso de Vagrant
 
Harmonious Development: Standardizing The Deployment Process via Vagrant and ...
Harmonious Development: Standardizing The Deployment Process via Vagrant and ...Harmonious Development: Standardizing The Deployment Process via Vagrant and ...
Harmonious Development: Standardizing The Deployment Process via Vagrant and ...
 
Create Development and Production Environments with Vagrant
Create Development and Production Environments with VagrantCreate Development and Production Environments with Vagrant
Create Development and Production Environments with Vagrant
 
Harmonious Development: Via Vagrant and Puppet
Harmonious Development: Via Vagrant and PuppetHarmonious Development: Via Vagrant and Puppet
Harmonious Development: Via Vagrant and Puppet
 
Create your very own Development Environment with Vagrant and Packer
Create your very own Development Environment with Vagrant and PackerCreate your very own Development Environment with Vagrant and Packer
Create your very own Development Environment with Vagrant and Packer
 
Vagrant for real codemotion (moar tips! ;-))
Vagrant for real codemotion (moar tips! ;-))Vagrant for real codemotion (moar tips! ;-))
Vagrant for real codemotion (moar tips! ;-))
 
Virtualization with Vagrant (ua.pycon 2011)
Virtualization with Vagrant (ua.pycon 2011)Virtualization with Vagrant (ua.pycon 2011)
Virtualization with Vagrant (ua.pycon 2011)
 
Software Defined Datacenter
Software Defined DatacenterSoftware Defined Datacenter
Software Defined Datacenter
 
Test driven infrastructure
Test driven infrastructureTest driven infrastructure
Test driven infrastructure
 
Vagrant
VagrantVagrant
Vagrant
 
Vagrant Up in 5 Easy Steps
Vagrant Up in 5 Easy StepsVagrant Up in 5 Easy Steps
Vagrant Up in 5 Easy Steps
 
Vagrant-Binding JUG Dortmund
Vagrant-Binding JUG DortmundVagrant-Binding JUG Dortmund
Vagrant-Binding JUG Dortmund
 
Vagrant - Team Development made easy
Vagrant - Team Development made easyVagrant - Team Development made easy
Vagrant - Team Development made easy
 

Recently uploaded

%+27788225528 love spells in Knoxville Psychic Readings, Attraction spells,Br...
%+27788225528 love spells in Knoxville Psychic Readings, Attraction spells,Br...%+27788225528 love spells in Knoxville Psychic Readings, Attraction spells,Br...
%+27788225528 love spells in Knoxville Psychic Readings, Attraction spells,Br...
masabamasaba
 
The title is not connected to what is inside
The title is not connected to what is insideThe title is not connected to what is inside
The title is not connected to what is inside
shinachiaurasa2
 
Abortion Pills In Pretoria ](+27832195400*)[ 🏥 Women's Abortion Clinic In Pre...
Abortion Pills In Pretoria ](+27832195400*)[ 🏥 Women's Abortion Clinic In Pre...Abortion Pills In Pretoria ](+27832195400*)[ 🏥 Women's Abortion Clinic In Pre...
Abortion Pills In Pretoria ](+27832195400*)[ 🏥 Women's Abortion Clinic In Pre...
Medical / Health Care (+971588192166) Mifepristone and Misoprostol tablets 200mg
 
%+27788225528 love spells in Toronto Psychic Readings, Attraction spells,Brin...
%+27788225528 love spells in Toronto Psychic Readings, Attraction spells,Brin...%+27788225528 love spells in Toronto Psychic Readings, Attraction spells,Brin...
%+27788225528 love spells in Toronto Psychic Readings, Attraction spells,Brin...
masabamasaba
 
Abortion Pill Prices Tembisa [(+27832195400*)] 🏥 Women's Abortion Clinic in T...
Abortion Pill Prices Tembisa [(+27832195400*)] 🏥 Women's Abortion Clinic in T...Abortion Pill Prices Tembisa [(+27832195400*)] 🏥 Women's Abortion Clinic in T...
Abortion Pill Prices Tembisa [(+27832195400*)] 🏥 Women's Abortion Clinic in T...
Medical / Health Care (+971588192166) Mifepristone and Misoprostol tablets 200mg
 
Large-scale Logging Made Easy: Meetup at Deutsche Bank 2024
Large-scale Logging Made Easy: Meetup at Deutsche Bank 2024Large-scale Logging Made Easy: Meetup at Deutsche Bank 2024
Large-scale Logging Made Easy: Meetup at Deutsche Bank 2024
VictoriaMetrics
 

Recently uploaded (20)

Devoxx UK 2024 - Going serverless with Quarkus, GraalVM native images and AWS...
Devoxx UK 2024 - Going serverless with Quarkus, GraalVM native images and AWS...Devoxx UK 2024 - Going serverless with Quarkus, GraalVM native images and AWS...
Devoxx UK 2024 - Going serverless with Quarkus, GraalVM native images and AWS...
 
%in Bahrain+277-882-255-28 abortion pills for sale in Bahrain
%in Bahrain+277-882-255-28 abortion pills for sale in Bahrain%in Bahrain+277-882-255-28 abortion pills for sale in Bahrain
%in Bahrain+277-882-255-28 abortion pills for sale in Bahrain
 
WSO2CON 2024 - Building the API First Enterprise – Running an API Program, fr...
WSO2CON 2024 - Building the API First Enterprise – Running an API Program, fr...WSO2CON 2024 - Building the API First Enterprise – Running an API Program, fr...
WSO2CON 2024 - Building the API First Enterprise – Running an API Program, fr...
 
%+27788225528 love spells in Knoxville Psychic Readings, Attraction spells,Br...
%+27788225528 love spells in Knoxville Psychic Readings, Attraction spells,Br...%+27788225528 love spells in Knoxville Psychic Readings, Attraction spells,Br...
%+27788225528 love spells in Knoxville Psychic Readings, Attraction spells,Br...
 
%in kaalfontein+277-882-255-28 abortion pills for sale in kaalfontein
%in kaalfontein+277-882-255-28 abortion pills for sale in kaalfontein%in kaalfontein+277-882-255-28 abortion pills for sale in kaalfontein
%in kaalfontein+277-882-255-28 abortion pills for sale in kaalfontein
 
The title is not connected to what is inside
The title is not connected to what is insideThe title is not connected to what is inside
The title is not connected to what is inside
 
Abortion Pills In Pretoria ](+27832195400*)[ 🏥 Women's Abortion Clinic In Pre...
Abortion Pills In Pretoria ](+27832195400*)[ 🏥 Women's Abortion Clinic In Pre...Abortion Pills In Pretoria ](+27832195400*)[ 🏥 Women's Abortion Clinic In Pre...
Abortion Pills In Pretoria ](+27832195400*)[ 🏥 Women's Abortion Clinic In Pre...
 
%+27788225528 love spells in Toronto Psychic Readings, Attraction spells,Brin...
%+27788225528 love spells in Toronto Psychic Readings, Attraction spells,Brin...%+27788225528 love spells in Toronto Psychic Readings, Attraction spells,Brin...
%+27788225528 love spells in Toronto Psychic Readings, Attraction spells,Brin...
 
%in Rustenburg+277-882-255-28 abortion pills for sale in Rustenburg
%in Rustenburg+277-882-255-28 abortion pills for sale in Rustenburg%in Rustenburg+277-882-255-28 abortion pills for sale in Rustenburg
%in Rustenburg+277-882-255-28 abortion pills for sale in Rustenburg
 
%in ivory park+277-882-255-28 abortion pills for sale in ivory park
%in ivory park+277-882-255-28 abortion pills for sale in ivory park %in ivory park+277-882-255-28 abortion pills for sale in ivory park
%in ivory park+277-882-255-28 abortion pills for sale in ivory park
 
%in Midrand+277-882-255-28 abortion pills for sale in midrand
%in Midrand+277-882-255-28 abortion pills for sale in midrand%in Midrand+277-882-255-28 abortion pills for sale in midrand
%in Midrand+277-882-255-28 abortion pills for sale in midrand
 
%in Hazyview+277-882-255-28 abortion pills for sale in Hazyview
%in Hazyview+277-882-255-28 abortion pills for sale in Hazyview%in Hazyview+277-882-255-28 abortion pills for sale in Hazyview
%in Hazyview+277-882-255-28 abortion pills for sale in Hazyview
 
What Goes Wrong with Language Definitions and How to Improve the Situation
What Goes Wrong with Language Definitions and How to Improve the SituationWhat Goes Wrong with Language Definitions and How to Improve the Situation
What Goes Wrong with Language Definitions and How to Improve the Situation
 
Abortion Pill Prices Tembisa [(+27832195400*)] 🏥 Women's Abortion Clinic in T...
Abortion Pill Prices Tembisa [(+27832195400*)] 🏥 Women's Abortion Clinic in T...Abortion Pill Prices Tembisa [(+27832195400*)] 🏥 Women's Abortion Clinic in T...
Abortion Pill Prices Tembisa [(+27832195400*)] 🏥 Women's Abortion Clinic in T...
 
OpenChain - The Ramifications of ISO/IEC 5230 and ISO/IEC 18974 for Legal Pro...
OpenChain - The Ramifications of ISO/IEC 5230 and ISO/IEC 18974 for Legal Pro...OpenChain - The Ramifications of ISO/IEC 5230 and ISO/IEC 18974 for Legal Pro...
OpenChain - The Ramifications of ISO/IEC 5230 and ISO/IEC 18974 for Legal Pro...
 
WSO2CON 2024 - WSO2's Digital Transformation Journey with Choreo: A Platforml...
WSO2CON 2024 - WSO2's Digital Transformation Journey with Choreo: A Platforml...WSO2CON 2024 - WSO2's Digital Transformation Journey with Choreo: A Platforml...
WSO2CON 2024 - WSO2's Digital Transformation Journey with Choreo: A Platforml...
 
%in Benoni+277-882-255-28 abortion pills for sale in Benoni
%in Benoni+277-882-255-28 abortion pills for sale in Benoni%in Benoni+277-882-255-28 abortion pills for sale in Benoni
%in Benoni+277-882-255-28 abortion pills for sale in Benoni
 
Large-scale Logging Made Easy: Meetup at Deutsche Bank 2024
Large-scale Logging Made Easy: Meetup at Deutsche Bank 2024Large-scale Logging Made Easy: Meetup at Deutsche Bank 2024
Large-scale Logging Made Easy: Meetup at Deutsche Bank 2024
 
tonesoftg
tonesoftgtonesoftg
tonesoftg
 
%in tembisa+277-882-255-28 abortion pills for sale in tembisa
%in tembisa+277-882-255-28 abortion pills for sale in tembisa%in tembisa+277-882-255-28 abortion pills for sale in tembisa
%in tembisa+277-882-255-28 abortion pills for sale in tembisa
 

Tech Talk - Vagrant