SlideShare a Scribd company logo
1 of 123
Download to read offline
‹#›© 2016 Pivotal Software, Inc. All rights reserved. ‹#›© 2016 Pivotal Software, Inc. All rights reserved.
Cloud Foundry
Toshiaki Maki (@making)
2016-09-10 Hacker Tackle
#hackt #hackt_k
© 2016 Pivotal Software, Inc. All rights reserved.
Who am I ?
• Toshiaki Maki (@making) http://blog.ik.am
• Sr. Solutions Architect @Pivotal
• Spring Framework enthusiast
bit.ly/hajiboot2
© 2016 Pivotal Software, Inc. All rights reserved.
Who am I ?
• Toshiaki Maki (@making) http://blog.ik.am
• Sr. Solutions Architect @Pivotal
• Spring Framework enthusiast
bit.ly/hajiboot2
© 2016 Pivotal Software, Inc. All rights reserved.
•Cloud Foundry
•Cloud Foundry
•Cloud Foundry
•Cloud Foundry
•Cloud Foundry
https://github.com/making/hacker-tackle-demo
© 2016 Pivotal Software, Inc. All rights reserved.
•Cloud Foundry
•Cloud Foundry
•Cloud Foundry
•Cloud Foundry
•Cloud Foundry
Cloud Foundry
https://github.com/making/hacker-tackle-demo
‹#›© 2016 Pivotal Software, Inc. All rights reserved.
Cloud Foundry
© 2016 Pivotal Software, Inc. All rights reserved.
• PaaS
•Cloud Foundry Foundation
• /
https://github.com/cloudfoundry
© 2016 Pivotal Software, Inc. All rights reserved.
• PaaS
•Cloud Foundry Foundation
• /
https://github.com/cloudfoundry
Cloud Native Platform
© 2016 Pivotal Software, Inc. All rights reserved.
•
•
•
• /
•
•
© 2016 Pivotal Software, Inc. All rights reserved.
•
•
•
• /
•
•
© 2016 Pivotal Software, Inc. All rights reserved.
•
•
•
• /
•
•
!!!!
© 2016 Pivotal Software, Inc. All rights reserved.
Cloud Foundry
• (DNS)
•
•
•
•
•
•
© 2016 Pivotal Software, Inc. All rights reserved.
Cloud Foundry everywhere
Cloud Foundry
Cloud Foundry
OSS Pivotal
Cloud Foundry
on
Private Cloud
on
Public Cloud
Structure
Spring Cloud Spring Boot
Cloud Foundry
BOSH
AWSVMWareOpenStack
Application Framework
Runtime Platform
Infrastructure Automation
Infrastructure
Azure
Contract: Cloud Provider Interface
Contract: 12 Factor App
Contract: BOSH Release
Java EE
GCP
‹#›© 2016 Pivotal Software, Inc. All rights reserved.
Cloud Foundry
© 2016 Pivotal Software, Inc. All rights reserved.
$ cf login -a https://api.local.pcfdev.io --skip-ssl-validation
$ cf login -a https://api.run.pivotal.io
$ cf login -a https://api.system.your-cf.example.com
PCF Dev
Pivotal Web Services
Pivotal Cloud Foundry
https://github.com/cloudfoundry/cli/releases
© 2016 Pivotal Software, Inc. All rights reserved.
cf push
© 2016 Pivotal Software, Inc. All rights reserved.
cf push
© 2016 Pivotal Software, Inc. All rights reserved.
$ cf push hello -p hello.jar
$ cf push hello
glide godep
app nameSpring Boot
© 2016 Pivotal Software, Inc. All rights reserved.
$ cf push hello -p hello.jar
$ cf push hello
glide godep
app nameSpring Boot
func main() {
http.HandleFunc("/", func(w http.ResponseWriter
, r *http.Request) {
fmt.Fprint(w, "Hello World!")
})
http.ListenAndServe(":"+os.Getenv("PORT"), nil);
}
© 2016 Pivotal Software, Inc. All rights reserved.
Hello World
Host name
(subdomain)
=app name
domain name
-n
© 2016 Pivotal Software, Inc. All rights reserved.
cf scale
© 2016 Pivotal Software, Inc. All rights reserved.
cf scale
© 2016 Pivotal Software, Inc. All rights reserved.
$ cf scale app-name -i 4
$ cf scale app-name -m 2g
‹#›© 2016 Pivotal Software, Inc. All rights reserved.
Demo
https://www.youtube.com/watch?v=_TpvipmGisc
‹#›© 2016 Pivotal Software, Inc. All rights reserved.
Deploying an Application
IaaS Cloud Foundry
Configure Firewall
Configure Service Connectivity
Configure SSL
Configure Load Balancer
Deploy Application
Install Application Runtime
Provision a VM
cf push
‹#›© 2016 Pivotal Software, Inc. All rights reserved.
Scaling an Application
IaaS Cloud Foundry
Configure Firewall
Configure Service Connectivity
Configure SSL
Configure Load Balancer
Deploy Application
Install Application Runtime
Provision a VM
cf scale
‹#›© 2016 Pivotal Software, Inc. All rights reserved.
Scaling an Application
IaaS Cloud Foundry
Configure Firewall
Configure Service Connectivity
Configure SSL
Configure Load Balancer
Deploy Application
Install Application Runtime
Provision a VM
cf scale
!!
‹#›© 2016 Pivotal Software, Inc. All rights reserved.
Cloud Foundry
‹#›© 2016 Pivotal Software, Inc. All rights reserved.
Cloud Foundry
http://docs.cloudfoundry.org/concepts/diego/diego-architecture.html
© 2016 Pivotal Software, Inc. All rights reserved.
Architecture (Super Simplified)
Cloud	Controller
Blobstore DB
Cell
cf	push
http://...
CC	API
Containers
Router
© 2016 Pivotal Software, Inc. All rights reserved.
Architecture (Super Simplified)
Cloud	Controller
Blobstore DB
Cell
cf	push
http://...
CC	API
Containers
Router
RunC
© 2016 Pivotal Software, Inc. All rights reserved.
! Upload
Cloud	Controller
Blobstore DB
Cell
cf	push CC	API
Router
App
© 2016 Pivotal Software, Inc. All rights reserved.
! Upload
Cloud	Controller
Blobstore DB
Cell
cf	push CC	API
Router
App
© 2016 Pivotal Software, Inc. All rights reserved.
" Stage
Cloud	Controller
Blobstore DB
Cell
cf	push CC	API
Router
© 2016 Pivotal Software, Inc. All rights reserved.
" Stage
Cloud	Controller
Blobstore DB
Cell
cf	push CC	API
Router
© 2016 Pivotal Software, Inc. All rights reserved.
" Stage
Cloud	Controller
Blobstore DB
Cell
cf	push CC	API
Router
Runtime
App
JRE,	App	Server	
etc..
© 2016 Pivotal Software, Inc. All rights reserved.
" Stage
Cloud	Controller
Blobstore DB
Cell
cf	push CC	API
Router
Runtime
App
© 2016 Pivotal Software, Inc. All rights reserved.
" Stage
Cloud	Controller
Blobstore DB
Cell
cf	push CC	API
Router
Runtime
App
Droplet
© 2016 Pivotal Software, Inc. All rights reserved.
" Stage
Cloud	Controller
Blobstore DB
Cell
cf	push CC	API
Router
Upload
© 2016 Pivotal Software, Inc. All rights reserved.
" Stage
Cloud	Controller
Blobstore DB
Cell
cf	push CC	API
Router
Upload
© 2016 Pivotal Software, Inc. All rights reserved.
" Stage
Cloud	Controller
Blobstore DB
Cell
cf	push CC	API
Router
© 2016 Pivotal Software, Inc. All rights reserved.
# Start
Cloud	Controller
Blobstore DB
Cell
cf	push CC	API
Router
© 2016 Pivotal Software, Inc. All rights reserved.
# Start
Cloud	Controller
Blobstore DB
Cell
cf	push CC	API
Router
© 2016 Pivotal Software, Inc. All rights reserved.
# Start
Cloud	Controller
Blobstore DB
Cell
cf	push CC	API
Router
© 2016 Pivotal Software, Inc. All rights reserved.
# Start
Cloud	Controller
Blobstore DB
Cell
cf	push CC	API
Router
© 2016 Pivotal Software, Inc. All rights reserved.
# Start
Cloud	Controller
Blobstore DB
Cell
http://…
CC	API
Router
© 2016 Pivotal Software, Inc. All rights reserved.
Scale out
Cloud	Controller
Blobstore DB
Cell
http://…
CC	API
Router
cf	scale
© 2016 Pivotal Software, Inc. All rights reserved.
Scale out
Cloud	Controller
Blobstore DB
Cell
http://…
CC	API
Router
cf	scale
© 2016 Pivotal Software, Inc. All rights reserved.
Scale out
Cloud	Controller
Blobstore DB
Cell
http://…
CC	API
Router
cf	scale
© 2016 Pivotal Software, Inc. All rights reserved.
Scale out
Cloud	Controller
Blobstore DB
Cell
http://…
CC	API
Router
cf	scale
© 2016 Pivotal Software, Inc. All rights reserved.
Scale out
Cloud	Controller
Blobstore DB
Cell
http://…
CC	API
Router
cf	scale
© 2016 Pivotal Software, Inc. All rights reserved.
Buildpack
$ cf push
$ cf push -b https://github.com/<you>/java-buildpack.git
Auto Detect
Custom Buildpack
Runtime
App
buildpack
https://github.com/cloudfoundry-community/cf-docs-contrib/wiki/Buildpacks
$ cf push -b java_buildpack
Manual
© 2016 Pivotal Software, Inc. All rights reserved.
Cell
Docker
© 2016 Pivotal Software, Inc. All rights reserved.
Cell
Docker
© 2016 Pivotal Software, Inc. All rights reserved.
Docker
$ cf push demo-docker 
--docker-image 
cloudfoundry/lattice-app
© 2016 Pivotal Software, Inc. All rights reserved.
Docker
$ cf push demo-docker 
--docker-image 
cloudfoundry/lattice-app
CF
👇 !!
bit.ly/cf-container
‹#›© 2016 Pivotal Software, Inc. All rights reserved.
Cloud Foundry
© 2016 Pivotal Software, Inc. All rights reserved.
•
•
•
• Blue / Green
• Zero Downtime Update
© 2016 Pivotal Software, Inc. All rights reserved.
http://12factor.net/backing-services
© 2016 Pivotal Software, Inc. All rights reserved.
$	cf	marketplace
© 2016 Pivotal Software, Inc. All rights reserved.
$	cf	marketplace
Pivotal Web Services
© 2016 Pivotal Software, Inc. All rights reserved.
Create & Bind Service
$ cf create-service cleardb spark mydb
$ cf bind-service hello mydb
<Service	Name> <Plan	Name> <Service	Instance	Name>
<Service	Instance	Name><App	Name>
MySQL
© 2016 Pivotal Software, Inc. All rights reserved.
VCAP_SERVICES
{"cleardb":	[{"credentials":	{	
		"hostname":	"us-cdbr-iron-east-03.cleardb.net",	
		"jdbcUrl":	"jdbc:mysql://us-cdbr-iron-east-03.cleardb.net/ad_1191b396cc81848",	
		"name":	"ad_1191b396cc81848",	
		"password":	"67674107",	
		"port":	"3306",	
		"uri":	"mysql://b6f7c089a1680f:67674107@...",	
		"username":	"b6f7c089a1680f"},		
		"label":	"cleardb",	"tags":	["mysql",	...],	
		"name":	"mydb",	...}]}
‹#›© 2016 Pivotal Software, Inc. All rights reserved.
Go (go-simplejson)
import "github.com/bitly/go-simplejson"
json, _ := simplejson.NewJson([]byte(os.Getenv("VCAP_SERVICES")))
credentials := json.Get("cleardb").GetIndex(0)
.Get("credentials").MustMap()
uri, _ := credentials["uri"].(string)
u, _ := url.Parse(uri)
url := fmt.Sprintf("%s@tcp(%s)%s", u.User.String(),
u.Host, u.Path)
‹#›© 2016 Pivotal Software, Inc. All rights reserved.
Go (go-cfenv)
import cfenv "github.com/cloudfoundry-community/go-cfenv"
appEnv, err := cfenv.Current()
mydb, err := appEnv.Services.WithName("mydb")
uri, _ := mydb.Credentials["uri"].(string)
u, _ := url.Parse(uri)
url := fmt.Sprintf("%s@tcp(%s)%s", u.User.String(),
u.Host, u.Path)
‹#›© 2016 Pivotal Software, Inc. All rights reserved.
Java (Jackson)
JsonNode credentials = objectMapper
.readTree(System.getenv("VCAP_SERVICES"))
.get("cleardb").get(0).get("credentials");
String url = credentials.get("jdbcUrl").asText();
‹#›© 2016 Pivotal Software, Inc. All rights reserved.
Java (Spring)
@Configuration
public class CloudConfig extends AbstractCloudConfig {
@Bean
DataSource dataSource() {
return connectionFactory().dataSource();
}
}
http://cloud.spring.io/spring-cloud-connectors/
Spring Cloud Connectors
© 2016 Pivotal Software, Inc. All rights reserved.
Service Broker / User Provided
Application
Service	Broker
Service	Instance
User	Provided	Service
Managed	Services
MySQL
Redis
RabbitMQ Oracle	DB
create-user-provided-servicecreate-service
bind-service
marketplace
© 2016 Pivotal Software, Inc. All rights reserved.
User Provided Service
$	cf	create-user-provided-service	mydb		
												-p	'{"username"	:	"xxx",	"password"	:	"xxx",			
																			"port"	:	"xxx",	"	jdbcUrl"	:	"xxx"}'
$	cf	bind-service	hello	mydb
(Oracle DB )
© 2016 Pivotal Software, Inc. All rights reserved.
Log
$	cf	logs	hello
© 2016 Pivotal Software, Inc. All rights reserved.
3rd Party Log Managers
$ cf create-user-provided-service mylog 
-l syslog://xxxxxxxx-logit.io:36129
$ cf bind-service hello mylog
‹#›© 2016 Pivotal Software, Inc. All rights reserved.
PCF Metrics https://metrics.run.pivotal.io/ for Pivotal Web Services
© 2016 Pivotal Software, Inc. All rights reserved.
4 Layers HA
PCF
3. Resurrector
restarts failed
VMs
App Fail
Platform
Fail
VM Fail Rack Fail
PCF
A B C
B
1. 2.
PCF
VM
PCF
A B C
Process
PCF
A B C
VM1 VM2
OS,
Mware
VM
PCF VM kill
3.
VM3
OS,
Mware
OS,
Mware
PCF
Zone
Distribution
4.
Zone 2Zone 1
VM1 VM2
‹#›© 2016 Pivotal Software, Inc. All rights reserved.
Demo
`
https://www.youtube.com/watch?v=26RrBiBymeA
© 2016 Pivotal Software, Inc. All rights reserved.
Blue/Green Deployment
• 0
V1
Router
$ cf push v1 -n app
app.example.com
© 2016 Pivotal Software, Inc. All rights reserved.
Blue/Green Deployment
V1
Router
V2
app-g.example.com
app.example.com
$ cf push v2 -n app-g
© 2016 Pivotal Software, Inc. All rights reserved.
Blue/Green Deployment
V1
Router
V2
app-g.example.com
app.example.com
app.example.com
$ cf map-route v2 example.com -n app
© 2016 Pivotal Software, Inc. All rights reserved.
Blue/Green Deployment
V1
Router
V2
app-g.example.com
app.example.com
$ cf unmap-route v1 example.com -n app
© 2016 Pivotal Software, Inc. All rights reserved.
Blue/Green Deployment
V1
Router
V2
app-g.example.com
app.example.com
😊
$ cf unmap-route v1 example.com -n app
© 2016 Pivotal Software, Inc. All rights reserved.
Blue/Green Deployment
V1
Router
V2
app-g.example.com
app.example.com
© 2016 Pivotal Software, Inc. All rights reserved.
Blue/Green Deployment
V1
Router
app-g.example.com
app.example.com
😱
© 2016 Pivotal Software, Inc. All rights reserved.
Blue/Green Deployment
V1
Router
V2
app-g.example.com
app.example.com
😱
🔥
app.example.com
$ cf map-route v1 example.com -n app
© 2016 Pivotal Software, Inc. All rights reserved.
Blue/Green Deployment
V1
Router
V2
app-g.example.com 😱
🔥
app.example.com
$ cf unmap-route v2 example.com -n app
© 2016 Pivotal Software, Inc. All rights reserved.
Blue/Green Deployment
V1
Router
V2
app-g.example.com
app.example.com
😊
$ cf delete v1
© 2016 Pivotal Software, Inc. All rights reserved.
Blue/Green Deployment
Router
V2
app-g.example.com
app.example.com
😊
$ cf delete v1
© 2016 Pivotal Software, Inc. All rights reserved.
Blue/Green Deployment
Router
V2
app.example.com
$ cf unmap-route v2 example.com -n app-g
‹#›© 2016 Pivotal Software, Inc. All rights reserved.
Demo
https://www.youtube.com/watch?v=2LtsURDvMF0
© 2016 Pivotal Software, Inc. All rights reserved.
Zero Downtime Update
• ) JVM
https://github.com/concourse/autopilot
$ cf zero-downtime-push app-name -f manifest.yml
‹#›© 2016 Pivotal Software, Inc. All rights reserved.
Demo
https://www.youtube.com/watch?v=mbvg8wijs4Y
© Copyright 2016 Pivotal. All rights reserved. 66
Upgrade and patch with rolling “canary” deploys
X YM NA B
A,B,M,N,X,Y - Application instances
- VM prior to update
© Copyright 2016 Pivotal. All rights reserved. 67
Upgrade and patch with rolling “canary” deploys
X YM NA B
Apps redeployed to clear VMs
X YM NA B
© Copyright 2016 Pivotal. All rights reserved. 68
Upgrade and patch with rolling “canary” deploys
X YM NA B
X YM NA B
Update introduced. If the tests
pass, keep going
X YM NA B
© Copyright 2016 Pivotal. All rights reserved. 69
Upgrade and patch with rolling “canary” deploys
X YM NA B
X YM NA B
X YM NA B
Apps redeployed to updated VMs
X YM NA B
© Copyright 2016 Pivotal. All rights reserved. 70
Upgrade and patch with rolling “canary” deploys
X YM NA B
X YM NA B
X YM NA B
X YM NA B
Remaining VMs updated same way
X YM NA B
© Copyright 2016 Pivotal. All rights reserved. 71
Upgrade and patch with rolling “canary” deploys
X YM NA B
X YM NA B
X YM NA B
X YM NA B
X YM NA B
Automated, No downtime
Atomic rolling update
X YM NA B
© Copyright 2016 Pivotal. All rights reserved. 72
Upgrade and patch with rolling “canary” deploys
© 2016 Pivotal Software, Inc. All rights reserved.
New Features
•Routing Service
•TCP Routing
•Persistent Volume
‹#›© 2016 Pivotal Software, Inc. All rights reserved.
Cloud Foundry
© 2016 Pivotal Software, Inc. All rights reserved.
CF PCF Dev
Pivotal
Web Services
Pivotal
Cloud Foundry
Cloud Foundry
(OSS)
© 2016 Pivotal Software, Inc. All rights reserved.
CF PCF Dev
Pivotal
Web Services
Pivotal
Cloud Foundry
Cloud Foundry
(OSS)
© 2016 Pivotal Software, Inc. All rights reserved.
CF PCF Dev
Pivotal
Web Services
Pivotal
Cloud Foundry
Cloud Foundry
(OSS)
Yes
© 2016 Pivotal Software, Inc. All rights reserved.
CF PCF Dev
Pivotal
Web Services
Pivotal
Cloud Foundry
Cloud Foundry
(OSS)
Yes
© 2016 Pivotal Software, Inc. All rights reserved.
CF PCF Dev
Pivotal
Web Services
Pivotal
Cloud Foundry
Cloud Foundry
(OSS)
Yes
Yes
© 2016 Pivotal Software, Inc. All rights reserved.
CF PCF Dev
Pivotal
Web Services
Pivotal
Cloud Foundry
Cloud Foundry
(OSS)
Yes
Yes
© 2016 Pivotal Software, Inc. All rights reserved.
CF PCF Dev
Pivotal
Web Services
Pivotal
Cloud Foundry
Cloud Foundry
(OSS)
Yes
Yes
No
( )
© 2016 Pivotal Software, Inc. All rights reserved.
CF PCF Dev
Pivotal
Web Services
Pivotal
Cloud Foundry
Cloud Foundry
(OSS)
Yes
Yes
No
( )
© 2016 Pivotal Software, Inc. All rights reserved.
CF PCF Dev
Pivotal
Web Services
Pivotal
Cloud Foundry
Cloud Foundry
(OSS)
Yes
Yes
No
( )
No
( )
© 2016 Pivotal Software, Inc. All rights reserved.
CF PCF Dev
Pivotal
Web Services
Pivotal
Cloud Foundry
Cloud Foundry
(OSS)
Yes
Yes
No
( )
No
( )
© 2016 Pivotal Software, Inc. All rights reserved.
CF PCF Dev
Pivotal
Web Services
Pivotal
Cloud Foundry
Cloud Foundry
(OSS)
Yes
Yes
No
( )
No
( )
No
( )
© 2016 Pivotal Software, Inc. All rights reserved.
CF PCF Dev
Pivotal
Web Services
Pivotal
Cloud Foundry
Cloud Foundry
(OSS)
Yes
Yes
No
( )
No
( )
No
( )
© 2016 Pivotal Software, Inc. All rights reserved.
CF PCF Dev
Pivotal
Web Services
Pivotal
Cloud Foundry
Cloud Foundry
(OSS)
Yes
Yes
No
( )
No
( )
No
( )
Yes
© 2016 Pivotal Software, Inc. All rights reserved.
CF PCF Dev
Pivotal
Web Services
Pivotal
Cloud Foundry
Cloud Foundry
(OSS)
Yes
Yes
No
( )
No
( )
No
( )
Yes
© 2016 Pivotal Software, Inc. All rights reserved.
CF PCF Dev
Pivotal
Web Services
Pivotal
Cloud Foundry
Cloud Foundry
(OSS)
Yes
Yes
No
( )
No
( )
No
( )
Yes
Yes
© 2016 Pivotal Software, Inc. All rights reserved.
CF PCF Dev
Pivotal
Web Services
Pivotal
Cloud Foundry
Cloud Foundry
(OSS)
Yes
Yes
No
( )
No
( )
No
( )
Yes
Yes
© 2016 Pivotal Software, Inc. All rights reserved.
CF PCF Dev
Pivotal
Web Services
Pivotal
Cloud Foundry
Cloud Foundry
(OSS)
Yes
Yes
No
( )
No
( )
No
( )
Yes
Yes
No
(OSS)
© 2016 Pivotal Software, Inc. All rights reserved.
CF PCF Dev
Pivotal
Web Services
Pivotal
Cloud Foundry
Cloud Foundry
(OSS)
Yes
Yes
No
( )
No
( )
No
( )
Yes
Yes
No
(OSS)
© 2016 Pivotal Software, Inc. All rights reserved.
PCF Dev
• Cloud Foundry (on VirtualBox)
• http://pcfdev.io https://docs.pivotal.io/pcf-dev
• cf dev start / stop
•
• Redis
• RabbitMQ
• MySQL
• Spring Cloud Services
© 2016 Pivotal Software, Inc. All rights reserved.
Pivotal Web Services
• https://run.pivotal.io/
• AWS Pivotal Cloud Foundry
• 1GB $0.03/
• 1: Java 1GB ➡ 2200 /
• 2: Go 64MB ➡ 135 / , 8MB➡ 17 /
• $87 (2GB 2 , 1 )
•
• PCF Metrics, Auto Scaler (Docker )
© 2016 Pivotal Software, Inc. All rights reserved.
Pivotal Cloud Foundry
• https://pivotal.io/platform
• Cloud Foundry
• AppsManager
• vSphere, AWS, OpenStack CF
(OpsManager) Azure
GCP
• OSS
All in One
© 2016 Pivotal Software, Inc. All rights reserved.
Spring Boot [ ]
• http://bit.ly/hajiboot2
• Java Spring
Boot 1.4
• Pivotal Web Services
Blue/Green
© 2016 Pivotal Software, Inc. All rights reserved.
Spring Boot [ ]
• http://bit.ly/hajiboot2
• Java Spring
Boot 1.4
• Pivotal Web Services
Blue/Green
Cloud Foundry!!!!
© 2016 Pivotal Software, Inc. All rights reserved.
Spring Boot [ ]
• http://bit.ly/hajiboot2
• Java Spring
Boot 1.4
• Pivotal Web Services
Blue/Green
Cloud Foundry!!!!
!!

More Related Content

What's hot

London Node.js User Group - Cloud-native Node.js
London Node.js User Group - Cloud-native Node.jsLondon Node.js User Group - Cloud-native Node.js
London Node.js User Group - Cloud-native Node.jsBethany Nicolle Griggs
 
App development with quasar (pdf)
App development with quasar (pdf)App development with quasar (pdf)
App development with quasar (pdf)wonyong hwang
 
FullStack London - Cloud Native Node.js
FullStack London - Cloud Native Node.jsFullStack London - Cloud Native Node.js
FullStack London - Cloud Native Node.jsBethany Nicolle Griggs
 
So I Wrote a Manifest
So I Wrote a ManifestSo I Wrote a Manifest
So I Wrote a ManifestPuppet
 
제4회 한국IBM과 함께하는 난공불락 오픈소스 인프라 세미나-Ranchers
제4회 한국IBM과 함께하는 난공불락 오픈소스 인프라 세미나-Ranchers제4회 한국IBM과 함께하는 난공불락 오픈소스 인프라 세미나-Ranchers
제4회 한국IBM과 함께하는 난공불락 오픈소스 인프라 세미나-RanchersTommy Lee
 
Vagrant introduction for Developers
Vagrant introduction for DevelopersVagrant introduction for Developers
Vagrant introduction for DevelopersAntons Kranga
 
DCSF19 Tips and Tricks of the Docker Captains
DCSF19 Tips and Tricks of the Docker Captains  DCSF19 Tips and Tricks of the Docker Captains
DCSF19 Tips and Tricks of the Docker Captains Docker, Inc.
 
Puppet Camp London Fall 2015 - Service Discovery and Puppet
Puppet Camp London Fall 2015 - Service Discovery and PuppetPuppet Camp London Fall 2015 - Service Discovery and Puppet
Puppet Camp London Fall 2015 - Service Discovery and PuppetMarc Cluet
 
Nas 也可以揀土豆
Nas 也可以揀土豆Nas 也可以揀土豆
Nas 也可以揀土豆KAI CHU CHUNG
 
Vagrant for real codemotion (moar tips! ;-))
Vagrant for real codemotion (moar tips! ;-))Vagrant for real codemotion (moar tips! ;-))
Vagrant for real codemotion (moar tips! ;-))Michele Orselli
 
Python virtualenv & pip in 90 minutes
Python virtualenv & pip in 90 minutesPython virtualenv & pip in 90 minutes
Python virtualenv & pip in 90 minutesLarry Cai
 
Heroku 101 py con 2015 - David Gouldin
Heroku 101   py con 2015 - David GouldinHeroku 101   py con 2015 - David Gouldin
Heroku 101 py con 2015 - David GouldinHeroku
 
How to integrate front end tool via gruntjs
How to integrate front end tool via gruntjsHow to integrate front end tool via gruntjs
How to integrate front end tool via gruntjsBo-Yi Wu
 
Automating the Network
Automating the NetworkAutomating the Network
Automating the NetworkPuppet
 
Migrating to a Bazel-based CI System: 6 Learnings - Or Shachar
Migrating to a Bazel-based CI System: 6 Learnings - Or ShacharMigrating to a Bazel-based CI System: 6 Learnings - Or Shachar
Migrating to a Bazel-based CI System: 6 Learnings - Or ShacharWix Engineering
 
"13 ways to run web applications on the Internet" Andrii Shumada
"13 ways to run web applications on the Internet" Andrii Shumada"13 ways to run web applications on the Internet" Andrii Shumada
"13 ways to run web applications on the Internet" Andrii ShumadaFwdays
 
Meetup - Principles of the kube api and how to extend it
Meetup - Principles of the kube api and how to extend itMeetup - Principles of the kube api and how to extend it
Meetup - Principles of the kube api and how to extend itStefan Schimanski
 
Homer - Workshop at Kamailio World 2017
Homer - Workshop at Kamailio World 2017Homer - Workshop at Kamailio World 2017
Homer - Workshop at Kamailio World 2017Giacomo Vacca
 

What's hot (20)

London Node.js User Group - Cloud-native Node.js
London Node.js User Group - Cloud-native Node.jsLondon Node.js User Group - Cloud-native Node.js
London Node.js User Group - Cloud-native Node.js
 
App development with quasar (pdf)
App development with quasar (pdf)App development with quasar (pdf)
App development with quasar (pdf)
 
FullStack London - Cloud Native Node.js
FullStack London - Cloud Native Node.jsFullStack London - Cloud Native Node.js
FullStack London - Cloud Native Node.js
 
So I Wrote a Manifest
So I Wrote a ManifestSo I Wrote a Manifest
So I Wrote a Manifest
 
제4회 한국IBM과 함께하는 난공불락 오픈소스 인프라 세미나-Ranchers
제4회 한국IBM과 함께하는 난공불락 오픈소스 인프라 세미나-Ranchers제4회 한국IBM과 함께하는 난공불락 오픈소스 인프라 세미나-Ranchers
제4회 한국IBM과 함께하는 난공불락 오픈소스 인프라 세미나-Ranchers
 
Vagrant introduction for Developers
Vagrant introduction for DevelopersVagrant introduction for Developers
Vagrant introduction for Developers
 
DCSF19 Tips and Tricks of the Docker Captains
DCSF19 Tips and Tricks of the Docker Captains  DCSF19 Tips and Tricks of the Docker Captains
DCSF19 Tips and Tricks of the Docker Captains
 
Puppet Camp London Fall 2015 - Service Discovery and Puppet
Puppet Camp London Fall 2015 - Service Discovery and PuppetPuppet Camp London Fall 2015 - Service Discovery and Puppet
Puppet Camp London Fall 2015 - Service Discovery and Puppet
 
Nas 也可以揀土豆
Nas 也可以揀土豆Nas 也可以揀土豆
Nas 也可以揀土豆
 
Vagrant for real codemotion (moar tips! ;-))
Vagrant for real codemotion (moar tips! ;-))Vagrant for real codemotion (moar tips! ;-))
Vagrant for real codemotion (moar tips! ;-))
 
Python virtualenv & pip in 90 minutes
Python virtualenv & pip in 90 minutesPython virtualenv & pip in 90 minutes
Python virtualenv & pip in 90 minutes
 
Heroku 101 py con 2015 - David Gouldin
Heroku 101   py con 2015 - David GouldinHeroku 101   py con 2015 - David Gouldin
Heroku 101 py con 2015 - David Gouldin
 
How to integrate front end tool via gruntjs
How to integrate front end tool via gruntjsHow to integrate front end tool via gruntjs
How to integrate front end tool via gruntjs
 
Automating the Network
Automating the NetworkAutomating the Network
Automating the Network
 
Vagrant
VagrantVagrant
Vagrant
 
Docker in practice
Docker in practiceDocker in practice
Docker in practice
 
Migrating to a Bazel-based CI System: 6 Learnings - Or Shachar
Migrating to a Bazel-based CI System: 6 Learnings - Or ShacharMigrating to a Bazel-based CI System: 6 Learnings - Or Shachar
Migrating to a Bazel-based CI System: 6 Learnings - Or Shachar
 
"13 ways to run web applications on the Internet" Andrii Shumada
"13 ways to run web applications on the Internet" Andrii Shumada"13 ways to run web applications on the Internet" Andrii Shumada
"13 ways to run web applications on the Internet" Andrii Shumada
 
Meetup - Principles of the kube api and how to extend it
Meetup - Principles of the kube api and how to extend itMeetup - Principles of the kube api and how to extend it
Meetup - Principles of the kube api and how to extend it
 
Homer - Workshop at Kamailio World 2017
Homer - Workshop at Kamailio World 2017Homer - Workshop at Kamailio World 2017
Homer - Workshop at Kamailio World 2017
 

Viewers also liked

どこよりも早い Spring Boot 1.2 解説 #渋谷Java
どこよりも早い Spring Boot 1.2 解説 #渋谷Javaどこよりも早い Spring Boot 1.2 解説 #渋谷Java
どこよりも早い Spring Boot 1.2 解説 #渋谷JavaToshiaki Maki
 
PCF1: Cloud Foundry Diego ( Predix Transform 2016)
PCF1: Cloud Foundry Diego ( Predix Transform 2016)PCF1: Cloud Foundry Diego ( Predix Transform 2016)
PCF1: Cloud Foundry Diego ( Predix Transform 2016)Predix
 
Cloud Foundry Diego, Lattice, Docker and more
Cloud Foundry Diego, Lattice, Docker and moreCloud Foundry Diego, Lattice, Docker and more
Cloud Foundry Diego, Lattice, Docker and morecornelia davis
 
Bluemix and DevOps workshop lab
Bluemix and DevOps workshop labBluemix and DevOps workshop lab
Bluemix and DevOps workshop labbenm4nn
 
Cloud Foundryは何故動くのか
Cloud Foundryは何故動くのかCloud Foundryは何故動くのか
Cloud Foundryは何故動くのかKazuto Kusama
 
How does the Cloud Foundry Diego Project Run at Scale?
How does the Cloud Foundry Diego Project Run at Scale?How does the Cloud Foundry Diego Project Run at Scale?
How does the Cloud Foundry Diego Project Run at Scale?VMware Tanzu
 
Introduction into Cloud Foundry and Bosh | anynines
Introduction into Cloud Foundry and Bosh | anyninesIntroduction into Cloud Foundry and Bosh | anynines
Introduction into Cloud Foundry and Bosh | anyninesanynines GmbH
 
Cloud Foundry for PHP developers
Cloud Foundry for PHP developersCloud Foundry for PHP developers
Cloud Foundry for PHP developersDaniel Krook
 
Docker OpenStack Cloud Foundry
Docker OpenStack Cloud FoundryDocker OpenStack Cloud Foundry
Docker OpenStack Cloud FoundryAnimesh Singh
 
Cloud Foundry Technical Overview
Cloud Foundry Technical OverviewCloud Foundry Technical Overview
Cloud Foundry Technical Overviewcornelia davis
 

Viewers also liked (11)

どこよりも早い Spring Boot 1.2 解説 #渋谷Java
どこよりも早い Spring Boot 1.2 解説 #渋谷Javaどこよりも早い Spring Boot 1.2 解説 #渋谷Java
どこよりも早い Spring Boot 1.2 解説 #渋谷Java
 
PCF1: Cloud Foundry Diego ( Predix Transform 2016)
PCF1: Cloud Foundry Diego ( Predix Transform 2016)PCF1: Cloud Foundry Diego ( Predix Transform 2016)
PCF1: Cloud Foundry Diego ( Predix Transform 2016)
 
Cloud Foundry Diego, Lattice, Docker and more
Cloud Foundry Diego, Lattice, Docker and moreCloud Foundry Diego, Lattice, Docker and more
Cloud Foundry Diego, Lattice, Docker and more
 
Bluemix and DevOps workshop lab
Bluemix and DevOps workshop labBluemix and DevOps workshop lab
Bluemix and DevOps workshop lab
 
Cloud Foundryは何故動くのか
Cloud Foundryは何故動くのかCloud Foundryは何故動くのか
Cloud Foundryは何故動くのか
 
How does the Cloud Foundry Diego Project Run at Scale?
How does the Cloud Foundry Diego Project Run at Scale?How does the Cloud Foundry Diego Project Run at Scale?
How does the Cloud Foundry Diego Project Run at Scale?
 
Introduction into Cloud Foundry and Bosh | anynines
Introduction into Cloud Foundry and Bosh | anyninesIntroduction into Cloud Foundry and Bosh | anynines
Introduction into Cloud Foundry and Bosh | anynines
 
Cloud Foundry for PHP developers
Cloud Foundry for PHP developersCloud Foundry for PHP developers
Cloud Foundry for PHP developers
 
GO-CFを試してみる
GO-CFを試してみるGO-CFを試してみる
GO-CFを試してみる
 
Docker OpenStack Cloud Foundry
Docker OpenStack Cloud FoundryDocker OpenStack Cloud Foundry
Docker OpenStack Cloud Foundry
 
Cloud Foundry Technical Overview
Cloud Foundry Technical OverviewCloud Foundry Technical Overview
Cloud Foundry Technical Overview
 

Similar to 今すぐ始めるCloud Foundry #hackt #hackt_k

Managing your Docker image continuously with Concourse CI
Managing your Docker image continuously with Concourse CIManaging your Docker image continuously with Concourse CI
Managing your Docker image continuously with Concourse CIToshiaki Maki
 
Spring Cloud Servicesの紹介 #pcf_tokyo
Spring Cloud Servicesの紹介 #pcf_tokyoSpring Cloud Servicesの紹介 #pcf_tokyo
Spring Cloud Servicesの紹介 #pcf_tokyoToshiaki Maki
 
Manchester geek night pcf 101
Manchester geek night   pcf 101Manchester geek night   pcf 101
Manchester geek night pcf 101Sufyaan Kazi
 
AWS 고객사를 위한 ‘AWS 컨테이너 교육’ - 유재석, AWS 솔루션즈 아키텍트
AWS 고객사를 위한 ‘AWS 컨테이너 교육’ - 유재석, AWS 솔루션즈 아키텍트AWS 고객사를 위한 ‘AWS 컨테이너 교육’ - 유재석, AWS 솔루션즈 아키텍트
AWS 고객사를 위한 ‘AWS 컨테이너 교육’ - 유재석, AWS 솔루션즈 아키텍트Amazon Web Services Korea
 
K8s, Amazon EKS - 유재석, AWS 솔루션즈 아키텍트
K8s, Amazon EKS - 유재석, AWS 솔루션즈 아키텍트K8s, Amazon EKS - 유재석, AWS 솔루션즈 아키텍트
K8s, Amazon EKS - 유재석, AWS 솔루션즈 아키텍트Amazon Web Services Korea
 
AWS Container Services – 유재석 (AWS 솔루션즈 아키텍트)
AWS Container Services – 유재석 (AWS 솔루션즈 아키텍트)AWS Container Services – 유재석 (AWS 솔루션즈 아키텍트)
AWS Container Services – 유재석 (AWS 솔루션즈 아키텍트)Amazon Web Services Korea
 
Amazon Container Services – 유재석 (AWS 솔루션즈 아키텍트)
 Amazon Container Services – 유재석 (AWS 솔루션즈 아키텍트) Amazon Container Services – 유재석 (AWS 솔루션즈 아키텍트)
Amazon Container Services – 유재석 (AWS 솔루션즈 아키텍트)Amazon Web Services Korea
 
Team Support in Concourse CI 2.0 #concourse_tokyo
Team Support in Concourse CI 2.0 #concourse_tokyoTeam Support in Concourse CI 2.0 #concourse_tokyo
Team Support in Concourse CI 2.0 #concourse_tokyoToshiaki Maki
 
Introduction to Cloud Foundry #JJUG
Introduction to Cloud Foundry #JJUGIntroduction to Cloud Foundry #JJUG
Introduction to Cloud Foundry #JJUGToshiaki Maki
 
NDC 2011 - Let me introduce my Moncai
NDC 2011 - Let me introduce my MoncaiNDC 2011 - Let me introduce my Moncai
NDC 2011 - Let me introduce my Moncaimoncai
 
Spring ❤️ Kotlin #jjug
Spring ❤️ Kotlin #jjugSpring ❤️ Kotlin #jjug
Spring ❤️ Kotlin #jjugToshiaki Maki
 
Cloud Foundy Java Client V 2.0 #cf_tokyo
Cloud Foundy Java Client V 2.0 #cf_tokyoCloud Foundy Java Client V 2.0 #cf_tokyo
Cloud Foundy Java Client V 2.0 #cf_tokyoToshiaki Maki
 
Container, Container, Container -유재석 (AWS 솔루션즈 아키텍트)
Container, Container, Container -유재석 (AWS 솔루션즈 아키텍트)Container, Container, Container -유재석 (AWS 솔루션즈 아키텍트)
Container, Container, Container -유재석 (AWS 솔루션즈 아키텍트)Amazon Web Services Korea
 
Cloud Foundry Day in Tokyo Lightning Talk - Cloud Foundry over the Proxy
Cloud Foundry Day in Tokyo Lightning Talk - Cloud Foundry over the ProxyCloud Foundry Day in Tokyo Lightning Talk - Cloud Foundry over the Proxy
Cloud Foundry Day in Tokyo Lightning Talk - Cloud Foundry over the ProxyMaki Toshio
 
The Fantastic Voyage to PaaS - Are we there yet? (Cloud Foundry Summit 2014)
The Fantastic Voyage to PaaS - Are we there yet? (Cloud Foundry Summit 2014)The Fantastic Voyage to PaaS - Are we there yet? (Cloud Foundry Summit 2014)
The Fantastic Voyage to PaaS - Are we there yet? (Cloud Foundry Summit 2014)VMware Tanzu
 
How to Architect and Develop Cloud Native Applications
How to Architect and Develop Cloud Native ApplicationsHow to Architect and Develop Cloud Native Applications
How to Architect and Develop Cloud Native ApplicationsSufyaan Kazi
 
Event Driven Microservices with Spring Cloud Stream #jjug_ccc #ccc_ab3
Event Driven Microservices with Spring Cloud Stream #jjug_ccc #ccc_ab3Event Driven Microservices with Spring Cloud Stream #jjug_ccc #ccc_ab3
Event Driven Microservices with Spring Cloud Stream #jjug_ccc #ccc_ab3Toshiaki Maki
 
CI/CD with AWS Code Services
CI/CD with AWS Code ServicesCI/CD with AWS Code Services
CI/CD with AWS Code ServicesPulkit Gupta
 
New and cool in OSGi R7 - David Bosschaert & Carsten Ziegeler
New and cool in OSGi R7 - David Bosschaert & Carsten ZiegelerNew and cool in OSGi R7 - David Bosschaert & Carsten Ziegeler
New and cool in OSGi R7 - David Bosschaert & Carsten Ziegelermfrancis
 
Functional legacy - how to incorporate ZIO in your legacy services
Functional legacy - how to incorporate ZIO in your legacy servicesFunctional legacy - how to incorporate ZIO in your legacy services
Functional legacy - how to incorporate ZIO in your legacy servicesNatan Silnitsky
 

Similar to 今すぐ始めるCloud Foundry #hackt #hackt_k (20)

Managing your Docker image continuously with Concourse CI
Managing your Docker image continuously with Concourse CIManaging your Docker image continuously with Concourse CI
Managing your Docker image continuously with Concourse CI
 
Spring Cloud Servicesの紹介 #pcf_tokyo
Spring Cloud Servicesの紹介 #pcf_tokyoSpring Cloud Servicesの紹介 #pcf_tokyo
Spring Cloud Servicesの紹介 #pcf_tokyo
 
Manchester geek night pcf 101
Manchester geek night   pcf 101Manchester geek night   pcf 101
Manchester geek night pcf 101
 
AWS 고객사를 위한 ‘AWS 컨테이너 교육’ - 유재석, AWS 솔루션즈 아키텍트
AWS 고객사를 위한 ‘AWS 컨테이너 교육’ - 유재석, AWS 솔루션즈 아키텍트AWS 고객사를 위한 ‘AWS 컨테이너 교육’ - 유재석, AWS 솔루션즈 아키텍트
AWS 고객사를 위한 ‘AWS 컨테이너 교육’ - 유재석, AWS 솔루션즈 아키텍트
 
K8s, Amazon EKS - 유재석, AWS 솔루션즈 아키텍트
K8s, Amazon EKS - 유재석, AWS 솔루션즈 아키텍트K8s, Amazon EKS - 유재석, AWS 솔루션즈 아키텍트
K8s, Amazon EKS - 유재석, AWS 솔루션즈 아키텍트
 
AWS Container Services – 유재석 (AWS 솔루션즈 아키텍트)
AWS Container Services – 유재석 (AWS 솔루션즈 아키텍트)AWS Container Services – 유재석 (AWS 솔루션즈 아키텍트)
AWS Container Services – 유재석 (AWS 솔루션즈 아키텍트)
 
Amazon Container Services – 유재석 (AWS 솔루션즈 아키텍트)
 Amazon Container Services – 유재석 (AWS 솔루션즈 아키텍트) Amazon Container Services – 유재석 (AWS 솔루션즈 아키텍트)
Amazon Container Services – 유재석 (AWS 솔루션즈 아키텍트)
 
Team Support in Concourse CI 2.0 #concourse_tokyo
Team Support in Concourse CI 2.0 #concourse_tokyoTeam Support in Concourse CI 2.0 #concourse_tokyo
Team Support in Concourse CI 2.0 #concourse_tokyo
 
Introduction to Cloud Foundry #JJUG
Introduction to Cloud Foundry #JJUGIntroduction to Cloud Foundry #JJUG
Introduction to Cloud Foundry #JJUG
 
NDC 2011 - Let me introduce my Moncai
NDC 2011 - Let me introduce my MoncaiNDC 2011 - Let me introduce my Moncai
NDC 2011 - Let me introduce my Moncai
 
Spring ❤️ Kotlin #jjug
Spring ❤️ Kotlin #jjugSpring ❤️ Kotlin #jjug
Spring ❤️ Kotlin #jjug
 
Cloud Foundy Java Client V 2.0 #cf_tokyo
Cloud Foundy Java Client V 2.0 #cf_tokyoCloud Foundy Java Client V 2.0 #cf_tokyo
Cloud Foundy Java Client V 2.0 #cf_tokyo
 
Container, Container, Container -유재석 (AWS 솔루션즈 아키텍트)
Container, Container, Container -유재석 (AWS 솔루션즈 아키텍트)Container, Container, Container -유재석 (AWS 솔루션즈 아키텍트)
Container, Container, Container -유재석 (AWS 솔루션즈 아키텍트)
 
Cloud Foundry Day in Tokyo Lightning Talk - Cloud Foundry over the Proxy
Cloud Foundry Day in Tokyo Lightning Talk - Cloud Foundry over the ProxyCloud Foundry Day in Tokyo Lightning Talk - Cloud Foundry over the Proxy
Cloud Foundry Day in Tokyo Lightning Talk - Cloud Foundry over the Proxy
 
The Fantastic Voyage to PaaS - Are we there yet? (Cloud Foundry Summit 2014)
The Fantastic Voyage to PaaS - Are we there yet? (Cloud Foundry Summit 2014)The Fantastic Voyage to PaaS - Are we there yet? (Cloud Foundry Summit 2014)
The Fantastic Voyage to PaaS - Are we there yet? (Cloud Foundry Summit 2014)
 
How to Architect and Develop Cloud Native Applications
How to Architect and Develop Cloud Native ApplicationsHow to Architect and Develop Cloud Native Applications
How to Architect and Develop Cloud Native Applications
 
Event Driven Microservices with Spring Cloud Stream #jjug_ccc #ccc_ab3
Event Driven Microservices with Spring Cloud Stream #jjug_ccc #ccc_ab3Event Driven Microservices with Spring Cloud Stream #jjug_ccc #ccc_ab3
Event Driven Microservices with Spring Cloud Stream #jjug_ccc #ccc_ab3
 
CI/CD with AWS Code Services
CI/CD with AWS Code ServicesCI/CD with AWS Code Services
CI/CD with AWS Code Services
 
New and cool in OSGi R7 - David Bosschaert & Carsten Ziegeler
New and cool in OSGi R7 - David Bosschaert & Carsten ZiegelerNew and cool in OSGi R7 - David Bosschaert & Carsten Ziegeler
New and cool in OSGi R7 - David Bosschaert & Carsten Ziegeler
 
Functional legacy - how to incorporate ZIO in your legacy services
Functional legacy - how to incorporate ZIO in your legacy servicesFunctional legacy - how to incorporate ZIO in your legacy services
Functional legacy - how to incorporate ZIO in your legacy services
 

More from Toshiaki Maki

From Spring Boot 2.2 to Spring Boot 2.3 #jsug
From Spring Boot 2.2 to Spring Boot 2.3 #jsugFrom Spring Boot 2.2 to Spring Boot 2.3 #jsug
From Spring Boot 2.2 to Spring Boot 2.3 #jsugToshiaki Maki
 
Concourse x Spinnaker #concourse_tokyo
Concourse x Spinnaker #concourse_tokyoConcourse x Spinnaker #concourse_tokyo
Concourse x Spinnaker #concourse_tokyoToshiaki Maki
 
Serverless with Spring Cloud Function, Knative and riff #SpringOneTour #s1t
Serverless with Spring Cloud Function, Knative and riff #SpringOneTour #s1tServerless with Spring Cloud Function, Knative and riff #SpringOneTour #s1t
Serverless with Spring Cloud Function, Knative and riff #SpringOneTour #s1tToshiaki Maki
 
決済システムの内製化への旅 - SpringとPCFで作るクラウドネイティブなシステム開発 #jsug #sf_h1
決済システムの内製化への旅 - SpringとPCFで作るクラウドネイティブなシステム開発 #jsug #sf_h1決済システムの内製化への旅 - SpringとPCFで作るクラウドネイティブなシステム開発 #jsug #sf_h1
決済システムの内製化への旅 - SpringとPCFで作るクラウドネイティブなシステム開発 #jsug #sf_h1Toshiaki Maki
 
Spring Boot Actuator 2.0 & Micrometer #jjug_ccc #ccc_a1
Spring Boot Actuator 2.0 & Micrometer #jjug_ccc #ccc_a1Spring Boot Actuator 2.0 & Micrometer #jjug_ccc #ccc_a1
Spring Boot Actuator 2.0 & Micrometer #jjug_ccc #ccc_a1Toshiaki Maki
 
Spring Boot Actuator 2.0 & Micrometer
Spring Boot Actuator 2.0 & MicrometerSpring Boot Actuator 2.0 & Micrometer
Spring Boot Actuator 2.0 & MicrometerToshiaki Maki
 
Open Service Broker APIとKubernetes Service Catalog #k8sjp
Open Service Broker APIとKubernetes Service Catalog #k8sjpOpen Service Broker APIとKubernetes Service Catalog #k8sjp
Open Service Broker APIとKubernetes Service Catalog #k8sjpToshiaki Maki
 
Spring Cloud Function & Project riff #jsug
Spring Cloud Function & Project riff #jsugSpring Cloud Function & Project riff #jsug
Spring Cloud Function & Project riff #jsugToshiaki Maki
 
Introduction to Spring WebFlux #jsug #sf_a1
Introduction to Spring WebFlux #jsug #sf_a1Introduction to Spring WebFlux #jsug #sf_a1
Introduction to Spring WebFlux #jsug #sf_a1Toshiaki Maki
 
BOSH / CF Deployment in modern ways #cf_tokyo
BOSH / CF Deployment in modern ways #cf_tokyoBOSH / CF Deployment in modern ways #cf_tokyo
BOSH / CF Deployment in modern ways #cf_tokyoToshiaki Maki
 
Why PCF is the best platform for Spring Boot
Why PCF is the best platform for Spring BootWhy PCF is the best platform for Spring Boot
Why PCF is the best platform for Spring BootToshiaki Maki
 
Zipkin Components #zipkin_jp
Zipkin Components #zipkin_jpZipkin Components #zipkin_jp
Zipkin Components #zipkin_jpToshiaki Maki
 
マイクロサービスに必要な技術要素はすべてSpring Cloudにある #DO07
マイクロサービスに必要な技術要素はすべてSpring Cloudにある #DO07マイクロサービスに必要な技術要素はすべてSpring Cloudにある #DO07
マイクロサービスに必要な技術要素はすべてSpring Cloudにある #DO07Toshiaki Maki
 
Spring Framework 5.0による Reactive Web Application #JavaDayTokyo
Spring Framework 5.0による Reactive Web Application #JavaDayTokyoSpring Framework 5.0による Reactive Web Application #JavaDayTokyo
Spring Framework 5.0による Reactive Web Application #JavaDayTokyoToshiaki Maki
 
実例で学ぶ、明日から使えるSpring Boot Tips #jsug
実例で学ぶ、明日から使えるSpring Boot Tips #jsug実例で学ぶ、明日から使えるSpring Boot Tips #jsug
実例で学ぶ、明日から使えるSpring Boot Tips #jsugToshiaki Maki
 
Data Microservices with Spring Cloud Stream, Task, and Data Flow #jsug #spri...
Data Microservices with Spring Cloud Stream, Task,  and Data Flow #jsug #spri...Data Microservices with Spring Cloud Stream, Task,  and Data Flow #jsug #spri...
Data Microservices with Spring Cloud Stream, Task, and Data Flow #jsug #spri...Toshiaki Maki
 
Short Lived Tasks in Cloud Foundry #cfdtokyo
Short Lived Tasks in Cloud Foundry #cfdtokyoShort Lived Tasks in Cloud Foundry #cfdtokyo
Short Lived Tasks in Cloud Foundry #cfdtokyoToshiaki Maki
 
From Zero to Hero with REST and OAuth2 #jjug
From Zero to Hero with REST and OAuth2 #jjugFrom Zero to Hero with REST and OAuth2 #jjug
From Zero to Hero with REST and OAuth2 #jjugToshiaki Maki
 
Consumer Driven Contractsで REST API/マイクロサービスをテスト #m3tech
Consumer Driven Contractsで REST API/マイクロサービスをテスト #m3techConsumer Driven Contractsで REST API/マイクロサービスをテスト #m3tech
Consumer Driven Contractsで REST API/マイクロサービスをテスト #m3techToshiaki Maki
 
Implement Service Broker with Spring Boot #cf_tokyo
Implement Service Broker with Spring Boot #cf_tokyoImplement Service Broker with Spring Boot #cf_tokyo
Implement Service Broker with Spring Boot #cf_tokyoToshiaki Maki
 

More from Toshiaki Maki (20)

From Spring Boot 2.2 to Spring Boot 2.3 #jsug
From Spring Boot 2.2 to Spring Boot 2.3 #jsugFrom Spring Boot 2.2 to Spring Boot 2.3 #jsug
From Spring Boot 2.2 to Spring Boot 2.3 #jsug
 
Concourse x Spinnaker #concourse_tokyo
Concourse x Spinnaker #concourse_tokyoConcourse x Spinnaker #concourse_tokyo
Concourse x Spinnaker #concourse_tokyo
 
Serverless with Spring Cloud Function, Knative and riff #SpringOneTour #s1t
Serverless with Spring Cloud Function, Knative and riff #SpringOneTour #s1tServerless with Spring Cloud Function, Knative and riff #SpringOneTour #s1t
Serverless with Spring Cloud Function, Knative and riff #SpringOneTour #s1t
 
決済システムの内製化への旅 - SpringとPCFで作るクラウドネイティブなシステム開発 #jsug #sf_h1
決済システムの内製化への旅 - SpringとPCFで作るクラウドネイティブなシステム開発 #jsug #sf_h1決済システムの内製化への旅 - SpringとPCFで作るクラウドネイティブなシステム開発 #jsug #sf_h1
決済システムの内製化への旅 - SpringとPCFで作るクラウドネイティブなシステム開発 #jsug #sf_h1
 
Spring Boot Actuator 2.0 & Micrometer #jjug_ccc #ccc_a1
Spring Boot Actuator 2.0 & Micrometer #jjug_ccc #ccc_a1Spring Boot Actuator 2.0 & Micrometer #jjug_ccc #ccc_a1
Spring Boot Actuator 2.0 & Micrometer #jjug_ccc #ccc_a1
 
Spring Boot Actuator 2.0 & Micrometer
Spring Boot Actuator 2.0 & MicrometerSpring Boot Actuator 2.0 & Micrometer
Spring Boot Actuator 2.0 & Micrometer
 
Open Service Broker APIとKubernetes Service Catalog #k8sjp
Open Service Broker APIとKubernetes Service Catalog #k8sjpOpen Service Broker APIとKubernetes Service Catalog #k8sjp
Open Service Broker APIとKubernetes Service Catalog #k8sjp
 
Spring Cloud Function & Project riff #jsug
Spring Cloud Function & Project riff #jsugSpring Cloud Function & Project riff #jsug
Spring Cloud Function & Project riff #jsug
 
Introduction to Spring WebFlux #jsug #sf_a1
Introduction to Spring WebFlux #jsug #sf_a1Introduction to Spring WebFlux #jsug #sf_a1
Introduction to Spring WebFlux #jsug #sf_a1
 
BOSH / CF Deployment in modern ways #cf_tokyo
BOSH / CF Deployment in modern ways #cf_tokyoBOSH / CF Deployment in modern ways #cf_tokyo
BOSH / CF Deployment in modern ways #cf_tokyo
 
Why PCF is the best platform for Spring Boot
Why PCF is the best platform for Spring BootWhy PCF is the best platform for Spring Boot
Why PCF is the best platform for Spring Boot
 
Zipkin Components #zipkin_jp
Zipkin Components #zipkin_jpZipkin Components #zipkin_jp
Zipkin Components #zipkin_jp
 
マイクロサービスに必要な技術要素はすべてSpring Cloudにある #DO07
マイクロサービスに必要な技術要素はすべてSpring Cloudにある #DO07マイクロサービスに必要な技術要素はすべてSpring Cloudにある #DO07
マイクロサービスに必要な技術要素はすべてSpring Cloudにある #DO07
 
Spring Framework 5.0による Reactive Web Application #JavaDayTokyo
Spring Framework 5.0による Reactive Web Application #JavaDayTokyoSpring Framework 5.0による Reactive Web Application #JavaDayTokyo
Spring Framework 5.0による Reactive Web Application #JavaDayTokyo
 
実例で学ぶ、明日から使えるSpring Boot Tips #jsug
実例で学ぶ、明日から使えるSpring Boot Tips #jsug実例で学ぶ、明日から使えるSpring Boot Tips #jsug
実例で学ぶ、明日から使えるSpring Boot Tips #jsug
 
Data Microservices with Spring Cloud Stream, Task, and Data Flow #jsug #spri...
Data Microservices with Spring Cloud Stream, Task,  and Data Flow #jsug #spri...Data Microservices with Spring Cloud Stream, Task,  and Data Flow #jsug #spri...
Data Microservices with Spring Cloud Stream, Task, and Data Flow #jsug #spri...
 
Short Lived Tasks in Cloud Foundry #cfdtokyo
Short Lived Tasks in Cloud Foundry #cfdtokyoShort Lived Tasks in Cloud Foundry #cfdtokyo
Short Lived Tasks in Cloud Foundry #cfdtokyo
 
From Zero to Hero with REST and OAuth2 #jjug
From Zero to Hero with REST and OAuth2 #jjugFrom Zero to Hero with REST and OAuth2 #jjug
From Zero to Hero with REST and OAuth2 #jjug
 
Consumer Driven Contractsで REST API/マイクロサービスをテスト #m3tech
Consumer Driven Contractsで REST API/マイクロサービスをテスト #m3techConsumer Driven Contractsで REST API/マイクロサービスをテスト #m3tech
Consumer Driven Contractsで REST API/マイクロサービスをテスト #m3tech
 
Implement Service Broker with Spring Boot #cf_tokyo
Implement Service Broker with Spring Boot #cf_tokyoImplement Service Broker with Spring Boot #cf_tokyo
Implement Service Broker with Spring Boot #cf_tokyo
 

Recently uploaded

Apidays Singapore 2024 - Modernizing Securities Finance by Madhu Subbu
Apidays Singapore 2024 - Modernizing Securities Finance by Madhu SubbuApidays Singapore 2024 - Modernizing Securities Finance by Madhu Subbu
Apidays Singapore 2024 - Modernizing Securities Finance by Madhu Subbuapidays
 
A Beginners Guide to Building a RAG App Using Open Source Milvus
A Beginners Guide to Building a RAG App Using Open Source MilvusA Beginners Guide to Building a RAG App Using Open Source Milvus
A Beginners Guide to Building a RAG App Using Open Source MilvusZilliz
 
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data DiscoveryTrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data DiscoveryTrustArc
 
MS Copilot expands with MS Graph connectors
MS Copilot expands with MS Graph connectorsMS Copilot expands with MS Graph connectors
MS Copilot expands with MS Graph connectorsNanddeep Nachan
 
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...Jeffrey Haguewood
 
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWEREMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWERMadyBayot
 
Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...
Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...
Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...Zilliz
 
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, AdobeApidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobeapidays
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerThousandEyes
 
presentation ICT roal in 21st century education
presentation ICT roal in 21st century educationpresentation ICT roal in 21st century education
presentation ICT roal in 21st century educationjfdjdjcjdnsjd
 
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Miguel Araújo
 
Polkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin WoodPolkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin WoodJuan lago vázquez
 
AXA XL - Insurer Innovation Award Americas 2024
AXA XL - Insurer Innovation Award Americas 2024AXA XL - Insurer Innovation Award Americas 2024
AXA XL - Insurer Innovation Award Americas 2024The Digital Insurer
 
Ransomware_Q4_2023. The report. [EN].pdf
Ransomware_Q4_2023. The report. [EN].pdfRansomware_Q4_2023. The report. [EN].pdf
Ransomware_Q4_2023. The report. [EN].pdfOverkill Security
 
Artificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : UncertaintyArtificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : UncertaintyKhushali Kathiriya
 
FWD Group - Insurer Innovation Award 2024
FWD Group - Insurer Innovation Award 2024FWD Group - Insurer Innovation Award 2024
FWD Group - Insurer Innovation Award 2024The Digital Insurer
 
"I see eyes in my soup": How Delivery Hero implemented the safety system for ...
"I see eyes in my soup": How Delivery Hero implemented the safety system for ..."I see eyes in my soup": How Delivery Hero implemented the safety system for ...
"I see eyes in my soup": How Delivery Hero implemented the safety system for ...Zilliz
 
DBX First Quarter 2024 Investor Presentation
DBX First Quarter 2024 Investor PresentationDBX First Quarter 2024 Investor Presentation
DBX First Quarter 2024 Investor PresentationDropbox
 
Architecting Cloud Native Applications
Architecting Cloud Native ApplicationsArchitecting Cloud Native Applications
Architecting Cloud Native ApplicationsWSO2
 
Why Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire businessWhy Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire businesspanagenda
 

Recently uploaded (20)

Apidays Singapore 2024 - Modernizing Securities Finance by Madhu Subbu
Apidays Singapore 2024 - Modernizing Securities Finance by Madhu SubbuApidays Singapore 2024 - Modernizing Securities Finance by Madhu Subbu
Apidays Singapore 2024 - Modernizing Securities Finance by Madhu Subbu
 
A Beginners Guide to Building a RAG App Using Open Source Milvus
A Beginners Guide to Building a RAG App Using Open Source MilvusA Beginners Guide to Building a RAG App Using Open Source Milvus
A Beginners Guide to Building a RAG App Using Open Source Milvus
 
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data DiscoveryTrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
 
MS Copilot expands with MS Graph connectors
MS Copilot expands with MS Graph connectorsMS Copilot expands with MS Graph connectors
MS Copilot expands with MS Graph connectors
 
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
 
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWEREMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
 
Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...
Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...
Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...
 
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, AdobeApidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 
presentation ICT roal in 21st century education
presentation ICT roal in 21st century educationpresentation ICT roal in 21st century education
presentation ICT roal in 21st century education
 
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
 
Polkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin WoodPolkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin Wood
 
AXA XL - Insurer Innovation Award Americas 2024
AXA XL - Insurer Innovation Award Americas 2024AXA XL - Insurer Innovation Award Americas 2024
AXA XL - Insurer Innovation Award Americas 2024
 
Ransomware_Q4_2023. The report. [EN].pdf
Ransomware_Q4_2023. The report. [EN].pdfRansomware_Q4_2023. The report. [EN].pdf
Ransomware_Q4_2023. The report. [EN].pdf
 
Artificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : UncertaintyArtificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : Uncertainty
 
FWD Group - Insurer Innovation Award 2024
FWD Group - Insurer Innovation Award 2024FWD Group - Insurer Innovation Award 2024
FWD Group - Insurer Innovation Award 2024
 
"I see eyes in my soup": How Delivery Hero implemented the safety system for ...
"I see eyes in my soup": How Delivery Hero implemented the safety system for ..."I see eyes in my soup": How Delivery Hero implemented the safety system for ...
"I see eyes in my soup": How Delivery Hero implemented the safety system for ...
 
DBX First Quarter 2024 Investor Presentation
DBX First Quarter 2024 Investor PresentationDBX First Quarter 2024 Investor Presentation
DBX First Quarter 2024 Investor Presentation
 
Architecting Cloud Native Applications
Architecting Cloud Native ApplicationsArchitecting Cloud Native Applications
Architecting Cloud Native Applications
 
Why Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire businessWhy Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire business
 

今すぐ始めるCloud Foundry #hackt #hackt_k

  • 1. ‹#›© 2016 Pivotal Software, Inc. All rights reserved. ‹#›© 2016 Pivotal Software, Inc. All rights reserved. Cloud Foundry Toshiaki Maki (@making) 2016-09-10 Hacker Tackle #hackt #hackt_k
  • 2. © 2016 Pivotal Software, Inc. All rights reserved. Who am I ? • Toshiaki Maki (@making) http://blog.ik.am • Sr. Solutions Architect @Pivotal • Spring Framework enthusiast bit.ly/hajiboot2
  • 3. © 2016 Pivotal Software, Inc. All rights reserved. Who am I ? • Toshiaki Maki (@making) http://blog.ik.am • Sr. Solutions Architect @Pivotal • Spring Framework enthusiast bit.ly/hajiboot2
  • 4. © 2016 Pivotal Software, Inc. All rights reserved. •Cloud Foundry •Cloud Foundry •Cloud Foundry •Cloud Foundry •Cloud Foundry https://github.com/making/hacker-tackle-demo
  • 5. © 2016 Pivotal Software, Inc. All rights reserved. •Cloud Foundry •Cloud Foundry •Cloud Foundry •Cloud Foundry •Cloud Foundry Cloud Foundry https://github.com/making/hacker-tackle-demo
  • 6. ‹#›© 2016 Pivotal Software, Inc. All rights reserved. Cloud Foundry
  • 7. © 2016 Pivotal Software, Inc. All rights reserved. • PaaS •Cloud Foundry Foundation • / https://github.com/cloudfoundry
  • 8. © 2016 Pivotal Software, Inc. All rights reserved. • PaaS •Cloud Foundry Foundation • / https://github.com/cloudfoundry Cloud Native Platform
  • 9. © 2016 Pivotal Software, Inc. All rights reserved. • • • • / • •
  • 10. © 2016 Pivotal Software, Inc. All rights reserved. • • • • / • •
  • 11. © 2016 Pivotal Software, Inc. All rights reserved. • • • • / • • !!!!
  • 12. © 2016 Pivotal Software, Inc. All rights reserved. Cloud Foundry • (DNS) • • • • • •
  • 13. © 2016 Pivotal Software, Inc. All rights reserved. Cloud Foundry everywhere Cloud Foundry Cloud Foundry OSS Pivotal Cloud Foundry on Private Cloud on Public Cloud
  • 14. Structure Spring Cloud Spring Boot Cloud Foundry BOSH AWSVMWareOpenStack Application Framework Runtime Platform Infrastructure Automation Infrastructure Azure Contract: Cloud Provider Interface Contract: 12 Factor App Contract: BOSH Release Java EE GCP
  • 15. ‹#›© 2016 Pivotal Software, Inc. All rights reserved. Cloud Foundry
  • 16. © 2016 Pivotal Software, Inc. All rights reserved. $ cf login -a https://api.local.pcfdev.io --skip-ssl-validation $ cf login -a https://api.run.pivotal.io $ cf login -a https://api.system.your-cf.example.com PCF Dev Pivotal Web Services Pivotal Cloud Foundry https://github.com/cloudfoundry/cli/releases
  • 17. © 2016 Pivotal Software, Inc. All rights reserved. cf push
  • 18. © 2016 Pivotal Software, Inc. All rights reserved. cf push
  • 19. © 2016 Pivotal Software, Inc. All rights reserved. $ cf push hello -p hello.jar $ cf push hello glide godep app nameSpring Boot
  • 20. © 2016 Pivotal Software, Inc. All rights reserved. $ cf push hello -p hello.jar $ cf push hello glide godep app nameSpring Boot func main() { http.HandleFunc("/", func(w http.ResponseWriter , r *http.Request) { fmt.Fprint(w, "Hello World!") }) http.ListenAndServe(":"+os.Getenv("PORT"), nil); }
  • 21. © 2016 Pivotal Software, Inc. All rights reserved. Hello World Host name (subdomain) =app name domain name -n
  • 22. © 2016 Pivotal Software, Inc. All rights reserved. cf scale
  • 23. © 2016 Pivotal Software, Inc. All rights reserved. cf scale
  • 24. © 2016 Pivotal Software, Inc. All rights reserved. $ cf scale app-name -i 4 $ cf scale app-name -m 2g
  • 25. ‹#›© 2016 Pivotal Software, Inc. All rights reserved. Demo https://www.youtube.com/watch?v=_TpvipmGisc
  • 26. ‹#›© 2016 Pivotal Software, Inc. All rights reserved. Deploying an Application IaaS Cloud Foundry Configure Firewall Configure Service Connectivity Configure SSL Configure Load Balancer Deploy Application Install Application Runtime Provision a VM cf push
  • 27. ‹#›© 2016 Pivotal Software, Inc. All rights reserved. Scaling an Application IaaS Cloud Foundry Configure Firewall Configure Service Connectivity Configure SSL Configure Load Balancer Deploy Application Install Application Runtime Provision a VM cf scale
  • 28. ‹#›© 2016 Pivotal Software, Inc. All rights reserved. Scaling an Application IaaS Cloud Foundry Configure Firewall Configure Service Connectivity Configure SSL Configure Load Balancer Deploy Application Install Application Runtime Provision a VM cf scale !!
  • 29. ‹#›© 2016 Pivotal Software, Inc. All rights reserved. Cloud Foundry
  • 30. ‹#›© 2016 Pivotal Software, Inc. All rights reserved. Cloud Foundry http://docs.cloudfoundry.org/concepts/diego/diego-architecture.html
  • 31. © 2016 Pivotal Software, Inc. All rights reserved. Architecture (Super Simplified) Cloud Controller Blobstore DB Cell cf push http://... CC API Containers Router
  • 32. © 2016 Pivotal Software, Inc. All rights reserved. Architecture (Super Simplified) Cloud Controller Blobstore DB Cell cf push http://... CC API Containers Router RunC
  • 33. © 2016 Pivotal Software, Inc. All rights reserved. ! Upload Cloud Controller Blobstore DB Cell cf push CC API Router App
  • 34. © 2016 Pivotal Software, Inc. All rights reserved. ! Upload Cloud Controller Blobstore DB Cell cf push CC API Router App
  • 35. © 2016 Pivotal Software, Inc. All rights reserved. " Stage Cloud Controller Blobstore DB Cell cf push CC API Router
  • 36. © 2016 Pivotal Software, Inc. All rights reserved. " Stage Cloud Controller Blobstore DB Cell cf push CC API Router
  • 37. © 2016 Pivotal Software, Inc. All rights reserved. " Stage Cloud Controller Blobstore DB Cell cf push CC API Router Runtime App JRE, App Server etc..
  • 38. © 2016 Pivotal Software, Inc. All rights reserved. " Stage Cloud Controller Blobstore DB Cell cf push CC API Router Runtime App
  • 39. © 2016 Pivotal Software, Inc. All rights reserved. " Stage Cloud Controller Blobstore DB Cell cf push CC API Router Runtime App Droplet
  • 40. © 2016 Pivotal Software, Inc. All rights reserved. " Stage Cloud Controller Blobstore DB Cell cf push CC API Router Upload
  • 41. © 2016 Pivotal Software, Inc. All rights reserved. " Stage Cloud Controller Blobstore DB Cell cf push CC API Router Upload
  • 42. © 2016 Pivotal Software, Inc. All rights reserved. " Stage Cloud Controller Blobstore DB Cell cf push CC API Router
  • 43. © 2016 Pivotal Software, Inc. All rights reserved. # Start Cloud Controller Blobstore DB Cell cf push CC API Router
  • 44. © 2016 Pivotal Software, Inc. All rights reserved. # Start Cloud Controller Blobstore DB Cell cf push CC API Router
  • 45. © 2016 Pivotal Software, Inc. All rights reserved. # Start Cloud Controller Blobstore DB Cell cf push CC API Router
  • 46. © 2016 Pivotal Software, Inc. All rights reserved. # Start Cloud Controller Blobstore DB Cell cf push CC API Router
  • 47. © 2016 Pivotal Software, Inc. All rights reserved. # Start Cloud Controller Blobstore DB Cell http://… CC API Router
  • 48. © 2016 Pivotal Software, Inc. All rights reserved. Scale out Cloud Controller Blobstore DB Cell http://… CC API Router cf scale
  • 49. © 2016 Pivotal Software, Inc. All rights reserved. Scale out Cloud Controller Blobstore DB Cell http://… CC API Router cf scale
  • 50. © 2016 Pivotal Software, Inc. All rights reserved. Scale out Cloud Controller Blobstore DB Cell http://… CC API Router cf scale
  • 51. © 2016 Pivotal Software, Inc. All rights reserved. Scale out Cloud Controller Blobstore DB Cell http://… CC API Router cf scale
  • 52. © 2016 Pivotal Software, Inc. All rights reserved. Scale out Cloud Controller Blobstore DB Cell http://… CC API Router cf scale
  • 53. © 2016 Pivotal Software, Inc. All rights reserved. Buildpack $ cf push $ cf push -b https://github.com/<you>/java-buildpack.git Auto Detect Custom Buildpack Runtime App buildpack https://github.com/cloudfoundry-community/cf-docs-contrib/wiki/Buildpacks $ cf push -b java_buildpack Manual
  • 54. © 2016 Pivotal Software, Inc. All rights reserved. Cell Docker
  • 55. © 2016 Pivotal Software, Inc. All rights reserved. Cell Docker
  • 56. © 2016 Pivotal Software, Inc. All rights reserved. Docker $ cf push demo-docker --docker-image cloudfoundry/lattice-app
  • 57. © 2016 Pivotal Software, Inc. All rights reserved. Docker $ cf push demo-docker --docker-image cloudfoundry/lattice-app CF 👇 !! bit.ly/cf-container
  • 58. ‹#›© 2016 Pivotal Software, Inc. All rights reserved. Cloud Foundry
  • 59. © 2016 Pivotal Software, Inc. All rights reserved. • • • • Blue / Green • Zero Downtime Update
  • 60. © 2016 Pivotal Software, Inc. All rights reserved. http://12factor.net/backing-services
  • 61. © 2016 Pivotal Software, Inc. All rights reserved. $ cf marketplace
  • 62. © 2016 Pivotal Software, Inc. All rights reserved. $ cf marketplace Pivotal Web Services
  • 63. © 2016 Pivotal Software, Inc. All rights reserved. Create & Bind Service $ cf create-service cleardb spark mydb $ cf bind-service hello mydb <Service Name> <Plan Name> <Service Instance Name> <Service Instance Name><App Name> MySQL
  • 64. © 2016 Pivotal Software, Inc. All rights reserved. VCAP_SERVICES {"cleardb": [{"credentials": { "hostname": "us-cdbr-iron-east-03.cleardb.net", "jdbcUrl": "jdbc:mysql://us-cdbr-iron-east-03.cleardb.net/ad_1191b396cc81848", "name": "ad_1191b396cc81848", "password": "67674107", "port": "3306", "uri": "mysql://b6f7c089a1680f:67674107@...", "username": "b6f7c089a1680f"}, "label": "cleardb", "tags": ["mysql", ...], "name": "mydb", ...}]}
  • 65. ‹#›© 2016 Pivotal Software, Inc. All rights reserved. Go (go-simplejson) import "github.com/bitly/go-simplejson" json, _ := simplejson.NewJson([]byte(os.Getenv("VCAP_SERVICES"))) credentials := json.Get("cleardb").GetIndex(0) .Get("credentials").MustMap() uri, _ := credentials["uri"].(string) u, _ := url.Parse(uri) url := fmt.Sprintf("%s@tcp(%s)%s", u.User.String(), u.Host, u.Path)
  • 66. ‹#›© 2016 Pivotal Software, Inc. All rights reserved. Go (go-cfenv) import cfenv "github.com/cloudfoundry-community/go-cfenv" appEnv, err := cfenv.Current() mydb, err := appEnv.Services.WithName("mydb") uri, _ := mydb.Credentials["uri"].(string) u, _ := url.Parse(uri) url := fmt.Sprintf("%s@tcp(%s)%s", u.User.String(), u.Host, u.Path)
  • 67. ‹#›© 2016 Pivotal Software, Inc. All rights reserved. Java (Jackson) JsonNode credentials = objectMapper .readTree(System.getenv("VCAP_SERVICES")) .get("cleardb").get(0).get("credentials"); String url = credentials.get("jdbcUrl").asText();
  • 68. ‹#›© 2016 Pivotal Software, Inc. All rights reserved. Java (Spring) @Configuration public class CloudConfig extends AbstractCloudConfig { @Bean DataSource dataSource() { return connectionFactory().dataSource(); } } http://cloud.spring.io/spring-cloud-connectors/ Spring Cloud Connectors
  • 69. © 2016 Pivotal Software, Inc. All rights reserved. Service Broker / User Provided Application Service Broker Service Instance User Provided Service Managed Services MySQL Redis RabbitMQ Oracle DB create-user-provided-servicecreate-service bind-service marketplace
  • 70. © 2016 Pivotal Software, Inc. All rights reserved. User Provided Service $ cf create-user-provided-service mydb -p '{"username" : "xxx", "password" : "xxx", "port" : "xxx", " jdbcUrl" : "xxx"}' $ cf bind-service hello mydb (Oracle DB )
  • 71. © 2016 Pivotal Software, Inc. All rights reserved. Log $ cf logs hello
  • 72. © 2016 Pivotal Software, Inc. All rights reserved. 3rd Party Log Managers $ cf create-user-provided-service mylog -l syslog://xxxxxxxx-logit.io:36129 $ cf bind-service hello mylog
  • 73. ‹#›© 2016 Pivotal Software, Inc. All rights reserved. PCF Metrics https://metrics.run.pivotal.io/ for Pivotal Web Services
  • 74. © 2016 Pivotal Software, Inc. All rights reserved. 4 Layers HA PCF 3. Resurrector restarts failed VMs App Fail Platform Fail VM Fail Rack Fail PCF A B C B 1. 2. PCF VM PCF A B C Process PCF A B C VM1 VM2 OS, Mware VM PCF VM kill 3. VM3 OS, Mware OS, Mware PCF Zone Distribution 4. Zone 2Zone 1 VM1 VM2
  • 75. ‹#›© 2016 Pivotal Software, Inc. All rights reserved. Demo ` https://www.youtube.com/watch?v=26RrBiBymeA
  • 76. © 2016 Pivotal Software, Inc. All rights reserved. Blue/Green Deployment • 0 V1 Router $ cf push v1 -n app app.example.com
  • 77. © 2016 Pivotal Software, Inc. All rights reserved. Blue/Green Deployment V1 Router V2 app-g.example.com app.example.com $ cf push v2 -n app-g
  • 78. © 2016 Pivotal Software, Inc. All rights reserved. Blue/Green Deployment V1 Router V2 app-g.example.com app.example.com app.example.com $ cf map-route v2 example.com -n app
  • 79. © 2016 Pivotal Software, Inc. All rights reserved. Blue/Green Deployment V1 Router V2 app-g.example.com app.example.com $ cf unmap-route v1 example.com -n app
  • 80. © 2016 Pivotal Software, Inc. All rights reserved. Blue/Green Deployment V1 Router V2 app-g.example.com app.example.com 😊 $ cf unmap-route v1 example.com -n app
  • 81. © 2016 Pivotal Software, Inc. All rights reserved. Blue/Green Deployment V1 Router V2 app-g.example.com app.example.com
  • 82. © 2016 Pivotal Software, Inc. All rights reserved. Blue/Green Deployment V1 Router app-g.example.com app.example.com 😱
  • 83. © 2016 Pivotal Software, Inc. All rights reserved. Blue/Green Deployment V1 Router V2 app-g.example.com app.example.com 😱 🔥 app.example.com $ cf map-route v1 example.com -n app
  • 84. © 2016 Pivotal Software, Inc. All rights reserved. Blue/Green Deployment V1 Router V2 app-g.example.com 😱 🔥 app.example.com $ cf unmap-route v2 example.com -n app
  • 85. © 2016 Pivotal Software, Inc. All rights reserved. Blue/Green Deployment V1 Router V2 app-g.example.com app.example.com 😊 $ cf delete v1
  • 86. © 2016 Pivotal Software, Inc. All rights reserved. Blue/Green Deployment Router V2 app-g.example.com app.example.com 😊 $ cf delete v1
  • 87. © 2016 Pivotal Software, Inc. All rights reserved. Blue/Green Deployment Router V2 app.example.com $ cf unmap-route v2 example.com -n app-g
  • 88. ‹#›© 2016 Pivotal Software, Inc. All rights reserved. Demo https://www.youtube.com/watch?v=2LtsURDvMF0
  • 89. © 2016 Pivotal Software, Inc. All rights reserved. Zero Downtime Update • ) JVM https://github.com/concourse/autopilot $ cf zero-downtime-push app-name -f manifest.yml
  • 90. ‹#›© 2016 Pivotal Software, Inc. All rights reserved. Demo https://www.youtube.com/watch?v=mbvg8wijs4Y
  • 91. © Copyright 2016 Pivotal. All rights reserved. 66 Upgrade and patch with rolling “canary” deploys X YM NA B A,B,M,N,X,Y - Application instances - VM prior to update
  • 92. © Copyright 2016 Pivotal. All rights reserved. 67 Upgrade and patch with rolling “canary” deploys X YM NA B Apps redeployed to clear VMs X YM NA B
  • 93. © Copyright 2016 Pivotal. All rights reserved. 68 Upgrade and patch with rolling “canary” deploys X YM NA B X YM NA B Update introduced. If the tests pass, keep going X YM NA B
  • 94. © Copyright 2016 Pivotal. All rights reserved. 69 Upgrade and patch with rolling “canary” deploys X YM NA B X YM NA B X YM NA B Apps redeployed to updated VMs X YM NA B
  • 95. © Copyright 2016 Pivotal. All rights reserved. 70 Upgrade and patch with rolling “canary” deploys X YM NA B X YM NA B X YM NA B X YM NA B Remaining VMs updated same way X YM NA B
  • 96. © Copyright 2016 Pivotal. All rights reserved. 71 Upgrade and patch with rolling “canary” deploys X YM NA B X YM NA B X YM NA B X YM NA B X YM NA B Automated, No downtime Atomic rolling update X YM NA B
  • 97. © Copyright 2016 Pivotal. All rights reserved. 72 Upgrade and patch with rolling “canary” deploys
  • 98. © 2016 Pivotal Software, Inc. All rights reserved. New Features •Routing Service •TCP Routing •Persistent Volume
  • 99. ‹#›© 2016 Pivotal Software, Inc. All rights reserved. Cloud Foundry
  • 100. © 2016 Pivotal Software, Inc. All rights reserved. CF PCF Dev Pivotal Web Services Pivotal Cloud Foundry Cloud Foundry (OSS)
  • 101. © 2016 Pivotal Software, Inc. All rights reserved. CF PCF Dev Pivotal Web Services Pivotal Cloud Foundry Cloud Foundry (OSS)
  • 102. © 2016 Pivotal Software, Inc. All rights reserved. CF PCF Dev Pivotal Web Services Pivotal Cloud Foundry Cloud Foundry (OSS) Yes
  • 103. © 2016 Pivotal Software, Inc. All rights reserved. CF PCF Dev Pivotal Web Services Pivotal Cloud Foundry Cloud Foundry (OSS) Yes
  • 104. © 2016 Pivotal Software, Inc. All rights reserved. CF PCF Dev Pivotal Web Services Pivotal Cloud Foundry Cloud Foundry (OSS) Yes Yes
  • 105. © 2016 Pivotal Software, Inc. All rights reserved. CF PCF Dev Pivotal Web Services Pivotal Cloud Foundry Cloud Foundry (OSS) Yes Yes
  • 106. © 2016 Pivotal Software, Inc. All rights reserved. CF PCF Dev Pivotal Web Services Pivotal Cloud Foundry Cloud Foundry (OSS) Yes Yes No ( )
  • 107. © 2016 Pivotal Software, Inc. All rights reserved. CF PCF Dev Pivotal Web Services Pivotal Cloud Foundry Cloud Foundry (OSS) Yes Yes No ( )
  • 108. © 2016 Pivotal Software, Inc. All rights reserved. CF PCF Dev Pivotal Web Services Pivotal Cloud Foundry Cloud Foundry (OSS) Yes Yes No ( ) No ( )
  • 109. © 2016 Pivotal Software, Inc. All rights reserved. CF PCF Dev Pivotal Web Services Pivotal Cloud Foundry Cloud Foundry (OSS) Yes Yes No ( ) No ( )
  • 110. © 2016 Pivotal Software, Inc. All rights reserved. CF PCF Dev Pivotal Web Services Pivotal Cloud Foundry Cloud Foundry (OSS) Yes Yes No ( ) No ( ) No ( )
  • 111. © 2016 Pivotal Software, Inc. All rights reserved. CF PCF Dev Pivotal Web Services Pivotal Cloud Foundry Cloud Foundry (OSS) Yes Yes No ( ) No ( ) No ( )
  • 112. © 2016 Pivotal Software, Inc. All rights reserved. CF PCF Dev Pivotal Web Services Pivotal Cloud Foundry Cloud Foundry (OSS) Yes Yes No ( ) No ( ) No ( ) Yes
  • 113. © 2016 Pivotal Software, Inc. All rights reserved. CF PCF Dev Pivotal Web Services Pivotal Cloud Foundry Cloud Foundry (OSS) Yes Yes No ( ) No ( ) No ( ) Yes
  • 114. © 2016 Pivotal Software, Inc. All rights reserved. CF PCF Dev Pivotal Web Services Pivotal Cloud Foundry Cloud Foundry (OSS) Yes Yes No ( ) No ( ) No ( ) Yes Yes
  • 115. © 2016 Pivotal Software, Inc. All rights reserved. CF PCF Dev Pivotal Web Services Pivotal Cloud Foundry Cloud Foundry (OSS) Yes Yes No ( ) No ( ) No ( ) Yes Yes
  • 116. © 2016 Pivotal Software, Inc. All rights reserved. CF PCF Dev Pivotal Web Services Pivotal Cloud Foundry Cloud Foundry (OSS) Yes Yes No ( ) No ( ) No ( ) Yes Yes No (OSS)
  • 117. © 2016 Pivotal Software, Inc. All rights reserved. CF PCF Dev Pivotal Web Services Pivotal Cloud Foundry Cloud Foundry (OSS) Yes Yes No ( ) No ( ) No ( ) Yes Yes No (OSS)
  • 118. © 2016 Pivotal Software, Inc. All rights reserved. PCF Dev • Cloud Foundry (on VirtualBox) • http://pcfdev.io https://docs.pivotal.io/pcf-dev • cf dev start / stop • • Redis • RabbitMQ • MySQL • Spring Cloud Services
  • 119. © 2016 Pivotal Software, Inc. All rights reserved. Pivotal Web Services • https://run.pivotal.io/ • AWS Pivotal Cloud Foundry • 1GB $0.03/ • 1: Java 1GB ➡ 2200 / • 2: Go 64MB ➡ 135 / , 8MB➡ 17 / • $87 (2GB 2 , 1 ) • • PCF Metrics, Auto Scaler (Docker )
  • 120. © 2016 Pivotal Software, Inc. All rights reserved. Pivotal Cloud Foundry • https://pivotal.io/platform • Cloud Foundry • AppsManager • vSphere, AWS, OpenStack CF (OpsManager) Azure GCP • OSS All in One
  • 121. © 2016 Pivotal Software, Inc. All rights reserved. Spring Boot [ ] • http://bit.ly/hajiboot2 • Java Spring Boot 1.4 • Pivotal Web Services Blue/Green
  • 122. © 2016 Pivotal Software, Inc. All rights reserved. Spring Boot [ ] • http://bit.ly/hajiboot2 • Java Spring Boot 1.4 • Pivotal Web Services Blue/Green Cloud Foundry!!!!
  • 123. © 2016 Pivotal Software, Inc. All rights reserved. Spring Boot [ ] • http://bit.ly/hajiboot2 • Java Spring Boot 1.4 • Pivotal Web Services Blue/Green Cloud Foundry!!!! !!