Session on Launching Selenium Grid and Running tests using docker compose and maven – step by step demo by Aditya Garg

Agile Testing Alliance
Agile Testing AllianceAgile Testing Alliance
ADITYA GARG
LAUNCHING SELENIUM GRID AND
RUNNING TESTS USING DOCKER
COMPOSE AND MAVEN – STEP BY
STEP DEMO
@adigindia
https://www.linkedin.com/in/adigarg/
Launching Selenium
Grid and Running tests
using docker compose
and maven – step by
step demo
1.Selenium Grid
2.Docker and docker
compose
3.Maven and docker
compose
Three
main
things
will get
covere
d
Aditya Session
ⓘ Start presenting to display the poll results on this slide.
LITTLE
BACKGROUND
ON GRID
LITTLE BACKGROUND ON GRID
java -jar selenium-server-standalone-3.141.59.jar -role hub
java -Dwebdriver.chrome.driver=chromedriver.exe -jar selenium-server-
standalone-3.141.59.jar -role node -hub
http://192.168.0.114:4444/grid/register/ -port 5555 -browser
browserName="chrome",version=ANY,platform=WIN10,maxInstances=5
It can get cumbersome
Have you
used
some of
these
command
s and
tried
creating a
Grid ?
STEPS THAT I WILL TRY TO DEMO
1
Launching simple Chrome Debug Selenium Grid, Running and Viewing
Tests
2 Launching simple Firefox Debug Selenium Grid, Running and Viewing
Tests
3 Using Docker-compose creating grid and running the tests
4 Running tests using Maven Plugin for docker-compose on the fly grid creation
and destruction
I am using an Ubuntu 16.04.6 VM
on a cloud with the following
setup.
- JDK 1.8
- Maven
- Docker
164.52.193.131
Selenium Test that I am going to use is
simple
1. Visit SeleniumSummit21 site
2. Wait for the title to have
#SeleniumSummit21
3. Go to speaker page
4. Get all the names of the speakers
Demo 0 – Normal Selenium Test
Launching simple Chrome Debug
Selenium Grid, Running and
Viewing Tests
1
Demo 1 – Creating a Chrome Debug Grid and
running the test on that Grid, viewing from
VNC Server
REFERENCE 1
https://github.com/SeleniumHQ/docker-
selenium#debugging
docker run -d -p 4444:4444 -p 5900:5900
-v /dev/shm:/dev/shm
selenium/standalone-chrome:4.0.0-beta-
1-prerelease-20210204
Running Chrome
Stand alone
Debug Grid
(single hub/node)
– testing
purposes
164.52.193.131:4444
Session on Launching Selenium Grid and Running tests using docker compose and maven – step by step demo by Aditya Garg
client
RemoteWebDriver
http://<ipAddress>:<port>/wd/hub
WebDriver driver;
ChromeDriver FirefoxDriver
Schemat
ic used
2
Launching simple Firefox Debug
Selenium Grid, Running and
Viewing Tests
Demo 2 – Creating a Firefox Debug Grid and
running the test on that Grid, viewing from
VNC Server
docker run -d -p 4445:4444 -p
5901:5900 -v /dev/shm:/dev/shm
selenium/standalone-firefox:4.0.0-
beta-1-prerelease-20210204
Running Firefox
Stand alone
Debug Grid
(single hub/node)
– testing
purposes
164.52.193.131:4445 docker ps -a
3
Using Docker-compose creating
grid and running the tests
Installing docker compose
sudo curl -L "https://github.com/docker/compose/releases/download/1.28.2/docker-compose-$(uname -s)-
$(uname -m)" -o /usr/local/bin/docker-compose
sudo chmod +x /usr/local/bin/docker-compose
docker-compose --version
Reference2 :
version: "3"
services:
hub:
image: selenium/hub
ports:
- "4446:4444"
chrome1:
image: selenium/node-chrome
depends_on:
- hub
environment:
- HUB_HOST=hub
chrome2:
image: selenium/node-chrome
depends_on:
- hub
environment:
- HUB_HOST=hub
docker-compose.yaml
Image reference: https://www.qekafe.com/selenium-grid-formation-using-
docker-compose up -d
docker-compose scale <service name> = <no of instances>
docker-compose scale chrome2 = 3
docker-compose up --scale chrome2=3 -d
Scaling nodes at run time
Demo 3 – Running tests on the selenium grid
created using docker-compose.yaml file
4
Running tests using Maven
Plugin for docker-compose : on
the fly grid creation and
destruction while running the
tests
Reference:
https://github.com/dkanejs/docker-
compose-maven-plugin
<dependency>
<groupId>com.dkanejs.maven.plugins</gro
upId>
<artifactId>docker-compose-maven-
plugin</artifactId>
<version>$VERSION</version>
</dependency>
<plugin>
<groupId>com.dkanejs.maven.plugins</groupId>
<artifactId>docker-compose-maven-plugin</artifactId>
<version>2.5.1</version>
<executions>
<execution>
<id>pull</id>
<phase>validate</phase>
<goals>
<goal>pull</goal>
</goals>
<configuration>
<composeFile>${project.basedir}/docker-compose.yaml</composeFile>
<ignorePullFailures>true</ignorePullFailures>
</configuration>
</execution>
<execution>
<id>up</id>
<phase>validate</phase>
<goals>
<goal>up</goal>
</goals>
<configuration>
<composeFile>${project.basedir}/docker-compose.yaml</composeFile>
<detachedMode>true</detachedMode>
</configuration>
</execution>
<execution>
<id>down</id>
<phase>test</phase>
<goals>
<goal>down</goal>
</goals>
<configuration>
<composeFile>${project.basedir}/docker-compose.yaml</composeFile>
<removeVolumes>true</removeVolumes>
</configuration>
</execution>
</executions>
</plugin>
Demo 4 – Running tests on the selenium grid
created using docker-compose.yaml file, on the fly
by maven plugin.
This can now be part of any CI tool
Create and execute grids on demand..
SUMMARY
1
Launching simple Chrome Debug Selenium Grid, Running and Viewing
Tests
2 Launching simple Firefox Debug Selenium Grid, Running and Viewing
Tests
3 Using Docker-compose creating grid and running the tests
4 Running tests using Maven Plugin for docker-compose on the fly grid creation
and destruction
QUESTIONS ?
• @adigindia
• https://www.linkedin.c
om/in/adigarg/
1 of 28

Recommended

Session on Selenium Powertools by Unmesh Gundecha by
Session on Selenium Powertools by Unmesh GundechaSession on Selenium Powertools by Unmesh Gundecha
Session on Selenium Powertools by Unmesh GundechaAgile Testing Alliance
153 views28 slides
Session on Selenium 4 : What’s coming our way? by Hitesh Prajapati by
Session on Selenium 4 : What’s coming our way? by Hitesh PrajapatiSession on Selenium 4 : What’s coming our way? by Hitesh Prajapati
Session on Selenium 4 : What’s coming our way? by Hitesh PrajapatiAgile Testing Alliance
144 views42 slides
Mastering selenium for automated acceptance tests by
Mastering selenium for automated acceptance testsMastering selenium for automated acceptance tests
Mastering selenium for automated acceptance testsNick Belhomme
20.1K views59 slides
Automated UI testing with Selenium by
Automated UI testing with SeleniumAutomated UI testing with Selenium
Automated UI testing with SeleniumYuriy Gerasimov
9.1K views14 slides
Selenium 2 - PyCon 2011 by
Selenium 2 - PyCon 2011Selenium 2 - PyCon 2011
Selenium 2 - PyCon 2011hugs
7.7K views62 slides
Play Framework: The Basics by
Play Framework: The BasicsPlay Framework: The Basics
Play Framework: The BasicsPhilip Langer
7.2K views45 slides

More Related Content

What's hot

Node.js vs Play Framework by
Node.js vs Play FrameworkNode.js vs Play Framework
Node.js vs Play FrameworkYevgeniy Brikman
173.7K views163 slides
Selenium Tips & Tricks - StarWest 2015 by
Selenium Tips & Tricks - StarWest 2015Selenium Tips & Tricks - StarWest 2015
Selenium Tips & Tricks - StarWest 2015Andrew Krug
1.5K views82 slides
The Play Framework at LinkedIn by
The Play Framework at LinkedInThe Play Framework at LinkedIn
The Play Framework at LinkedInYevgeniy Brikman
282.3K views143 slides
Automated Smoke Tests with Protractor by
Automated Smoke Tests with ProtractorAutomated Smoke Tests with Protractor
Automated Smoke Tests with Protractor🌱 Dale Spoonemore
1.5K views25 slides
Selenium 4 with Simon Stewart [Webinar] by
Selenium 4 with Simon Stewart [Webinar]Selenium 4 with Simon Stewart [Webinar]
Selenium 4 with Simon Stewart [Webinar]BrowserStack
4.3K views50 slides
Practical Tips & Tricks for Selenium Test Automation - Dave Haeffner by
Practical Tips & Tricks for Selenium Test Automation - Dave HaeffnerPractical Tips & Tricks for Selenium Test Automation - Dave Haeffner
Practical Tips & Tricks for Selenium Test Automation - Dave HaeffnerApplitools
2.6K views107 slides

What's hot(20)

Selenium Tips & Tricks - StarWest 2015 by Andrew Krug
Selenium Tips & Tricks - StarWest 2015Selenium Tips & Tricks - StarWest 2015
Selenium Tips & Tricks - StarWest 2015
Andrew Krug1.5K views
The Play Framework at LinkedIn by Yevgeniy Brikman
The Play Framework at LinkedInThe Play Framework at LinkedIn
The Play Framework at LinkedIn
Yevgeniy Brikman282.3K views
Selenium 4 with Simon Stewart [Webinar] by BrowserStack
Selenium 4 with Simon Stewart [Webinar]Selenium 4 with Simon Stewart [Webinar]
Selenium 4 with Simon Stewart [Webinar]
BrowserStack4.3K views
Practical Tips & Tricks for Selenium Test Automation - Dave Haeffner by Applitools
Practical Tips & Tricks for Selenium Test Automation - Dave HaeffnerPractical Tips & Tricks for Selenium Test Automation - Dave Haeffner
Practical Tips & Tricks for Selenium Test Automation - Dave Haeffner
Applitools2.6K views
Testing Code.org's Interactive CS Curriculum by Brian Jordan
Testing Code.org's Interactive CS CurriculumTesting Code.org's Interactive CS Curriculum
Testing Code.org's Interactive CS Curriculum
Brian Jordan4.2K views
Automated UI testing. Selenium. DrupalCamp Kyiv 2011 by Yuriy Gerasimov
Automated UI testing. Selenium. DrupalCamp Kyiv 2011Automated UI testing. Selenium. DrupalCamp Kyiv 2011
Automated UI testing. Selenium. DrupalCamp Kyiv 2011
Yuriy Gerasimov3.2K views
Selenium-Webdriver With PHPUnit Automation test for Joomla CMS! by Puneet Kala
Selenium-Webdriver With PHPUnit Automation test for Joomla CMS!Selenium-Webdriver With PHPUnit Automation test for Joomla CMS!
Selenium-Webdriver With PHPUnit Automation test for Joomla CMS!
Puneet Kala2.6K views
Hack & Fix, Hands on ColdFusion Security Training by ColdFusionConference
Hack & Fix, Hands on ColdFusion Security TrainingHack & Fix, Hands on ColdFusion Security Training
Hack & Fix, Hands on ColdFusion Security Training
Chrome Devtools Protocol via Selenium/Appium (Japanese) by Kazuaki Matsuo
Chrome Devtools Protocol via Selenium/Appium (Japanese)Chrome Devtools Protocol via Selenium/Appium (Japanese)
Chrome Devtools Protocol via Selenium/Appium (Japanese)
Kazuaki Matsuo792 views
前端網頁自動測試 by 政億 林
前端網頁自動測試 前端網頁自動測試
前端網頁自動測試
政億 林4.4K views
Chrome Devtools Protocol via Selenium/Appium (English) by Kazuaki Matsuo
Chrome Devtools Protocol via Selenium/Appium (English)Chrome Devtools Protocol via Selenium/Appium (English)
Chrome Devtools Protocol via Selenium/Appium (English)
Kazuaki Matsuo423 views
Selenium 2 for PHP(Unit) by AOE
Selenium 2 for PHP(Unit)Selenium 2 for PHP(Unit)
Selenium 2 for PHP(Unit)
AOE9.9K views
How to Configure Selenium WebDriver (java) by Dasun Eranthika
How to Configure Selenium WebDriver (java)How to Configure Selenium WebDriver (java)
How to Configure Selenium WebDriver (java)
Dasun Eranthika7.1K views
CodeIgniter PHP MVC Framework by Bo-Yi Wu
CodeIgniter PHP MVC FrameworkCodeIgniter PHP MVC Framework
CodeIgniter PHP MVC Framework
Bo-Yi Wu27.4K views
Upgrading to Selenium WebDriver version 3 by Alan Richardson
Upgrading to Selenium WebDriver version 3Upgrading to Selenium WebDriver version 3
Upgrading to Selenium WebDriver version 3
Alan Richardson5K views
Practical Tips & Tricks for Selenium Test Automation by Sauce Labs
Practical Tips & Tricks for Selenium Test AutomationPractical Tips & Tricks for Selenium Test Automation
Practical Tips & Tricks for Selenium Test Automation
Sauce Labs8.2K views
#ATAGTR2021 Presentation - "Selenium 4 Observability – a 90 Min Hands on Lab" by Agile Testing Alliance
#ATAGTR2021 Presentation - "Selenium 4 Observability – a 90 Min Hands on Lab"#ATAGTR2021 Presentation - "Selenium 4 Observability – a 90 Min Hands on Lab"
#ATAGTR2021 Presentation - "Selenium 4 Observability – a 90 Min Hands on Lab"

Similar to Session on Launching Selenium Grid and Running tests using docker compose and maven – step by step demo by Aditya Garg

vodQA(Pune) 2018 - Docker in Testing by
vodQA(Pune) 2018 - Docker in TestingvodQA(Pune) 2018 - Docker in Testing
vodQA(Pune) 2018 - Docker in TestingvodQA
335 views36 slides
Geode on Docker by
Geode on DockerGeode on Docker
Geode on DockerApache Geode
2K views36 slides
How to Dockerize Parallel Execution of Selenium Tests - SQA Days EU, Rgia, La... by
How to Dockerize Parallel Execution of Selenium Tests - SQA Days EU, Rgia, La...How to Dockerize Parallel Execution of Selenium Tests - SQA Days EU, Rgia, La...
How to Dockerize Parallel Execution of Selenium Tests - SQA Days EU, Rgia, La...Sargis Sargsyan
375 views41 slides
Drone CI/CD 自動化測試及部署 by
Drone CI/CD 自動化測試及部署Drone CI/CD 自動化測試及部署
Drone CI/CD 自動化測試及部署Bo-Yi Wu
1.5K views95 slides
Continuous delivery with docker by
Continuous delivery with dockerContinuous delivery with docker
Continuous delivery with dockerJohan Janssen
592 views93 slides
Docker 進階實務班 by
Docker 進階實務班Docker 進階實務班
Docker 進階實務班Philip Zheng
1.1K views79 slides

Similar to Session on Launching Selenium Grid and Running tests using docker compose and maven – step by step demo by Aditya Garg(20)

vodQA(Pune) 2018 - Docker in Testing by vodQA
vodQA(Pune) 2018 - Docker in TestingvodQA(Pune) 2018 - Docker in Testing
vodQA(Pune) 2018 - Docker in Testing
vodQA335 views
How to Dockerize Parallel Execution of Selenium Tests - SQA Days EU, Rgia, La... by Sargis Sargsyan
How to Dockerize Parallel Execution of Selenium Tests - SQA Days EU, Rgia, La...How to Dockerize Parallel Execution of Selenium Tests - SQA Days EU, Rgia, La...
How to Dockerize Parallel Execution of Selenium Tests - SQA Days EU, Rgia, La...
Sargis Sargsyan375 views
Drone CI/CD 自動化測試及部署 by Bo-Yi Wu
Drone CI/CD 自動化測試及部署Drone CI/CD 自動化測試及部署
Drone CI/CD 自動化測試及部署
Bo-Yi Wu1.5K views
Continuous delivery with docker by Johan Janssen
Continuous delivery with dockerContinuous delivery with docker
Continuous delivery with docker
Johan Janssen592 views
Docker 進階實務班 by Philip Zheng
Docker 進階實務班Docker 進階實務班
Docker 進階實務班
Philip Zheng1.1K views
廣宣學堂: 容器進階實務 - Docker進深研究班 by Paul Chao
廣宣學堂: 容器進階實務 - Docker進深研究班廣宣學堂: 容器進階實務 - Docker進深研究班
廣宣學堂: 容器進階實務 - Docker進深研究班
Paul Chao453 views
Deployment Tactics by Ian Barber
Deployment TacticsDeployment Tactics
Deployment Tactics
Ian Barber4.7K views
Mobile Test Automation using one API and one infrastructure by Michael Palotas
Mobile Test Automation using one API and one infrastructureMobile Test Automation using one API and one infrastructure
Mobile Test Automation using one API and one infrastructure
Michael Palotas902 views
DevOps Workflow: A Tutorial on Linux Containers by inside-BigData.com
DevOps Workflow: A Tutorial on Linux ContainersDevOps Workflow: A Tutorial on Linux Containers
DevOps Workflow: A Tutorial on Linux Containers
inside-BigData.com564 views
DCSF 19 Building Your Development Pipeline by Docker, Inc.
DCSF 19 Building Your Development Pipeline  DCSF 19 Building Your Development Pipeline
DCSF 19 Building Your Development Pipeline
Docker, Inc.467 views
PuppetConf 2016: The Challenges with Container Configuration – David Lutterko... by Puppet
PuppetConf 2016: The Challenges with Container Configuration – David Lutterko...PuppetConf 2016: The Challenges with Container Configuration – David Lutterko...
PuppetConf 2016: The Challenges with Container Configuration – David Lutterko...
Puppet472 views
Challenges of container configuration by lutter
Challenges of container configurationChallenges of container configuration
Challenges of container configuration
lutter447 views
Server(less) Swift at SwiftCloudWorkshop 3 by kognate
Server(less) Swift at SwiftCloudWorkshop 3Server(less) Swift at SwiftCloudWorkshop 3
Server(less) Swift at SwiftCloudWorkshop 3
kognate48 views
ДМИТРО БУДИМ «Mobile Automation Infrastructure from scratch» Online QADay 202... by GoQA
ДМИТРО БУДИМ «Mobile Automation Infrastructure from scratch» Online QADay 202...ДМИТРО БУДИМ «Mobile Automation Infrastructure from scratch» Online QADay 202...
ДМИТРО БУДИМ «Mobile Automation Infrastructure from scratch» Online QADay 202...
GoQA49 views
Docker summit 2015: 以 Docker Swarm 打造多主機叢集環境 by 謝 宗穎
Docker summit 2015: 以 Docker Swarm 打造多主機叢集環境Docker summit 2015: 以 Docker Swarm 打造多主機叢集環境
Docker summit 2015: 以 Docker Swarm 打造多主機叢集環境
謝 宗穎6.6K views
Pluralsight Webinar: Simplify Your Project Builds with Docker by Elton Stoneman
Pluralsight Webinar: Simplify Your Project Builds with DockerPluralsight Webinar: Simplify Your Project Builds with Docker
Pluralsight Webinar: Simplify Your Project Builds with Docker
Elton Stoneman240 views

More from Agile Testing Alliance

Parallel Test execution in Cypress with CI/CD by
Parallel Test execution in Cypress with CI/CDParallel Test execution in Cypress with CI/CD
Parallel Test execution in Cypress with CI/CDAgile Testing Alliance
7 views10 slides
Localisation Testing using UI automation by
Localisation Testing using UI automationLocalisation Testing using UI automation
Localisation Testing using UI automationAgile Testing Alliance
8 views13 slides
AI in UI automation using Helenium by
AI in UI automation using HeleniumAI in UI automation using Helenium
AI in UI automation using HeleniumAgile Testing Alliance
13 views12 slides
Automation for test data anonymization by
Automation for test data anonymizationAutomation for test data anonymization
Automation for test data anonymizationAgile Testing Alliance
6 views9 slides
MobSF: Mobile Security Testing (Android/IoS) by
MobSF: Mobile Security Testing (Android/IoS)MobSF: Mobile Security Testing (Android/IoS)
MobSF: Mobile Security Testing (Android/IoS)Agile Testing Alliance
41 views11 slides
AI-Automation-Using-Computer-Vision-in-Testing.pptx by
AI-Automation-Using-Computer-Vision-in-Testing.pptxAI-Automation-Using-Computer-Vision-in-Testing.pptx
AI-Automation-Using-Computer-Vision-in-Testing.pptxAgile Testing Alliance
16 views9 slides

More from Agile Testing Alliance(20)

#ATAHyderabad Meetup Welcome Session and Introductions Adi.pptx by Agile Testing Alliance
#ATAHyderabad Meetup Welcome Session and Introductions Adi.pptx#ATAHyderabad Meetup Welcome Session and Introductions Adi.pptx
#ATAHyderabad Meetup Welcome Session and Introductions Adi.pptx
#ATAGTR2021 Presentation : "Use of AI and ML in Performance Testing" by Adolf... by Agile Testing Alliance
#ATAGTR2021 Presentation : "Use of AI and ML in Performance Testing" by Adolf...#ATAGTR2021 Presentation : "Use of AI and ML in Performance Testing" by Adolf...
#ATAGTR2021 Presentation : "Use of AI and ML in Performance Testing" by Adolf...
#ATAGTR2021 Presentation : "Common Testing Mistakes –Are we really evolving?... by Agile Testing Alliance
#ATAGTR2021 Presentation :  "Common Testing Mistakes –Are we really evolving?...#ATAGTR2021 Presentation :  "Common Testing Mistakes –Are we really evolving?...
#ATAGTR2021 Presentation : "Common Testing Mistakes –Are we really evolving?...
#ATAGTR2021 Presentation : "Chaos engineering: Break it to make it" by Anupa... by Agile Testing Alliance
#ATAGTR2021 Presentation :  "Chaos engineering: Break it to make it" by Anupa...#ATAGTR2021 Presentation :  "Chaos engineering: Break it to make it" by Anupa...
#ATAGTR2021 Presentation : "Chaos engineering: Break it to make it" by Anupa...
#ATAGTR2021 Presentation : "Unlocking the Power of Machine Learning in the Mo... by Agile Testing Alliance
#ATAGTR2021 Presentation : "Unlocking the Power of Machine Learning in the Mo...#ATAGTR2021 Presentation : "Unlocking the Power of Machine Learning in the Mo...
#ATAGTR2021 Presentation : "Unlocking the Power of Machine Learning in the Mo...
#ATAGTR2021 Presentation : "Performance Evaluation Strategy of multi-access e... by Agile Testing Alliance
#ATAGTR2021 Presentation : "Performance Evaluation Strategy of multi-access e...#ATAGTR2021 Presentation : "Performance Evaluation Strategy of multi-access e...
#ATAGTR2021 Presentation : "Performance Evaluation Strategy of multi-access e...
#ATAGTR2021 Presentation : "Spice up your Testing Gamify it out!" by Geosley ... by Agile Testing Alliance
#ATAGTR2021 Presentation : "Spice up your Testing Gamify it out!" by Geosley ...#ATAGTR2021 Presentation : "Spice up your Testing Gamify it out!" by Geosley ...
#ATAGTR2021 Presentation : "Spice up your Testing Gamify it out!" by Geosley ...

Recently uploaded

Centralized Logging Feature in CloudStack using ELK and Grafana - Kiran Chava... by
Centralized Logging Feature in CloudStack using ELK and Grafana - Kiran Chava...Centralized Logging Feature in CloudStack using ELK and Grafana - Kiran Chava...
Centralized Logging Feature in CloudStack using ELK and Grafana - Kiran Chava...ShapeBlue
74 views17 slides
Live Demo Showcase: Unveiling Dell PowerFlex’s IaaS Capabilities with Apache ... by
Live Demo Showcase: Unveiling Dell PowerFlex’s IaaS Capabilities with Apache ...Live Demo Showcase: Unveiling Dell PowerFlex’s IaaS Capabilities with Apache ...
Live Demo Showcase: Unveiling Dell PowerFlex’s IaaS Capabilities with Apache ...ShapeBlue
52 views10 slides
Kyo - Functional Scala 2023.pdf by
Kyo - Functional Scala 2023.pdfKyo - Functional Scala 2023.pdf
Kyo - Functional Scala 2023.pdfFlavio W. Brasil
443 views92 slides
Extending KVM Host HA for Non-NFS Storage - Alex Ivanov - StorPool by
Extending KVM Host HA for Non-NFS Storage -  Alex Ivanov - StorPoolExtending KVM Host HA for Non-NFS Storage -  Alex Ivanov - StorPool
Extending KVM Host HA for Non-NFS Storage - Alex Ivanov - StorPoolShapeBlue
56 views10 slides
Confidence in CloudStack - Aron Wagner, Nathan Gleason - Americ by
Confidence in CloudStack - Aron Wagner, Nathan Gleason - AmericConfidence in CloudStack - Aron Wagner, Nathan Gleason - Americ
Confidence in CloudStack - Aron Wagner, Nathan Gleason - AmericShapeBlue
58 views9 slides
Network Source of Truth and Infrastructure as Code revisited by
Network Source of Truth and Infrastructure as Code revisitedNetwork Source of Truth and Infrastructure as Code revisited
Network Source of Truth and Infrastructure as Code revisitedNetwork Automation Forum
49 views45 slides

Recently uploaded(20)

Centralized Logging Feature in CloudStack using ELK and Grafana - Kiran Chava... by ShapeBlue
Centralized Logging Feature in CloudStack using ELK and Grafana - Kiran Chava...Centralized Logging Feature in CloudStack using ELK and Grafana - Kiran Chava...
Centralized Logging Feature in CloudStack using ELK and Grafana - Kiran Chava...
ShapeBlue74 views
Live Demo Showcase: Unveiling Dell PowerFlex’s IaaS Capabilities with Apache ... by ShapeBlue
Live Demo Showcase: Unveiling Dell PowerFlex’s IaaS Capabilities with Apache ...Live Demo Showcase: Unveiling Dell PowerFlex’s IaaS Capabilities with Apache ...
Live Demo Showcase: Unveiling Dell PowerFlex’s IaaS Capabilities with Apache ...
ShapeBlue52 views
Extending KVM Host HA for Non-NFS Storage - Alex Ivanov - StorPool by ShapeBlue
Extending KVM Host HA for Non-NFS Storage -  Alex Ivanov - StorPoolExtending KVM Host HA for Non-NFS Storage -  Alex Ivanov - StorPool
Extending KVM Host HA for Non-NFS Storage - Alex Ivanov - StorPool
ShapeBlue56 views
Confidence in CloudStack - Aron Wagner, Nathan Gleason - Americ by ShapeBlue
Confidence in CloudStack - Aron Wagner, Nathan Gleason - AmericConfidence in CloudStack - Aron Wagner, Nathan Gleason - Americ
Confidence in CloudStack - Aron Wagner, Nathan Gleason - Americ
ShapeBlue58 views
Zero to Cloud Hero: Crafting a Private Cloud from Scratch with XCP-ng, Xen Or... by ShapeBlue
Zero to Cloud Hero: Crafting a Private Cloud from Scratch with XCP-ng, Xen Or...Zero to Cloud Hero: Crafting a Private Cloud from Scratch with XCP-ng, Xen Or...
Zero to Cloud Hero: Crafting a Private Cloud from Scratch with XCP-ng, Xen Or...
ShapeBlue128 views
What’s New in CloudStack 4.19 - Abhishek Kumar - ShapeBlue by ShapeBlue
What’s New in CloudStack 4.19 - Abhishek Kumar - ShapeBlueWhat’s New in CloudStack 4.19 - Abhishek Kumar - ShapeBlue
What’s New in CloudStack 4.19 - Abhishek Kumar - ShapeBlue
ShapeBlue191 views
CloudStack and GitOps at Enterprise Scale - Alex Dometrius, Rene Glover - AT&T by ShapeBlue
CloudStack and GitOps at Enterprise Scale - Alex Dometrius, Rene Glover - AT&TCloudStack and GitOps at Enterprise Scale - Alex Dometrius, Rene Glover - AT&T
CloudStack and GitOps at Enterprise Scale - Alex Dometrius, Rene Glover - AT&T
ShapeBlue81 views
State of the Union - Rohit Yadav - Apache CloudStack by ShapeBlue
State of the Union - Rohit Yadav - Apache CloudStackState of the Union - Rohit Yadav - Apache CloudStack
State of the Union - Rohit Yadav - Apache CloudStack
ShapeBlue218 views
"Surviving highload with Node.js", Andrii Shumada by Fwdays
"Surviving highload with Node.js", Andrii Shumada "Surviving highload with Node.js", Andrii Shumada
"Surviving highload with Node.js", Andrii Shumada
Fwdays49 views
Declarative Kubernetes Cluster Deployment with Cloudstack and Cluster API - O... by ShapeBlue
Declarative Kubernetes Cluster Deployment with Cloudstack and Cluster API - O...Declarative Kubernetes Cluster Deployment with Cloudstack and Cluster API - O...
Declarative Kubernetes Cluster Deployment with Cloudstack and Cluster API - O...
ShapeBlue59 views
Backroll, News and Demo - Pierre Charton, Matthias Dhellin, Ousmane Diarra - ... by ShapeBlue
Backroll, News and Demo - Pierre Charton, Matthias Dhellin, Ousmane Diarra - ...Backroll, News and Demo - Pierre Charton, Matthias Dhellin, Ousmane Diarra - ...
Backroll, News and Demo - Pierre Charton, Matthias Dhellin, Ousmane Diarra - ...
ShapeBlue121 views
Keynote Talk: Open Source is Not Dead - Charles Schulz - Vates by ShapeBlue
Keynote Talk: Open Source is Not Dead - Charles Schulz - VatesKeynote Talk: Open Source is Not Dead - Charles Schulz - Vates
Keynote Talk: Open Source is Not Dead - Charles Schulz - Vates
ShapeBlue178 views
Igniting Next Level Productivity with AI-Infused Data Integration Workflows by Safe Software
Igniting Next Level Productivity with AI-Infused Data Integration Workflows Igniting Next Level Productivity with AI-Infused Data Integration Workflows
Igniting Next Level Productivity with AI-Infused Data Integration Workflows
Safe Software373 views
The Power of Heat Decarbonisation Plans in the Built Environment by IES VE
The Power of Heat Decarbonisation Plans in the Built EnvironmentThe Power of Heat Decarbonisation Plans in the Built Environment
The Power of Heat Decarbonisation Plans in the Built Environment
IES VE67 views
Setting Up Your First CloudStack Environment with Beginners Challenges - MD R... by ShapeBlue
Setting Up Your First CloudStack Environment with Beginners Challenges - MD R...Setting Up Your First CloudStack Environment with Beginners Challenges - MD R...
Setting Up Your First CloudStack Environment with Beginners Challenges - MD R...
ShapeBlue105 views
Data Integrity for Banking and Financial Services by Precisely
Data Integrity for Banking and Financial ServicesData Integrity for Banking and Financial Services
Data Integrity for Banking and Financial Services
Precisely76 views
Migrating VMware Infra to KVM Using CloudStack - Nicolas Vazquez - ShapeBlue by ShapeBlue
Migrating VMware Infra to KVM Using CloudStack - Nicolas Vazquez - ShapeBlueMigrating VMware Infra to KVM Using CloudStack - Nicolas Vazquez - ShapeBlue
Migrating VMware Infra to KVM Using CloudStack - Nicolas Vazquez - ShapeBlue
ShapeBlue147 views

Session on Launching Selenium Grid and Running tests using docker compose and maven – step by step demo by Aditya Garg