SlideShare a Scribd company logo
Install
Concourse  CI
with  BOSH
Toshiaki  Maki  (@making)
Sr.  Solutions  Architect  @Pivotal
2016-‐‑‒05-‐‑‒19
Concourse  CI  Tokyo  Meetup
Who  am  I  ?
•Toshiaki  Maki  (@making)
•https://blog.ik.am
•Sr.  Solutions  Architect
•Spring  Framework  enthusiast
Spring
Framework
徹底⼊入⾨門
(Coming  
Soon?)
Perfect
Java  EE
(Coming  
Soon?)
Install Concourse CI with BOSH
How  to  Install
•Vagrant  Image
•Executable  Binaries
•BOSH  Release
https://concourse.ci/installing.html
Easy
Hard Production	
  Ready
Local	
  Dev
Vagrant
$  vagrant  init concourse/lite
$  vagrant  up
Vagrant
BOSH
•Powerful  Provisioning  Tool  to  deploy  distributed  
system
• Monitor  /  Health  Check
• Rolling  Updates
• Networking
• Storage  Management
• VM  Provisioning
• IaaS Agnostic
• ...
Do  we  really  need  BOSH?
"If  you're  not  yet  familiar  
with  BOSH,  learning  it  will  be  
a  bit  of  an  investment,  but  it
should  pay  off  in  spades"
http://concourse.ci/clusters-‐‑‒with-‐‑‒bosh.html
BOSH  components
https://bosh.io/docs/bosh-‐‑‒components.html
How  to  install  with  BOSH
1. Set  up  IaaS
2. Install  BOSH  Director  using  bosh-‐‑‒init
3. Upload  Stemcell
4. Upload  Releases
5. Create  manifest  file
6. Deploy  the  system  using  manifest  file
•Deploy  Concourse  to  AWS
•Deploy  Concourse  to  Azure
Manifest  samples
https://github.com/making/concouse-‐‑‒ci-‐‑‒manifest-‐‑‒samples
Deploy  Concourse  to  AWS
Prepare  VPC
Install Concourse CI with BOSH
Install Concourse CI with BOSH
Install Concourse CI with BOSH
VPC  (10.0.0.0/16)
public(10.0.0.0/24) private(10.0.1.0/24)
NATEIP
Install  BOSH  Director
Create  Keypair
Security  Group
Manifest  for  bosh-‐‑‒init
• https://bosh.io/docs/init-‐‑‒aws.html#create-‐‑‒manifest
Copy  &  Paste
to  bosh.yml
Replace  placeholders
Name Value
ELASTIC-‐‑‒IP <Your  New  EIP  for  Director> there are  3  places  to  
replace
SUBNET-‐‑‒ID subnet-‐‑‒xxxxxxxx public subnet
AVAILABILITY-‐‑‒ZONE ap-‐‑‒northeast-‐‑‒1a
ACCESS-‐‑‒KEY-‐‑‒ID xxxxxxxx
SECRET-‐‑‒ACCESS-‐‑‒KEY xxxxxxxx
REGION ap-‐‑‒northeast-‐‑‒1
Deploy
Download  from  https://bosh.io/docs/install-‐‑‒bosh-‐‑‒init.html
$ bosh-init deploy bosh.yml
After  20min
VPC  (10.0.0.0/16)
public(10.0.0.0/24) private(10.0.1.0/24)
NAT
BOSH
Director
EIP
EIP
$ sudo gem install bosh_cli --no-ri --no-rdoc
$ bosh target 52.196.159.101
Target set to `my-bosh'
Your username: admin
Enter password:
Logged in as `admin'
IaaS Specific  Configuration
az: ...
vm_types: ...
disk_types: ...
networks: ...
compilation: ...
aws.yml
IaaS Specific  Configuration
azs:
- name: z1
cloud_properties:
{availability_zone: ap-northeast-1a}
aws.yml
IaaS Specific  Configuration
vm_types:
- name: web
cloud_properties:
instance_type: t2.micro
ephemeral_disk: {size: 3000, type: gp2}
security_groups: [web, bosh]
- name: database
cloud_properties: ...
aws.yml
IaaS Specific  Configuration
disk_type:
- name: database
disk_size: 50_000
cloud_properties: {type: gp2}
aws.yml
Set  Iaas Config
$ bosh update cloud-config aws.yml
Acting as user 'admin' on 'my-bosh'
Successfully updated cloud config
Install Concourse CI with BOSH
Upload  Stemcell
$ bosh upload stemcell
https://bosh.io/d/stemcells/bosh-aws-xen-
hvm-ubuntu-trusty-go_agent?v=3232.3
Upload  Releases  (garden,  
concourse)
$ bosh upload release
https://bosh.io/d/github.com/cloudfoundry-
incubator/garden-linux-release?v=0.337.0
$ bosh upload release
https://bosh.io/d/github.com/concourse/con
course?v=1.2.0
name: concourse
director_uuid: ...
releases: ...
stemcells: ...
instance_groups: ...
update: ...
Create  manifest  for  Concourse
concourse.yml
Create  manifest  for  Concourse
instance_groups: ...
- name: web
...
- name: db
...
- name: worker
...
concourse.yml
Deploy  Concourse  CI
$ bosh deployment concourse.yml
$ bosh -n deploy
Install Concourse CI with BOSH
VPC  (10.0.0.0/16)
public(10.0.0.0/24) private(10.0.1.0/24)
NAT
BOSH
Director
EIP
EIP
WebEIP
Worker
DB
Install Concourse CI with BOSH
Scale  out
- name: worker
instances: 3
vm_type: worker
concourse.yml
$ bosh -n deploy
Install Concourse CI with BOSH
VPC  (10.0.0.0/16)
public(10.0.0.0/24) private(10.0.1.0/24)
NAT
BOSH
Director
EIP
EIP
WebEIP
WorkerWorkerWorker
DB
Health  Check
Health  Check
Version  up
$ bosh upload release
https://bosh.io/d/github.com/concourse/con
course?v=1.3.0
$ bosh deploy
Deploy  Concourse  to  Azure
Use  template
https://azure.microsoft.com/en-‐‑‒us/documentation/templates/bosh-‐‑‒setup/
Install Concourse CI with BOSH
Install Concourse CI with BOSH
After  1  hour  ...
Already  prepared👍
Install Concourse CI with BOSH
Install Concourse CI with BOSH
Install Concourse CI with BOSH
$ ssh bosh@40.115.251.81
bosh@bosh:~$ bosh target
Current target is https://10.0.0.4:25555 (bosh)
IaaS Specific  Configuration
az: ...
vm_types: ...
disk_types: ...
networks: ...
compilation: ...
azure.yml
IaaS Specific  Configuration
vm_types:
- name: web
cloud_properties:
instance_type: Standard_D1
- name: database
cloud_properties: ...
azure.yml
Set  Iaas Config
bosh@bosh:~$ bosh update cloud-config azure.yml
Acting as user 'admin' on 'bosh'
Successfully updated cloud config
Install Concourse CI with BOSH
Upload  Stemcell
$ bosh upload stemcell
https://bosh.io/d/stemcells/bosh-azure-
hyperv-ubuntu-trusty-go_agent?v=3232.4
Upload  Releases  (garden,  
concourse)
$ bosh upload release
https://bosh.io/d/github.com/cloudfoundry-
incubator/garden-linux-release?v=0.337.0
$ bosh upload release
https://bosh.io/d/github.com/concourse/con
course?v=1.2.0
Deploy  Concourse  CI
$ bosh deployment concourse.yml
$ bosh -n deploy
Manifest  file  is  as  
same  as  AWS's  
Install Concourse CI with BOSH
Install Concourse CI with BOSH
Install Concourse CI with BOSH
Install Concourse CI with BOSH
AWS Azure
IaaS Setup Create
VPC, NAT,  Keypair,  SG,  EIP
Use  "BOSH  Setup"  
Template
(other  than  SG)Director • Create  Manifestfile (bosh.yml)
• bosh-‐‑‒init
Cloud Config • Create  IaaS config (aws.yml)
• bosh  update  cloud-‐‑‒cofig
• Create  IaaS config
(azure.yml)
• bosh  update  cloud-‐‑‒cofig
Manifest  for  
Concourse
Create manifest  file  (IaaS Independent)
Stemcell Upload  for  AWS  Xen Upload for  Azure  Hyper-‐‑‒V
Release Upload
• garden-‐‑‒linux
• concourse
Deploy bosh  deploy
Installation  Article  (Japanese)
• AWS https://blog.ik.am/entries/383
• Azure  https://blog.ik.am/entries/384
Cloud  Foundry  Tokyo  Meetup #2
http://www.meetup.com/ja-‐‑‒JP/Cloud-‐‑‒Foundry-‐‑‒Tokyo-‐‑‒Meetup/events/230285366/
Gwenn
(@The_̲Shinji62)
will  talk  about  
BOSH  2.0

More Related Content

What's hot (20)

PDF
ConcourseCi Dockerimage
Gwenn Etourneau
 
PDF
Short Lived Tasks in Cloud Foundry #cfdtokyo
Toshiaki Maki
 
PDF
Spring Boot 1.3 News #渋谷Java
Toshiaki Maki
 
PDF
[表示が崩れる場合ダウンロードしてご覧ください] 2018年のDocker・Moby
Akihiro Suda
 
PDF
Kubernetes x PaaS – コンテナアプリケーションのNoOpsへの挑戦
Yoichi Kawasaki
 
PDF
Route service-pcf-techmeetup
Gwenn Etourneau
 
PDF
Cloud Foundry Meetup Tokyo #1 Route service
Gwenn Etourneau
 
PDF
CI/CD Using Ansible and Jenkins for Infrastructure
Faisal Shaikh
 
PDF
GlassFish Embedded API
Eduardo Pelegri-Llopart
 
PDF
Ansible Introduction
Robert Reiz
 
PDF
Why PCF is the best platform for Spring Boot
Toshiaki Maki
 
PPTX
An Introduction into Bosh | anynines
anynines GmbH
 
PDF
Continuous Delivery for Microservice Architectures with Concourse & Cloud Fou...
VMware Tanzu
 
PDF
Managing your Docker image continuously with Concourse CI
Toshiaki Maki
 
PDF
Extend and build on Kubernetes
Stefan Schimanski
 
PDF
iOS Parallel Automation: run faster than fast — Viktar Karanevich — SeleniumC...
Badoo
 
PDF
Using JHipster for generating Angular/Spring Boot apps
Yakov Fain
 
PDF
DevOps - Infrastructure as Code by Andre Marcelo-Tanner
DEVCON
 
PDF
Modernizing .NET Apps with Docker
Docker
 
PDF
Ansible Intro - June 2015 / Ansible Barcelona User Group
Orestes Carracedo
 
ConcourseCi Dockerimage
Gwenn Etourneau
 
Short Lived Tasks in Cloud Foundry #cfdtokyo
Toshiaki Maki
 
Spring Boot 1.3 News #渋谷Java
Toshiaki Maki
 
[表示が崩れる場合ダウンロードしてご覧ください] 2018年のDocker・Moby
Akihiro Suda
 
Kubernetes x PaaS – コンテナアプリケーションのNoOpsへの挑戦
Yoichi Kawasaki
 
Route service-pcf-techmeetup
Gwenn Etourneau
 
Cloud Foundry Meetup Tokyo #1 Route service
Gwenn Etourneau
 
CI/CD Using Ansible and Jenkins for Infrastructure
Faisal Shaikh
 
GlassFish Embedded API
Eduardo Pelegri-Llopart
 
Ansible Introduction
Robert Reiz
 
Why PCF is the best platform for Spring Boot
Toshiaki Maki
 
An Introduction into Bosh | anynines
anynines GmbH
 
Continuous Delivery for Microservice Architectures with Concourse & Cloud Fou...
VMware Tanzu
 
Managing your Docker image continuously with Concourse CI
Toshiaki Maki
 
Extend and build on Kubernetes
Stefan Schimanski
 
iOS Parallel Automation: run faster than fast — Viktar Karanevich — SeleniumC...
Badoo
 
Using JHipster for generating Angular/Spring Boot apps
Yakov Fain
 
DevOps - Infrastructure as Code by Andre Marcelo-Tanner
DEVCON
 
Modernizing .NET Apps with Docker
Docker
 
Ansible Intro - June 2015 / Ansible Barcelona User Group
Orestes Carracedo
 

Viewers also liked (20)

PDF
Cloud Foundy Java Client V 2.0 #cf_tokyo
Toshiaki Maki
 
PDF
Implement Service Broker with Spring Boot #cf_tokyo
Toshiaki Maki
 
PDF
Team Support in Concourse CI 2.0 #concourse_tokyo
Toshiaki Maki
 
PDF
#jjug_ccc #ccc_gh5 What's new in Spring Framework 4.3 / Boot 1.4 + Pivotal's ...
Toshiaki Maki
 
PDF
Spring ❤️ Kotlin #jjug
Toshiaki Maki
 
PDF
Consumer Driven Contractsで REST API/マイクロサービスをテスト #m3tech
Toshiaki Maki
 
PPTX
Spring Cloud Netflixを使おう #jsug
Toshiaki Maki
 
PDF
Introduction to Cloud Foundry #JJUG
Toshiaki Maki
 
PDF
Reactive Webアプリケーション - そしてSpring 5へ #jjug_ccc #ccc_ef3
Toshiaki Maki
 
PDF
Event Driven Microservices with Spring Cloud Stream #jjug_ccc #ccc_ab3
Toshiaki Maki
 
PDF
Data Microservices with Spring Cloud Stream, Task, and Data Flow #jsug #spri...
Toshiaki Maki
 
PDF
Concourse and Database
Gwenn Etourneau
 
PDF
今すぐ始めるCloud Foundry #hackt #hackt_k
Toshiaki Maki
 
PDF
From Zero to Hero with REST and OAuth2 #jjug
Toshiaki Maki
 
PDF
Bosh - Configuring Services
Andrew Shafer
 
PDF
実例で学ぶ、明日から使えるSpring Boot Tips #jsug
Toshiaki Maki
 
PPTX
How to use Concourse CI to deliver BOSH releases
Amit Gupta
 
PDF
BOSH deploys distributed systems, and Diego runs any containers
Benjamin Gandon
 
PPTX
Bosh - Twenty Years of Deployment Lessons in One Tool
VMware Tanzu
 
PDF
Deploy Cloud Foundry using bosh_bootstrap
rajdeep
 
Cloud Foundy Java Client V 2.0 #cf_tokyo
Toshiaki Maki
 
Implement Service Broker with Spring Boot #cf_tokyo
Toshiaki Maki
 
Team Support in Concourse CI 2.0 #concourse_tokyo
Toshiaki Maki
 
#jjug_ccc #ccc_gh5 What's new in Spring Framework 4.3 / Boot 1.4 + Pivotal's ...
Toshiaki Maki
 
Spring ❤️ Kotlin #jjug
Toshiaki Maki
 
Consumer Driven Contractsで REST API/マイクロサービスをテスト #m3tech
Toshiaki Maki
 
Spring Cloud Netflixを使おう #jsug
Toshiaki Maki
 
Introduction to Cloud Foundry #JJUG
Toshiaki Maki
 
Reactive Webアプリケーション - そしてSpring 5へ #jjug_ccc #ccc_ef3
Toshiaki Maki
 
Event Driven Microservices with Spring Cloud Stream #jjug_ccc #ccc_ab3
Toshiaki Maki
 
Data Microservices with Spring Cloud Stream, Task, and Data Flow #jsug #spri...
Toshiaki Maki
 
Concourse and Database
Gwenn Etourneau
 
今すぐ始めるCloud Foundry #hackt #hackt_k
Toshiaki Maki
 
From Zero to Hero with REST and OAuth2 #jjug
Toshiaki Maki
 
Bosh - Configuring Services
Andrew Shafer
 
実例で学ぶ、明日から使えるSpring Boot Tips #jsug
Toshiaki Maki
 
How to use Concourse CI to deliver BOSH releases
Amit Gupta
 
BOSH deploys distributed systems, and Diego runs any containers
Benjamin Gandon
 
Bosh - Twenty Years of Deployment Lessons in One Tool
VMware Tanzu
 
Deploy Cloud Foundry using bosh_bootstrap
rajdeep
 
Ad

Similar to Install Concourse CI with BOSH (20)

PPT
How to Contribute Code to MySQL?
Thava Alagu
 
PPTX
Altoros Cloud Foundry Training: hands-on workshop for DevOps, Architects and ...
Manuel Garcia
 
PDF
OpenSource ToolChain for the Hybrid Cloud
Isaac Christoffersen
 
PPTX
Iteratively Develop Microservices with Speed on Kubernetes
Microsoft Tech Community
 
PPTX
habitat at docker bud
Mandi Walls
 
PDF
BOSH / CF Deployment in modern ways #cf_tokyo
Toshiaki Maki
 
PDF
WSO2 Cloud and Platform as a Service Strategy
Imesh Gunaratne
 
PDF
WSO2Con EU 2016: WSO2 Cloud and Platform as a Service Strategy
WSO2
 
PPTX
Assembling an Open Source Toolchain to Manage Public, Private and Hybrid Clou...
POSSCON
 
PPTX
How to Dockerize your Sitecore module
Mihály Árvai
 
PDF
Kayobe_desc
ssuser8fea38
 
PPTX
Azure DevOps Extensions
Christian Waha
 
PPTX
Azure Web SItes - Things they don't teach kids in school - Multi-Mania
Maarten Balliauw
 
PDF
Dependencies Managers in C/C++. Using stdcpp 2014
biicode
 
PPTX
Office 365 Saturday Europe 2014 - Microsoft Azure : Central component of your...
PimpMySharePoint
 
PPTX
Windows Azure Web Sites - Things they don’t teach kids in school - BuildStuffLT
Maarten Balliauw
 
PDF
Spring Booted, But... @JCConf 16', Taiwan
Pei-Tang Huang
 
PDF
Pipeline: Continuous Delivery as Code in Jenkins 2.0
Jules Pierre-Louis
 
PDF
7 Habits of Highly Effective Jenkins Users
Jules Pierre-Louis
 
PPTX
Taking Docker to Dance: Continuous Delivery on AWS
Jessie Yi Wei
 
How to Contribute Code to MySQL?
Thava Alagu
 
Altoros Cloud Foundry Training: hands-on workshop for DevOps, Architects and ...
Manuel Garcia
 
OpenSource ToolChain for the Hybrid Cloud
Isaac Christoffersen
 
Iteratively Develop Microservices with Speed on Kubernetes
Microsoft Tech Community
 
habitat at docker bud
Mandi Walls
 
BOSH / CF Deployment in modern ways #cf_tokyo
Toshiaki Maki
 
WSO2 Cloud and Platform as a Service Strategy
Imesh Gunaratne
 
WSO2Con EU 2016: WSO2 Cloud and Platform as a Service Strategy
WSO2
 
Assembling an Open Source Toolchain to Manage Public, Private and Hybrid Clou...
POSSCON
 
How to Dockerize your Sitecore module
Mihály Árvai
 
Kayobe_desc
ssuser8fea38
 
Azure DevOps Extensions
Christian Waha
 
Azure Web SItes - Things they don't teach kids in school - Multi-Mania
Maarten Balliauw
 
Dependencies Managers in C/C++. Using stdcpp 2014
biicode
 
Office 365 Saturday Europe 2014 - Microsoft Azure : Central component of your...
PimpMySharePoint
 
Windows Azure Web Sites - Things they don’t teach kids in school - BuildStuffLT
Maarten Balliauw
 
Spring Booted, But... @JCConf 16', Taiwan
Pei-Tang Huang
 
Pipeline: Continuous Delivery as Code in Jenkins 2.0
Jules Pierre-Louis
 
7 Habits of Highly Effective Jenkins Users
Jules Pierre-Louis
 
Taking Docker to Dance: Continuous Delivery on AWS
Jessie Yi Wei
 
Ad

More from Toshiaki Maki (12)

PDF
From Spring Boot 2.2 to Spring Boot 2.3 #jsug
Toshiaki Maki
 
PDF
Concourse x Spinnaker #concourse_tokyo
Toshiaki Maki
 
PDF
Serverless with Spring Cloud Function, Knative and riff #SpringOneTour #s1t
Toshiaki Maki
 
PDF
決済システムの内製化への旅 - SpringとPCFで作るクラウドネイティブなシステム開発 #jsug #sf_h1
Toshiaki Maki
 
PDF
Spring Boot Actuator 2.0 & Micrometer #jjug_ccc #ccc_a1
Toshiaki Maki
 
PDF
Spring Boot Actuator 2.0 & Micrometer
Toshiaki Maki
 
PDF
Open Service Broker APIとKubernetes Service Catalog #k8sjp
Toshiaki Maki
 
PDF
Spring Cloud Function & Project riff #jsug
Toshiaki Maki
 
PDF
Introduction to Spring WebFlux #jsug #sf_a1
Toshiaki Maki
 
PDF
Zipkin Components #zipkin_jp
Toshiaki Maki
 
PPTX
マイクロサービスに必要な技術要素はすべてSpring Cloudにある #DO07
Toshiaki Maki
 
PDF
Spring Framework 5.0による Reactive Web Application #JavaDayTokyo
Toshiaki Maki
 
From Spring Boot 2.2 to Spring Boot 2.3 #jsug
Toshiaki Maki
 
Concourse x Spinnaker #concourse_tokyo
Toshiaki Maki
 
Serverless with Spring Cloud Function, Knative and riff #SpringOneTour #s1t
Toshiaki Maki
 
決済システムの内製化への旅 - SpringとPCFで作るクラウドネイティブなシステム開発 #jsug #sf_h1
Toshiaki Maki
 
Spring Boot Actuator 2.0 & Micrometer #jjug_ccc #ccc_a1
Toshiaki Maki
 
Spring Boot Actuator 2.0 & Micrometer
Toshiaki Maki
 
Open Service Broker APIとKubernetes Service Catalog #k8sjp
Toshiaki Maki
 
Spring Cloud Function & Project riff #jsug
Toshiaki Maki
 
Introduction to Spring WebFlux #jsug #sf_a1
Toshiaki Maki
 
Zipkin Components #zipkin_jp
Toshiaki Maki
 
マイクロサービスに必要な技術要素はすべてSpring Cloudにある #DO07
Toshiaki Maki
 
Spring Framework 5.0による Reactive Web Application #JavaDayTokyo
Toshiaki Maki
 

Recently uploaded (20)

PPTX
UiPath Academic Alliance Educator Panels: Session 2 - Business Analyst Content
DianaGray10
 
PDF
How Startups Are Growing Faster with App Developers in Australia.pdf
India App Developer
 
PDF
Building Real-Time Digital Twins with IBM Maximo & ArcGIS Indoors
Safe Software
 
PDF
Chris Elwell Woburn, MA - Passionate About IT Innovation
Chris Elwell Woburn, MA
 
PDF
SWEBOK Guide and Software Services Engineering Education
Hironori Washizaki
 
PDF
Smart Trailers 2025 Update with History and Overview
Paul Menig
 
PDF
Agentic AI lifecycle for Enterprise Hyper-Automation
Debmalya Biswas
 
PDF
Log-Based Anomaly Detection: Enhancing System Reliability with Machine Learning
Mohammed BEKKOUCHE
 
PPTX
Q2 FY26 Tableau User Group Leader Quarterly Call
lward7
 
PDF
Complete JavaScript Notes: From Basics to Advanced Concepts.pdf
haydendavispro
 
PDF
DevBcn - Building 10x Organizations Using Modern Productivity Metrics
Justin Reock
 
PDF
CIFDAQ Market Insights for July 7th 2025
CIFDAQ
 
PPTX
"Autonomy of LLM Agents: Current State and Future Prospects", Oles` Petriv
Fwdays
 
PDF
HCIP-Data Center Facility Deployment V2.0 Training Material (Without Remarks ...
mcastillo49
 
PDF
Jak MŚP w Europie Środkowo-Wschodniej odnajdują się w świecie AI
dominikamizerska1
 
PDF
CIFDAQ Weekly Market Wrap for 11th July 2025
CIFDAQ
 
PDF
CIFDAQ Token Spotlight for 9th July 2025
CIFDAQ
 
PDF
July Patch Tuesday
Ivanti
 
PPTX
Webinar: Introduction to LF Energy EVerest
DanBrown980551
 
PDF
Using FME to Develop Self-Service CAD Applications for a Major UK Police Force
Safe Software
 
UiPath Academic Alliance Educator Panels: Session 2 - Business Analyst Content
DianaGray10
 
How Startups Are Growing Faster with App Developers in Australia.pdf
India App Developer
 
Building Real-Time Digital Twins with IBM Maximo & ArcGIS Indoors
Safe Software
 
Chris Elwell Woburn, MA - Passionate About IT Innovation
Chris Elwell Woburn, MA
 
SWEBOK Guide and Software Services Engineering Education
Hironori Washizaki
 
Smart Trailers 2025 Update with History and Overview
Paul Menig
 
Agentic AI lifecycle for Enterprise Hyper-Automation
Debmalya Biswas
 
Log-Based Anomaly Detection: Enhancing System Reliability with Machine Learning
Mohammed BEKKOUCHE
 
Q2 FY26 Tableau User Group Leader Quarterly Call
lward7
 
Complete JavaScript Notes: From Basics to Advanced Concepts.pdf
haydendavispro
 
DevBcn - Building 10x Organizations Using Modern Productivity Metrics
Justin Reock
 
CIFDAQ Market Insights for July 7th 2025
CIFDAQ
 
"Autonomy of LLM Agents: Current State and Future Prospects", Oles` Petriv
Fwdays
 
HCIP-Data Center Facility Deployment V2.0 Training Material (Without Remarks ...
mcastillo49
 
Jak MŚP w Europie Środkowo-Wschodniej odnajdują się w świecie AI
dominikamizerska1
 
CIFDAQ Weekly Market Wrap for 11th July 2025
CIFDAQ
 
CIFDAQ Token Spotlight for 9th July 2025
CIFDAQ
 
July Patch Tuesday
Ivanti
 
Webinar: Introduction to LF Energy EVerest
DanBrown980551
 
Using FME to Develop Self-Service CAD Applications for a Major UK Police Force
Safe Software
 

Install Concourse CI with BOSH