SlideShare a Scribd company logo
1 of 63
Download to read offline
Introduction	
  to
Cloud	
  Foundry
2016-­‐03-­‐22	
  JJUGナイトセミナー
Toshiaki	
  Maki	
  (@making)
Why	
  PaaS?
Traditional IT
Storage
Servers
Networking
O/S
Middleware
Virtualization
Data
Applications
Runtime
YouManage
O/S
IaaS
Storage
Servers
Networking
Middleware
Virtualization
Data
Applications
RuntimeYouManage
IaaSProvider
PaaS
Storage
Servers
Networking
Middleware
Virtualization
Data
Applications
Runtime
O/S
Business	
  Value,	
  Agility	
  &	
  Cost	
  Savings
YouManage
PaaSProvider
•オープンソースのPaaS基盤
•Cloud Foundry Foundationで開発されて
いる、ベンダロックインを回避
•パブリッククラウド / プライベートクラウ
ド問わず、マルチクラウドに対応
https://github.com/cloudfoundry
Cloud	
  Foundry	
  Foundation
PLATINUM
GOLD
SILVER
https://www.cloudfoundry.org/membership/members/
Certified	
  Certified	
  Providers
CenturyLink	
  AppFog HPE	
  Helion
Cloud	
  Foundry
Huawei
FusionStage
IBM	
  Bluemix
Pivotal	
  Cloud	
  Foundry SAP	
  HANA
Cloud	
  Platform
Swisscom
Application	
  Cloud https://www.cloudfoundry.org/use/cloud-­‐foundry-­‐certified/
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
Cloud	
  Foundryの使い方
Login
$  cf login  -­‐a  api.run.pivotal.io
$  cf login  -­‐a  api.local.pcfdev.io
Pivotal	
  Web	
  Services
Local	
  (PCF	
  Dev)
$  cf login  -­‐a  paas-­‐jp1-­‐ecl.api.ntt.com
Enterprise	
  Cloud	
  2.0	
  (NTT	
  Com)
<Endpoint>
プロバイダーごとに
異なるエンドポイントを
設定すれば以降は基本同じ
Deploy	
  Java	
  Application	
  (Spring	
  Boot)
$  git clone  https://github.com/making/hello-­‐pws
$  cd  hello-­‐pws
$  mvn package
$  cf push  hello  -­‐p  target/hello-­‐pws.jar
hello	
  world
Host	
  name	
  
(subdomain)
=	
  App	
  name
Domain	
  name
-­‐nで指定可能
Deploy	
  Java	
  Application	
  (Java	
  EE)
$  git clone  https://github.com/making/hello-­‐pws-­‐javaee
$  cd  hello-­‐pws-­‐javaee
$  mvn package
$  cf push  hello  -­‐p  target/hello-­‐pws.war ¥
-­‐b  https://github.com/cloudfoundry/ibm-­‐websphere-­‐liberty-­‐buildpack.git ¥
-­‐-­‐no-­‐start
$  cf set-­‐env hello  IBM_LIBERTY_LICENSE  <License Number>
$  cf set-­‐env hello  IBM_JVM_LICENSE  < License Number >
$  cf start  hello
IBM_LIBERTY_LICENSE IBM_JVM_LICENSE
WebSphere	
  Liberty	
  Profileの場合
ß Search	
  " D/N:	
  *********"	
  for	
  License	
  Number
Deploy	
  Java	
  Application	
  (Java	
  EE)
$  zip  target/hello-­‐pws.zip target/hello-­‐pws.war
$  cf push  hello  -­‐p  target/hello-­‐pws.zip ¥
-­‐b  https://github.com/matf/wildfly-­‐buildpack
WildFlyの場合
Scaling
$  cf scale  hello  -­‐i 4
$  cf scale  hello  -­‐m  2g
Instance
Memory
Cloud	
  Foundryの仕組み
Architecture	
  (Simplified)
Cloud	
  Controller
Blobstore DB
Cell
cf push
http://...
CC	
  API
Containers
Router
[Step1]	
  Upload
Cloud	
  Controller
Blobstore DB
Cell
cf push CC	
  API
Router
App
[Step1]	
  Upload
Cloud	
  Controller
Blobstore DB
Cell
cf push CC	
  API
Router
App
[Step2]	
  Stage
Cloud	
  Controller
Blobstore DB
Cell
cf push CC	
  API
Router
Runtime
App
JRE,	
  App	
  Server	
  
etc..
[Step2]	
  Stage
Cloud	
  Controller
Blobstore DB
Cell
cf push CC	
  API
Router
Runtime
App
Droplet
[Step2]	
  Stage
Cloud	
  Controller
Blobstore DB
Cell
cf push CC	
  API
Router
Upload
[Step2]	
  Stage
Cloud	
  Controller
Blobstore DB
Cell
cf push CC	
  API
Router
[Step3]	
  Start
Cloud	
  Controller
Blobstore DB
Cell
cf push CC	
  API
Router
[Step3]	
  Start
Cloud	
  Controller
Blobstore DB
Cell
cf push CC	
  API
Router
[Step3]	
  Start
Cloud	
  Controller
Blobstore DB
Cell
cf push CC	
  API
Router
[Step3]	
  Start
Cloud	
  Controller
Blobstore DB
Cell
http://…
CC	
  API
Router
Scale	
  out
Cloud	
  Controller
Blobstore DB
Cell
http://…
CC	
  API
Routercf scale
Scale	
  out
Cloud	
  Controller
Blobstore DB
Cell
http://…
CC	
  API
Routercf scale
Scale	
  out
Cloud	
  Controller
Blobstore DB
Cell
http://…
CC	
  API
Routercf scale
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
Dockerイメージや.NETアプリにも対応
$  cf push  hello-­‐docker -­‐o  cloudfoundry/lattice-­‐app
Cell
<Docker Image	
  Name>
Cloud	
  Foundryのその他機能
Organization	
  
/	
  Space
Service Log
Blue/Green
Deployment
HA
Organization	
  /	
  Space
CF	
  Installation
OrganizationOrganizationOrganization
Space Space Space
User,	
  Role,	
  Quota	
  
Development,
Staging,
Production
$  cf login  -­‐a  https://api.run.pivotal.io
OK  
Targeted  org  maki-­‐org  
Targeted  space  development  
API  endpoint:  https://api.run.pivotal.io
(API  version:  2.51.0)  
User:  maki@example.com
Org:  maki-­‐org  
Space:  development
Organization	
  /	
  Space
$  cf create-­‐org  jjug
$  cf create-­‐space  -­‐o  jjug production
$  cf target  -­‐o  jjug -­‐s  production
$  cf create-­‐user  maki password
$  cf set-­‐org-­‐role  maki jjug OrgManager
$  cf set-­‐space-­‐role  maki jjug ¥
production  SpaceManager
Create	
  Organization	
  /	
  Space
Create	
  User	
  /	
  Role
Service
データベースやメッセージキューなどのバックエンドサービス
はアプリケーションにアタッチして使用する。
接続情報は環境変数から取得。
http://12factor.net/backing-­‐services
$  cf marketplace 利用可能なサービス一覧。
(プロバイダーごとに異なる)
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のサービス
環境変数 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",  
"name":  "mydb",  ...}]}
環境変数 VCAP_SERVICES
spring.datasource.url=${vcap.services.mydb.credentials.jdbcUrl}
spring.datasource.username=${vcap.services.mydb.credentials.username}
spring.datasource.password=${vcap.services.mydb.credentials.password}
String  json =  System.getenv("VCAP_SERVICES");
//  Parse  JSON  ...
Spring Bootの場合 (application-­‐cloud.properties)
一般的なJavaアプリケーションの場合
実はBuildpackにより、自動でDataSourceなどのBeanが差し替えられるのでこの設定は不要
Service	
  Broker	
  /	
  User	
  Provided	
  Service
Application
Service	
  Broker
Service	
  Instance
User	
  Provided	
  Service
Managed	
  Services
MySQL
Redis
RabbitMQ Oracle	
  DB
create-­‐user-­‐provided-­‐servicecreate-­‐service
bind-­‐service
marketplace
User	
  Provided	
  Service
$  cf create-­‐user-­‐provided-­‐service  mydb ¥
-­‐p	
  '{"username"	
  :	
  "xxx",	
  "password"	
  :	
  "xxx",	
  	
  
"port"	
  :	
  "xxx",	
  "	
  jdbcUrl"	
  :	
  "xxx"}'
$  cf bind-­‐service  hello  mydb
自前のサービス(Oracle等)
Log
$  cf logs  hello
標準出力の
ストリーム
3rd Party	
  Log	
  Managers
$  cf create-­‐user-­‐provided-­‐service  mylog ¥
-­‐l  syslog://logs.papertrailapp.com:36129
$  cf bind-­‐service  hello  mylog
Blue/Green	
  Deployment
• デプロイ時のダウンタイムを0に近づける手法
V1
Router
$  cf push  v1  -­‐n  app
Blue/Green	
  Deployment
• デプロイ時のダウンタイムを0に近づける手法
V1
Router$  cf push  v2  -­‐n  app-­‐g
V2
Blue/Green	
  Deployment
• デプロイ時のダウンタイムを0に近づける手法
V1
Router$  cf map-­‐route  v2  example.com -­‐n  app
V2
Blue/Green	
  Deployment
• デプロイ時のダウンタイムを0に近づける手法
V1
Router$  cf unmap-­‐route  v1  example.com -­‐n  app
V2
Blue/Green	
  Deployment
• デプロイ時のダウンタイムを0に近づける手法
V1
Router$  cf unmap-­‐route  v1  example.com -­‐n  app
V2 😊
Blue/Green	
  Deployment
• デプロイ時のダウンタイムを0に近づける手法
V1
Router$  cf delete  v1
V2 😊
Blue/Green	
  Deployment
• デプロイ時のダウンタイムを0に近づける手法
Router
V2
$  cf unmap-­‐route  v2  example.com -­‐n  app-­‐g
Blue/Green	
  Deployment
V1
Router
V2 😱
🔥
Blue/Green	
  Deployment
V1
Router
V2 😱
🔥
$  cf map-­‐route  v1  example.com -­‐n  app
Blue/Green	
  Deployment
V1
Router
V2 😱
🔥
$  cf unmap-­‐route  v2  example.com -­‐n  app
AutopilotPlugin
$  cf zero-­‐downtime-­‐push  app  ¥
-­‐f  manifest.yml
https://github.com/concourse/autopilot
Production向けのデプロイ(e.g.	
  100インスタンス)の場合、少しずつスケールさせるべき (by	
  my	
  teacher	
  @shinji62)
https://github.com/krujos/scaleover-­‐plugin のようなプラグインが便利
Application
(Container) Level
Process
Level
VM
Level
Availability Zone
(Rack)	
  Level
CF	
  Runtime
4	
  levels	
  of	
  HA
CF	
  Runtime
A B C D🔥
B
CF	
  Runtime
A B C D
Process🔥
Monit
CF	
  Runtime
A B C D
Process
VM🔥
Zone1
ABCD
🔥
Zone2
ABCD
Supported	
   by	
  Diego Supported	
   by	
  Bosh
Container
12	
  Factor	
  App
http://12factor.net/
Cloud	
  Foundryは
12	
  Factor	
  App
の全てを満たす
Cloud	
  Foundry by	
  
Cloud	
  Foundry	
  by	
  
Pivotal	
  Manages Customer	
  Manages
Public	
  
Cloud
Pivotal	
  Web	
  Services Pivotal	
  Cloud	
  Foundry	
  
(on	
  AWS	
  /	
  VMware	
  vCloud Air)
Private	
  
Cloud
Pivotal	
  Cloud	
  Foundry
(on	
  OpenStack /	
  VMWare	
  vSphere)
Pivotal	
  Web	
  Services
最新版のCFを
手軽に試せる
https://run.pivotal.io
• AWS上でPivotalがホストする
Cloud	
  Foundry
• $0.03/GB時間 のメモリ課金
• 60日間の試用期間
チュートリアル
Pivotal	
  Cloud	
  Foundry
• 専用Cloud Foundry環境を作るた
めの商用パッケージ
• CFをGUIで容易にインストールす
るためのOps Managerと実行環境
(=CF)のElastic Runtimeで構成
• 利用できるサービス多数
• IaaSとしてAWS, OpenStack,
VMWare vSphere等に対応
• サポート付き
Ops Manager
Apps Manager
RuntimeServices
OSS版とPivotal Cloud	
  Foundryの違い
Riak CS
MongoDB
Gemfire
Neo4J
Redis
DataStax Cassandra
CloudBees Jennkins
Push	
  Notification
Spring	
  Cloud	
  Services
...
MySQL	
  HA
Pivotal	
  Network
Proxy	
  LoadBalancer
Router
Login	
  Server	
  /	
  UAA
Service	
  Broker
Cloud	
  Controller
Diego
Loggregator
Blobstore
OpsManager
Bosh
UI
Addon
Auto	
  Scaling
Identity	
  As	
  A	
  Service
LDAP	
  /	
  AD	
  (SAML)
Metrics	
  Server
Notifications
Ops	
  Metrics
cf CLI
APM	
  (Monitoring)
Apps	
  Manager
Service	
  Marketplace
Certification Documentation Support
PCF
OSS
Open	
  Stack VSphereAWS ...
Announce
Cloud	
  Foundry	
  Tokyo	
  Meetup
#1	
  2016/03/31	
  @	
  六本木Pivotalオフィス
http://bit.ly/cftm1
• Route	
  Services
• Running	
  your	
  application	
  locally	
  
with	
  local-­‐push
• .NET	
  support	
  update
and	
  so	
  on	
  …
Workshop
今日紹介した内容をハンズオン形式で学ぶワークショップ
•3/25	
  16:00-­‐18:00	
  一回目 http://bit.ly/take-­‐me-­‐cf1
•4/13	
  19:00-­‐21:00	
  二回目 http://bit.ly/take-­‐me-­‐cf2
今後も何回か開催する予定

More Related Content

What's hot

Cloud Foundry Introduction - Canada - October 2012
Cloud Foundry Introduction - Canada - October 2012Cloud Foundry Introduction - Canada - October 2012
Cloud Foundry Introduction - Canada - October 2012
Patrick Chanezon
 

What's hot (20)

Docker San Francisco Meetup April 2015 - The Docker Orchestration Ecosystem o...
Docker San Francisco Meetup April 2015 - The Docker Orchestration Ecosystem o...Docker San Francisco Meetup April 2015 - The Docker Orchestration Ecosystem o...
Docker San Francisco Meetup April 2015 - The Docker Orchestration Ecosystem o...
 
Continuous Integration and Deployment Best Practices on AWS (ARC307) | AWS re...
Continuous Integration and Deployment Best Practices on AWS (ARC307) | AWS re...Continuous Integration and Deployment Best Practices on AWS (ARC307) | AWS re...
Continuous Integration and Deployment Best Practices on AWS (ARC307) | AWS re...
 
Cloud Foundry Introduction - Canada - October 2012
Cloud Foundry Introduction - Canada - October 2012Cloud Foundry Introduction - Canada - October 2012
Cloud Foundry Introduction - Canada - October 2012
 
Kayobe_desc
Kayobe_descKayobe_desc
Kayobe_desc
 
Custom Buildpacks and Data Services
Custom Buildpacks and Data ServicesCustom Buildpacks and Data Services
Custom Buildpacks and Data Services
 
DCEU 18: Tips and Tricks of the Docker Captains
DCEU 18: Tips and Tricks of the Docker CaptainsDCEU 18: Tips and Tricks of the Docker Captains
DCEU 18: Tips and Tricks of the Docker Captains
 
Workflow, container, and beyond
Workflow, container, and beyondWorkflow, container, and beyond
Workflow, container, and beyond
 
[OpenStack Day in Korea] OpenStack Provisioning in 30 minutes
[OpenStack Day in Korea] OpenStack Provisioning in 30 minutes[OpenStack Day in Korea] OpenStack Provisioning in 30 minutes
[OpenStack Day in Korea] OpenStack Provisioning in 30 minutes
 
Spring Cloud Netflixを使おう #jsug
Spring Cloud Netflixを使おう #jsugSpring Cloud Netflixを使おう #jsug
Spring Cloud Netflixを使おう #jsug
 
Kubernetes + Python = ❤ - Cloud Native Prague
Kubernetes + Python = ❤ - Cloud Native PragueKubernetes + Python = ❤ - Cloud Native Prague
Kubernetes + Python = ❤ - Cloud Native Prague
 
Spring ❤️ Kotlin #jjug
Spring ❤️ Kotlin #jjugSpring ❤️ Kotlin #jjug
Spring ❤️ Kotlin #jjug
 
Why we don’t use the Term DevOps: the Journey to a Product Mindset - DevOpsCo...
Why we don’t use the Term DevOps: the Journey to a Product Mindset - DevOpsCo...Why we don’t use the Term DevOps: the Journey to a Product Mindset - DevOpsCo...
Why we don’t use the Term DevOps: the Journey to a Product Mindset - DevOpsCo...
 
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
 
Kubernetes day 2 Operations
Kubernetes day 2 OperationsKubernetes day 2 Operations
Kubernetes day 2 Operations
 
A DevOps guide to Kubernetes
A DevOps guide to KubernetesA DevOps guide to Kubernetes
A DevOps guide to Kubernetes
 
Hands on Docker - Launch your own LEMP or LAMP stack - SunshinePHP
Hands on Docker - Launch your own LEMP or LAMP stack - SunshinePHPHands on Docker - Launch your own LEMP or LAMP stack - SunshinePHP
Hands on Docker - Launch your own LEMP or LAMP stack - SunshinePHP
 
Kubernetes for the PHP developer
Kubernetes for the PHP developerKubernetes for the PHP developer
Kubernetes for the PHP developer
 
Why Kubernetes? Cloud Native and Developer Experience at Zalando - OWL Tech &...
Why Kubernetes? Cloud Native and Developer Experience at Zalando - OWL Tech &...Why Kubernetes? Cloud Native and Developer Experience at Zalando - OWL Tech &...
Why Kubernetes? Cloud Native and Developer Experience at Zalando - OWL Tech &...
 
Helm intro
Helm introHelm intro
Helm intro
 
Monkey man
Monkey manMonkey man
Monkey man
 

Similar to Introduction to Cloud Foundry #JJUG

Ensemble oscon 2011
Ensemble oscon 2011Ensemble oscon 2011
Ensemble oscon 2011
OSCON Byrum
 
week 4_watermark.pdfffffffffffffffffffff
week 4_watermark.pdfffffffffffffffffffffweek 4_watermark.pdfffffffffffffffffffff
week 4_watermark.pdfffffffffffffffffffff
anushka2002ece
 
Cloud focker を試してみた public
Cloud focker を試してみた   publicCloud focker を試してみた   public
Cloud focker を試してみた public
Takehiko Amano
 

Similar to Introduction to Cloud Foundry #JJUG (20)

Continuous Integration and Deployment Best Practices on AWS
Continuous Integration and Deployment Best Practices on AWSContinuous Integration and Deployment Best Practices on AWS
Continuous Integration and Deployment Best Practices on AWS
 
20171122 aws usergrp_coretech-spn-cicd-aws-v01
20171122 aws usergrp_coretech-spn-cicd-aws-v0120171122 aws usergrp_coretech-spn-cicd-aws-v01
20171122 aws usergrp_coretech-spn-cicd-aws-v01
 
Docker and Cloud - Enables for DevOps - by ACA-IT
Docker and Cloud - Enables for DevOps - by ACA-ITDocker and Cloud - Enables for DevOps - by ACA-IT
Docker and Cloud - Enables for DevOps - by ACA-IT
 
'DOCKER' & CLOUD: ENABLERS For DEVOPS
'DOCKER' & CLOUD:  ENABLERS For DEVOPS'DOCKER' & CLOUD:  ENABLERS For DEVOPS
'DOCKER' & CLOUD: ENABLERS For DEVOPS
 
Ensemble oscon 2011
Ensemble oscon 2011Ensemble oscon 2011
Ensemble oscon 2011
 
stackconf 2020 | The path to a Serverless-native era with Kubernetes by Paolo...
stackconf 2020 | The path to a Serverless-native era with Kubernetes by Paolo...stackconf 2020 | The path to a Serverless-native era with Kubernetes by Paolo...
stackconf 2020 | The path to a Serverless-native era with Kubernetes by Paolo...
 
Kubernetes x PaaS – コンテナアプリケーションのNoOpsへの挑戦
Kubernetes x PaaS – コンテナアプリケーションのNoOpsへの挑戦Kubernetes x PaaS – コンテナアプリケーションのNoOpsへの挑戦
Kubernetes x PaaS – コンテナアプリケーションのNoOpsへの挑戦
 
GE Predix 新手入门 赵锴 物联网_IoT
GE Predix 新手入门 赵锴 物联网_IoTGE Predix 新手入门 赵锴 物联网_IoT
GE Predix 新手入门 赵锴 物联网_IoT
 
Running Docker in Development & Production (#ndcoslo 2015)
Running Docker in Development & Production (#ndcoslo 2015)Running Docker in Development & Production (#ndcoslo 2015)
Running Docker in Development & Production (#ndcoslo 2015)
 
AtlasCamp 2014: Building a Production Ready Connect Add-on
AtlasCamp 2014: Building a Production Ready Connect Add-onAtlasCamp 2014: Building a Production Ready Connect Add-on
AtlasCamp 2014: Building a Production Ready Connect Add-on
 
week 4_watermark.pdfffffffffffffffffffff
week 4_watermark.pdfffffffffffffffffffffweek 4_watermark.pdfffffffffffffffffffff
week 4_watermark.pdfffffffffffffffffffff
 
Week 4 lecture material cc (1)
Week 4 lecture material cc (1)Week 4 lecture material cc (1)
Week 4 lecture material cc (1)
 
Github Action, AWS S3, CloudFront를 활용한 React 애플리케이션 CICD 파이프라인 구축
Github Action, AWS S3, CloudFront를 활용한 React 애플리케이션 CICD 파이프라인 구축Github Action, AWS S3, CloudFront를 활용한 React 애플리케이션 CICD 파이프라인 구축
Github Action, AWS S3, CloudFront를 활용한 React 애플리케이션 CICD 파이프라인 구축
 
Cloud focker を試してみた public
Cloud focker を試してみた   publicCloud focker を試してみた   public
Cloud focker を試してみた public
 
Emerging storage-trends-for-containers
Emerging storage-trends-for-containersEmerging storage-trends-for-containers
Emerging storage-trends-for-containers
 
(ARC402) Deployment Automation: From Developers' Keyboards to End Users' Scre...
(ARC402) Deployment Automation: From Developers' Keyboards to End Users' Scre...(ARC402) Deployment Automation: From Developers' Keyboards to End Users' Scre...
(ARC402) Deployment Automation: From Developers' Keyboards to End Users' Scre...
 
AWS 고객사를 위한 ‘AWS 컨테이너 교육’ - 유재석, AWS 솔루션즈 아키텍트
AWS 고객사를 위한 ‘AWS 컨테이너 교육’ - 유재석, AWS 솔루션즈 아키텍트AWS 고객사를 위한 ‘AWS 컨테이너 교육’ - 유재석, AWS 솔루션즈 아키텍트
AWS 고객사를 위한 ‘AWS 컨테이너 교육’ - 유재석, AWS 솔루션즈 아키텍트
 
HP Helion European Webinar Series ,Webinar #3
HP Helion European Webinar Series ,Webinar #3 HP Helion European Webinar Series ,Webinar #3
HP Helion European Webinar Series ,Webinar #3
 
WebSphere and Docker
WebSphere and DockerWebSphere and Docker
WebSphere and Docker
 
Setting Up a TIG Stack for Your Testing
Setting Up a TIG Stack for Your TestingSetting Up a TIG Stack for Your Testing
Setting Up a TIG Stack for Your Testing
 

More from Toshiaki Maki

マイクロサービスに必要な技術要素はすべてSpring Cloudにある #DO07
マイクロサービスに必要な技術要素はすべてSpring Cloudにある #DO07マイクロサービスに必要な技術要素はすべてSpring Cloudにある #DO07
マイクロサービスに必要な技術要素はすべてSpring Cloudにある #DO07
Toshiaki Maki
 
実例で学ぶ、明日から使えるSpring Boot Tips #jsug
実例で学ぶ、明日から使えるSpring Boot Tips #jsug実例で学ぶ、明日から使えるSpring Boot Tips #jsug
実例で学ぶ、明日から使えるSpring Boot Tips #jsug
Toshiaki 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
 
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
 
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
 
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...
 
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
 
Spring Cloud Servicesの紹介 #pcf_tokyo
Spring Cloud Servicesの紹介 #pcf_tokyoSpring Cloud Servicesの紹介 #pcf_tokyo
Spring Cloud Servicesの紹介 #pcf_tokyo
 

Recently uploaded

Recently uploaded (20)

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
 
Boost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityBoost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivity
 
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...
 
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
 
A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)
 
Top 5 Benefits OF Using Muvi Live Paywall For Live Streams
Top 5 Benefits OF Using Muvi Live Paywall For Live StreamsTop 5 Benefits OF Using Muvi Live Paywall For Live Streams
Top 5 Benefits OF Using Muvi Live Paywall For Live Streams
 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
 
Real Time Object Detection Using Open CV
Real Time Object Detection Using Open CVReal Time Object Detection Using Open CV
Real Time Object Detection Using Open CV
 
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
 
Manulife - Insurer Innovation Award 2024
Manulife - Insurer Innovation Award 2024Manulife - Insurer Innovation Award 2024
Manulife - Insurer Innovation Award 2024
 
Understanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdfUnderstanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdf
 
Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)
 
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost SavingRepurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
 
Artificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : UncertaintyArtificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : Uncertainty
 
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
 
Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...
 
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
 
AWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of TerraformAWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of Terraform
 
2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...
 
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
 

Introduction to Cloud Foundry #JJUG