SlideShare a Scribd company logo
1 of 22
© Copyright 2012 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without notice. HP Restricted.
변상욱 부장
2015 Feb
Cloud Consultant
Hewlett Packard Korea
Triple O 를 이용한
빠르고 쉬운
OpenStack® 설치
© Copyright 2014 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without notice.2
OpenStack® Programs
Identity
(keystone)
Object
Storage
(swift)
Dashboard
(horizon)
Network
(neutron)
Block
Storage
(cinder)
Compute
(nova)
Image
(glance)
Ceilomet
er api
que
ue
data
stor
e
colle
ctor
A
ge
nt
Compute
agentno
va
quant
um
cind
er
glan
ce
poll
Heat
api
no
va
Temp
latesTemp
lates
Hea
t
api-
cfn
Heat
Engi
ne
cin
der
quant
um
gla
nce
sw
ift
Orchestratio
n
(heat)
Usage
Metrics
(ceilometer)
13 integrated, 2 supporting
with 200+ configuration items
© Copyright 2014 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without notice.3
OpenStack® 구축
Physical Environment 준비
(Server, Network, Storage)
Kvm 용 Linux 설치
Package Module 설치
Install/Reconfig/Upgrade
HA Setup, HW failure,…
Bug
Bug…..
© Copyright 2014 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without notice.4
OpenStack® 구축 Sample
keystone role-create --name admin
keystone role-create --name Member
TENANT_ID=$(keystone tenant-list |grep cookbook|awk ‘{print $2}’)
ADMIN_TENANT_ID=$(keystone tenant-list |grep admin |awk ‘{print $2}’)
keystone user-create --name admin --tenant_id $TENANT_ID --pass password --email root@localhost --enabled true
USER_ID=$(keystone user-list |grep admin |awk ‘{print $2}’)
ROLE_ID=$(keystone role-list |grep admin| awk ‘{print $2}’)
keystone user-role-add --user $USER_ID --role $ROLE_ID --tenant_id $TENANT_ID
keystone user-role-add –user $USER_ID –role $ROLE_ID –tenant_id $ADMIN_TENANT_ID
keystone user-create --name demo --tenant_id $TENANT_ID --pass openstack --email demo@localhost --enabled true
DEMO_USER_ID=$(keystone user-list |grep demo |awk ‘{print $2}’)
MEMBER_ROLE_ID=$(keystone role-list |grep Member|awk ‘{print $2}’)
keystone user-role-add --user $DEMO_USER_ID --role $MEMBER_ROLE_ID --tenant_id $TENANT_ID
© Copyright 2014 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without notice.5
OpenStack® on OpenStack®
… 그래서 복잡한 것을 피하는 방법을 찾았습니다.
 OpenStack 으로 OpenStack 을 배포해
버리기로…
© Copyright 2014 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without notice.6
Triple O
• OpenStack On OpenStack
• Triple O 는 OpenStack 이 가진 cloud 기능(nova, ironic,
heat 등) 을 이용하여, OpenStack 을 install/upgrade 하려는
목적의 program
• 2013 Portland Summit 에서 발표
• HP Robert Collins 가 Project Leader
• Production 배포 (deploy) 용으로 사용됨
• Incubator project 이나 production 으로 사용 가능 하고, HP Helion OpenStack
에서 구현됨
• Under Cloud /Over Cloud 라는 용어 사용 (기존 Deployer Cloud / Workload Cloud)
© Copyright 2014 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without notice.7
Triple O
• Triple O 내부의 small projects
- os-collect-config : collect and cache
metadata, run hooks on changes
- os-refresh-config : small templating
layer for writing out config files
- os-apply-config : react to heat metadata
changes and send heat events
- os-cloud-config : common code for
tuskar and the seed initialization logic,
the post heat completion initial
configuration of a cloud
- diskimage-builder : build golden disk
images
© Copyright 2014 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without notice.8
OpenStack Quick Review
Glance
Heat
Neutron
Nova
가상 머신
Deployment
Guest
VM
Guest
VM
Guest
VM
… Glance 의 OS image 를 사용하여, Nova/Heat 을 통해 Compute nodes 에
가상 머신의 deploy
© Copyright 2014 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without notice.9
The Concept of Triple O
HW Node
Deployment
Bare Metal
OS image,
network, disk,
instrumentation
… OpenStack 의 component 를 그대로 재 사용하여, HW 로 OpenStack 을
Deploy 하기
Glance
Heat
Neutron
Nova
© Copyright 2014 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without notice.10
Nova and Heat
Glance
Heat
Neutron
Nova
… Heat 에서 Cloud Capsule 화를 진행하고 Nova 와 Ironic 을 이용하여
PXE,IPMI 를 통해 HW 를 배포 (캡슐화 한 Golden Image 사용)
Bare Metal
OS image,
network, disk,
instrumentation
Bare Metal
OS image,
network, disk,
instrumentation
Bare Metal
OS image,
network, disk,
instrumentation
HW Node
Deployment
© Copyright 2013 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without notice.11
Tuskar
ironic
Baremeta
l
Nova
… Triple O 를 위한 deploy management service
… Operation 을 위한 UI,CLI 및 API 제공
--description "My overcloud"  --attribute
"AdminToken=${OVERCLOUD_ADMIN_TOKEN}"  --attribute
"AdminPassword=${OVERCLOUD_ADMIN_PASSWORD}"  --
attribute
"CinderPassword=${OVERCLOUD_CINDER_PASSWORD}"  --
attribute
"GlancePassword=${OVERCLOUD_GLANCE_PASSWORD}"  -
-attribute "HeatPassword=${OVERCLOUD_HEAT_PASSWORD}"
 --attribute
"NeutronPassword=${OVERCLOUD_NEUTRON_PASSWORD}"
 --attribute
"NovaPassword=${OVERCLOUD_NOVA_PASSWORD}"  --
attribute "NeutronPublicInterface=$NeutronPublicInterface"  --
attribute "SwiftPassword=${OVERCLOUD_SWIFT_PASSWORD}"
 --attribute "SwiftHashSuffix=${OVERCLOUD_SWIFT_HASH}"
 --attribute
"NovaComputeLibvirtType=$OVERCLOUD_LIBVIRT_TYPE"  -
-attribute "GlanceLogFile=''"  --attribute
"NeutronDnsmasqOptions=dhcp-option-force=26,1400"  --role-
count $controller_role_id=1  --role-count
$compute_role_id=$COMPUTESCALE  --role-count
$blockstorage_role_id=$BLOCKSTORAGESCALE  --role-count
Heat
Triple O
Use Case
© Copyright 2013 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without notice.13
Triple O 를 이용한 HP Helion OpenStack
Operational Design
© Copyright 2013 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without notice.14
Under Cloud - Managing HP Helion OpenStack
Managing the Overcloud
• Horizon runs on Undercloud
• Scaling out Switf nodes
• Scaling out compute nodes
• Configuring StoreVirtual VSA
• Adding Cinder storage nodes
• Backing up and restoring the cloud
• Updating the cloud software
• Restarting the cloud after power loss
© Copyright 2013 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without notice.15
Over Cloud - Operating HP Helion OpenStack
Operating the cloud
• Creating tenants and users
• OpenStack user operations
• Adding storage types
• Configuring block storage
HP Helion OpenStack
Deploy step by step
© Copyright 2013 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change
without notice.
© Copyright 2013 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without notice.17
44 © Copyright 2014 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change
without notice.
HP Helion OpenStack Deploy (Triple O)
step by step
1. Infra 사전 준비
HW,N/W,Linux (Ubuntu)
OpenStack
Public LAN
ipmi
network
© Copyright 2013 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without notice.18
44 © Copyright 2014 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change
without notice.
HP Helion OpenStack Deploy (Triple O)
step by step
1. Infra 사전 준비
- HW, N/W, Linux
(Ubuntu)
2. Unpacking the
Package
- script 수행(public key
생성,qemu,libvirt 등 KVM
모듈 설치)
- baremetal.csv 파일 준비
(max addr, ilouser,
ilopasswd, iloaddr, #cpu,
#mem, diskspace)
- Seed VM 생성
OpenStack
Public LAN
ipmi
network
Seed VM
Seed Host (Ubuntu)
© Copyright 2013 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without notice.19
44 © Copyright 2014 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change
without notice.
HP Helion OpenStack Deploy (Triple O)
step by step
3. Under Cloud 배포
- baremetal.csv 파일 준비
- Under Cloud 배포
(Bare Metal Cloud)
- Under Cloud 에서
OpenStack Portal 과 같은
UI 제공
OpenStack
Public LAN
ipmi
network
Seed VM
Seed Host (Ubuntu)
Under Cloud
© Copyright 2013 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without notice.20
44 © Copyright 2014 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change
without notice.
HP Helion OpenStack Deploy (Triple O)
step by step
3. Under Cloud 배포
- baremetal.csv 파일 준비
- Under Cloud 배포
4. Over Cloud 배포
- Under Cloud 에서, Bare
Metal 정보를 통해서 Cloud
의 배포
- Heat 을 이용하여, stack
들을 사용하여 구성
- HA 구성까지 해당 stack
을 이용하여 한번에 구성
- Glance 이미지 저장을
위해 Swift 사용
OpenStack
Public LAN
ipmi
network
Seed VM
Seed Host (Ubuntu)
Under Cloud
Over Cloud
Over Cloud
Over Cloud
© Copyright 2013 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without notice.21
44 © Copyright 2014 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change
without notice.
HP Helion OpenStack Deploy (Triple O)
step by step
5. Node 배포
- 추가 Node 배포
- Over Cloud 에서
사용하는
Swift Node, Ceph 등은
별도 구성 가능
Seed VM
Seed Host (Ubuntu)
Under Cloud
Over Cloud H/A
Over Cloud H/A
Over Cloud H/A
Compute Node
Compute Node
OpenStack
Public LAN
ipmi
network
© Copyright 2013 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without notice.22
22
9
END
감사합니다

More Related Content

What's hot

Terraform for azure: the good, the bad and the ugly -
Terraform for azure: the good, the bad and the ugly -Terraform for azure: the good, the bad and the ugly -
Terraform for azure: the good, the bad and the ugly -Giulio Vian
 
Simplified Data Preparation for Machine Learning in Hybrid and Multi Clouds
Simplified Data Preparation for Machine Learning in Hybrid and Multi CloudsSimplified Data Preparation for Machine Learning in Hybrid and Multi Clouds
Simplified Data Preparation for Machine Learning in Hybrid and Multi CloudsAlluxio, Inc.
 
OpenStack Congress and Datalog (English)
OpenStack Congress and Datalog (English)OpenStack Congress and Datalog (English)
OpenStack Congress and Datalog (English)Motonori Shindo
 
分散DB Apache Kuduのアーキテクチャ DBの性能と一貫性を両立させる仕組み 「HybridTime」とは
分散DB Apache KuduのアーキテクチャDBの性能と一貫性を両立させる仕組み「HybridTime」とは分散DB Apache KuduのアーキテクチャDBの性能と一貫性を両立させる仕組み「HybridTime」とは
分散DB Apache Kuduのアーキテクチャ DBの性能と一貫性を両立させる仕組み 「HybridTime」とはCloudera Japan
 
OpenPOWER Solutions overview session from IBM TechU Rome - April 2016
OpenPOWER Solutions overview session from IBM TechU Rome - April 2016OpenPOWER Solutions overview session from IBM TechU Rome - April 2016
OpenPOWER Solutions overview session from IBM TechU Rome - April 2016Mandie Quartly
 
Open cloud infrastructure built for the enterprise
Open cloud infrastructure built for the enterpriseOpen cloud infrastructure built for the enterprise
Open cloud infrastructure built for the enterpriseRedHatInc
 
Hadoop {Submarine} Project: Running Deep Learning Workloads on YARN
Hadoop {Submarine} Project: Running Deep Learning Workloads on YARNHadoop {Submarine} Project: Running Deep Learning Workloads on YARN
Hadoop {Submarine} Project: Running Deep Learning Workloads on YARNDataWorks Summit
 
Are We Done Yet ? Testing Your OpenStack Deployment
Are We Done Yet ? Testing Your OpenStack DeploymentAre We Done Yet ? Testing Your OpenStack Deployment
Are We Done Yet ? Testing Your OpenStack DeploymentKen Pepple
 
Embracing hybrid cloud for data-intensive analytic workloads
Embracing hybrid cloud for data-intensive analytic workloadsEmbracing hybrid cloud for data-intensive analytic workloads
Embracing hybrid cloud for data-intensive analytic workloadsAlluxio, Inc.
 
Apache Accumulo Overview
Apache Accumulo OverviewApache Accumulo Overview
Apache Accumulo OverviewBill Havanki
 
Dragon and cinder v brownbag
Dragon and cinder v brownbagDragon and cinder v brownbag
Dragon and cinder v brownbagAlon Marx
 
OpenPOWER Overview - August 2016
OpenPOWER Overview - August 2016OpenPOWER Overview - August 2016
OpenPOWER Overview - August 2016Mandie Quartly
 
Heat - keep the clouds up
Heat - keep the clouds upHeat - keep the clouds up
Heat - keep the clouds upKiran Murari
 
Open Stack OW2 Conference Nov10
Open Stack OW2 Conference Nov10Open Stack OW2 Conference Nov10
Open Stack OW2 Conference Nov10OW2
 
OpenStack Overview and History
OpenStack Overview and HistoryOpenStack Overview and History
OpenStack Overview and HistoryMirantis
 
A Tour of Internal Accumulo Testing
A Tour of Internal Accumulo TestingA Tour of Internal Accumulo Testing
A Tour of Internal Accumulo TestingBill Havanki
 

What's hot (20)

Terraform for azure: the good, the bad and the ugly -
Terraform for azure: the good, the bad and the ugly -Terraform for azure: the good, the bad and the ugly -
Terraform for azure: the good, the bad and the ugly -
 
Simplified Data Preparation for Machine Learning in Hybrid and Multi Clouds
Simplified Data Preparation for Machine Learning in Hybrid and Multi CloudsSimplified Data Preparation for Machine Learning in Hybrid and Multi Clouds
Simplified Data Preparation for Machine Learning in Hybrid and Multi Clouds
 
OpenStack Congress and Datalog (English)
OpenStack Congress and Datalog (English)OpenStack Congress and Datalog (English)
OpenStack Congress and Datalog (English)
 
分散DB Apache Kuduのアーキテクチャ DBの性能と一貫性を両立させる仕組み 「HybridTime」とは
分散DB Apache KuduのアーキテクチャDBの性能と一貫性を両立させる仕組み「HybridTime」とは分散DB Apache KuduのアーキテクチャDBの性能と一貫性を両立させる仕組み「HybridTime」とは
分散DB Apache Kuduのアーキテクチャ DBの性能と一貫性を両立させる仕組み 「HybridTime」とは
 
DR_PRESENT 1
DR_PRESENT 1DR_PRESENT 1
DR_PRESENT 1
 
OpenStack en 10 minutes
OpenStack en 10 minutesOpenStack en 10 minutes
OpenStack en 10 minutes
 
OpenPOWER Solutions overview session from IBM TechU Rome - April 2016
OpenPOWER Solutions overview session from IBM TechU Rome - April 2016OpenPOWER Solutions overview session from IBM TechU Rome - April 2016
OpenPOWER Solutions overview session from IBM TechU Rome - April 2016
 
Open cloud infrastructure built for the enterprise
Open cloud infrastructure built for the enterpriseOpen cloud infrastructure built for the enterprise
Open cloud infrastructure built for the enterprise
 
Hadoop {Submarine} Project: Running Deep Learning Workloads on YARN
Hadoop {Submarine} Project: Running Deep Learning Workloads on YARNHadoop {Submarine} Project: Running Deep Learning Workloads on YARN
Hadoop {Submarine} Project: Running Deep Learning Workloads on YARN
 
vBACD July 2012 - Deploying Private PaaS with ActiveState Stackato
vBACD July 2012 - Deploying Private PaaS with ActiveState StackatovBACD July 2012 - Deploying Private PaaS with ActiveState Stackato
vBACD July 2012 - Deploying Private PaaS with ActiveState Stackato
 
Are We Done Yet ? Testing Your OpenStack Deployment
Are We Done Yet ? Testing Your OpenStack DeploymentAre We Done Yet ? Testing Your OpenStack Deployment
Are We Done Yet ? Testing Your OpenStack Deployment
 
Embracing hybrid cloud for data-intensive analytic workloads
Embracing hybrid cloud for data-intensive analytic workloadsEmbracing hybrid cloud for data-intensive analytic workloads
Embracing hybrid cloud for data-intensive analytic workloads
 
Apache Accumulo Overview
Apache Accumulo OverviewApache Accumulo Overview
Apache Accumulo Overview
 
Korejanai Story
Korejanai StoryKorejanai Story
Korejanai Story
 
Dragon and cinder v brownbag
Dragon and cinder v brownbagDragon and cinder v brownbag
Dragon and cinder v brownbag
 
OpenPOWER Overview - August 2016
OpenPOWER Overview - August 2016OpenPOWER Overview - August 2016
OpenPOWER Overview - August 2016
 
Heat - keep the clouds up
Heat - keep the clouds upHeat - keep the clouds up
Heat - keep the clouds up
 
Open Stack OW2 Conference Nov10
Open Stack OW2 Conference Nov10Open Stack OW2 Conference Nov10
Open Stack OW2 Conference Nov10
 
OpenStack Overview and History
OpenStack Overview and HistoryOpenStack Overview and History
OpenStack Overview and History
 
A Tour of Internal Accumulo Testing
A Tour of Internal Accumulo TestingA Tour of Internal Accumulo Testing
A Tour of Internal Accumulo Testing
 

Similar to Triple o 를 이용한 빠르고 쉬운 open stack 설치

OpenStack in 10 minutes with Devstack
OpenStack in 10 minutes with DevstackOpenStack in 10 minutes with Devstack
OpenStack in 10 minutes with DevstackSean Dague
 
Infrastructure-as-Code with Puppet Enterprise in the Cloud - PuppetConf 2014
Infrastructure-as-Code with Puppet Enterprise in the Cloud - PuppetConf 2014Infrastructure-as-Code with Puppet Enterprise in the Cloud - PuppetConf 2014
Infrastructure-as-Code with Puppet Enterprise in the Cloud - PuppetConf 2014Puppet
 
HP Helion OpenStack and Professional Services
HP Helion OpenStack and Professional ServicesHP Helion OpenStack and Professional Services
HP Helion OpenStack and Professional ServicesMatthew Farina
 
Helion meetup-2014
Helion meetup-2014Helion meetup-2014
Helion meetup-2014Bruno Cornec
 
Open stackbrief happylearning
Open stackbrief happylearningOpen stackbrief happylearning
Open stackbrief happylearningLigong Duan
 
Ceph Day Shanghai - Hyper Converged PLCloud with Ceph
Ceph Day Shanghai - Hyper Converged PLCloud with Ceph Ceph Day Shanghai - Hyper Converged PLCloud with Ceph
Ceph Day Shanghai - Hyper Converged PLCloud with Ceph Ceph Community
 
Robert collins openstack on openstack 201304162
Robert collins   openstack on openstack 201304162Robert collins   openstack on openstack 201304162
Robert collins openstack on openstack 201304162OpenStack Foundation
 
TripleO Lightning Talk
TripleO Lightning TalkTripleO Lightning Talk
TripleO Lightning Talkcmsj1
 
Ceph and cloud stack apr 2014
Ceph and cloud stack   apr 2014Ceph and cloud stack   apr 2014
Ceph and cloud stack apr 2014Ian Colle
 
Scale tests nodepool
Scale tests nodepoolScale tests nodepool
Scale tests nodepoolYolanda Robla
 
OpenStack Benelux Conference 2014 | Plenair | HP
OpenStack Benelux Conference 2014 | Plenair | HPOpenStack Benelux Conference 2014 | Plenair | HP
OpenStack Benelux Conference 2014 | Plenair | HPGuston Remie
 
Enterprise Ready OpenStack, Wiekus Beukes, Oracle
Enterprise Ready OpenStack,  Wiekus Beukes, OracleEnterprise Ready OpenStack,  Wiekus Beukes, Oracle
Enterprise Ready OpenStack, Wiekus Beukes, OracleSriram Subramanian
 
Openstack win final
Openstack win finalOpenstack win final
Openstack win finalJordan Rinke
 
Why OpenStack matters and how you can get involved
Why OpenStack matters and how you can get involvedWhy OpenStack matters and how you can get involved
Why OpenStack matters and how you can get involvedMatthew Farina
 
OpenStack Ironic Project Summary, February 2014
OpenStack Ironic Project Summary, February 2014OpenStack Ironic Project Summary, February 2014
OpenStack Ironic Project Summary, February 2014Devananda Van Der Veen
 
CI/CD Pipeline to Deploy and Maintain an OpenStack IaaS Cloud
CI/CD Pipeline to Deploy and Maintain an OpenStack IaaS CloudCI/CD Pipeline to Deploy and Maintain an OpenStack IaaS Cloud
CI/CD Pipeline to Deploy and Maintain an OpenStack IaaS CloudSimon McCartney
 

Similar to Triple o 를 이용한 빠르고 쉬운 open stack 설치 (20)

Triple o overview
Triple o overviewTriple o overview
Triple o overview
 
OpenStack in 10 minutes with Devstack
OpenStack in 10 minutes with DevstackOpenStack in 10 minutes with Devstack
OpenStack in 10 minutes with Devstack
 
Infrastructure-as-Code with Puppet Enterprise in the Cloud - PuppetConf 2014
Infrastructure-as-Code with Puppet Enterprise in the Cloud - PuppetConf 2014Infrastructure-as-Code with Puppet Enterprise in the Cloud - PuppetConf 2014
Infrastructure-as-Code with Puppet Enterprise in the Cloud - PuppetConf 2014
 
HP Helion OpenStack and Professional Services
HP Helion OpenStack and Professional ServicesHP Helion OpenStack and Professional Services
HP Helion OpenStack and Professional Services
 
Helion meetup-2014
Helion meetup-2014Helion meetup-2014
Helion meetup-2014
 
Open stackbrief happylearning
Open stackbrief happylearningOpen stackbrief happylearning
Open stackbrief happylearning
 
Ceph Day Shanghai - Hyper Converged PLCloud with Ceph
Ceph Day Shanghai - Hyper Converged PLCloud with Ceph Ceph Day Shanghai - Hyper Converged PLCloud with Ceph
Ceph Day Shanghai - Hyper Converged PLCloud with Ceph
 
101b-3
101b-3101b-3
101b-3
 
OpenStack on OpenStack
OpenStack on OpenStackOpenStack on OpenStack
OpenStack on OpenStack
 
Robert collins openstack on openstack 201304162
Robert collins   openstack on openstack 201304162Robert collins   openstack on openstack 201304162
Robert collins openstack on openstack 201304162
 
TripleO Lightning Talk
TripleO Lightning TalkTripleO Lightning Talk
TripleO Lightning Talk
 
Core os dna_automacon
Core os dna_automaconCore os dna_automacon
Core os dna_automacon
 
Ceph and cloud stack apr 2014
Ceph and cloud stack   apr 2014Ceph and cloud stack   apr 2014
Ceph and cloud stack apr 2014
 
Scale tests nodepool
Scale tests nodepoolScale tests nodepool
Scale tests nodepool
 
OpenStack Benelux Conference 2014 | Plenair | HP
OpenStack Benelux Conference 2014 | Plenair | HPOpenStack Benelux Conference 2014 | Plenair | HP
OpenStack Benelux Conference 2014 | Plenair | HP
 
Enterprise Ready OpenStack, Wiekus Beukes, Oracle
Enterprise Ready OpenStack,  Wiekus Beukes, OracleEnterprise Ready OpenStack,  Wiekus Beukes, Oracle
Enterprise Ready OpenStack, Wiekus Beukes, Oracle
 
Openstack win final
Openstack win finalOpenstack win final
Openstack win final
 
Why OpenStack matters and how you can get involved
Why OpenStack matters and how you can get involvedWhy OpenStack matters and how you can get involved
Why OpenStack matters and how you can get involved
 
OpenStack Ironic Project Summary, February 2014
OpenStack Ironic Project Summary, February 2014OpenStack Ironic Project Summary, February 2014
OpenStack Ironic Project Summary, February 2014
 
CI/CD Pipeline to Deploy and Maintain an OpenStack IaaS Cloud
CI/CD Pipeline to Deploy and Maintain an OpenStack IaaS CloudCI/CD Pipeline to Deploy and Maintain an OpenStack IaaS Cloud
CI/CD Pipeline to Deploy and Maintain an OpenStack IaaS Cloud
 

Recently uploaded

Advancing Engineering with AI through the Next Generation of Strategic Projec...
Advancing Engineering with AI through the Next Generation of Strategic Projec...Advancing Engineering with AI through the Next Generation of Strategic Projec...
Advancing Engineering with AI through the Next Generation of Strategic Projec...OnePlan Solutions
 
The Evolution of Karaoke From Analog to App.pdf
The Evolution of Karaoke From Analog to App.pdfThe Evolution of Karaoke From Analog to App.pdf
The Evolution of Karaoke From Analog to App.pdfPower Karaoke
 
Short Story: Unveiling the Reasoning Abilities of Large Language Models by Ke...
Short Story: Unveiling the Reasoning Abilities of Large Language Models by Ke...Short Story: Unveiling the Reasoning Abilities of Large Language Models by Ke...
Short Story: Unveiling the Reasoning Abilities of Large Language Models by Ke...kellynguyen01
 
Engage Usergroup 2024 - The Good The Bad_The Ugly
Engage Usergroup 2024 - The Good The Bad_The UglyEngage Usergroup 2024 - The Good The Bad_The Ugly
Engage Usergroup 2024 - The Good The Bad_The UglyFrank van der Linden
 
cybersecurity notes for mca students for learning
cybersecurity notes for mca students for learningcybersecurity notes for mca students for learning
cybersecurity notes for mca students for learningVitsRangannavar
 
Alluxio Monthly Webinar | Cloud-Native Model Training on Distributed Data
Alluxio Monthly Webinar | Cloud-Native Model Training on Distributed DataAlluxio Monthly Webinar | Cloud-Native Model Training on Distributed Data
Alluxio Monthly Webinar | Cloud-Native Model Training on Distributed DataAlluxio, Inc.
 
办理学位证(UQ文凭证书)昆士兰大学毕业证成绩单原版一模一样
办理学位证(UQ文凭证书)昆士兰大学毕业证成绩单原版一模一样办理学位证(UQ文凭证书)昆士兰大学毕业证成绩单原版一模一样
办理学位证(UQ文凭证书)昆士兰大学毕业证成绩单原版一模一样umasea
 
Call Girls in Naraina Delhi 💯Call Us 🔝8264348440🔝
Call Girls in Naraina Delhi 💯Call Us 🔝8264348440🔝Call Girls in Naraina Delhi 💯Call Us 🔝8264348440🔝
Call Girls in Naraina Delhi 💯Call Us 🔝8264348440🔝soniya singh
 
(Genuine) Escort Service Lucknow | Starting ₹,5K To @25k with A/C 🧑🏽‍❤️‍🧑🏻 89...
(Genuine) Escort Service Lucknow | Starting ₹,5K To @25k with A/C 🧑🏽‍❤️‍🧑🏻 89...(Genuine) Escort Service Lucknow | Starting ₹,5K To @25k with A/C 🧑🏽‍❤️‍🧑🏻 89...
(Genuine) Escort Service Lucknow | Starting ₹,5K To @25k with A/C 🧑🏽‍❤️‍🧑🏻 89...gurkirankumar98700
 
Project Based Learning (A.I).pptx detail explanation
Project Based Learning (A.I).pptx detail explanationProject Based Learning (A.I).pptx detail explanation
Project Based Learning (A.I).pptx detail explanationkaushalgiri8080
 
ODSC - Batch to Stream workshop - integration of Apache Spark, Cassandra, Pos...
ODSC - Batch to Stream workshop - integration of Apache Spark, Cassandra, Pos...ODSC - Batch to Stream workshop - integration of Apache Spark, Cassandra, Pos...
ODSC - Batch to Stream workshop - integration of Apache Spark, Cassandra, Pos...Christina Lin
 
Adobe Marketo Engage Deep Dives: Using Webhooks to Transfer Data
Adobe Marketo Engage Deep Dives: Using Webhooks to Transfer DataAdobe Marketo Engage Deep Dives: Using Webhooks to Transfer Data
Adobe Marketo Engage Deep Dives: Using Webhooks to Transfer DataBradBedford3
 
why an Opensea Clone Script might be your perfect match.pdf
why an Opensea Clone Script might be your perfect match.pdfwhy an Opensea Clone Script might be your perfect match.pdf
why an Opensea Clone Script might be your perfect match.pdfjoe51371421
 
Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...
Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...
Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...MyIntelliSource, Inc.
 
Building a General PDE Solving Framework with Symbolic-Numeric Scientific Mac...
Building a General PDE Solving Framework with Symbolic-Numeric Scientific Mac...Building a General PDE Solving Framework with Symbolic-Numeric Scientific Mac...
Building a General PDE Solving Framework with Symbolic-Numeric Scientific Mac...stazi3110
 
BATTLEFIELD ORM: TIPS, TACTICS AND STRATEGIES FOR CONQUERING YOUR DATABASE
BATTLEFIELD ORM: TIPS, TACTICS AND STRATEGIES FOR CONQUERING YOUR DATABASEBATTLEFIELD ORM: TIPS, TACTICS AND STRATEGIES FOR CONQUERING YOUR DATABASE
BATTLEFIELD ORM: TIPS, TACTICS AND STRATEGIES FOR CONQUERING YOUR DATABASEOrtus Solutions, Corp
 
Automate your Kamailio Test Calls - Kamailio World 2024
Automate your Kamailio Test Calls - Kamailio World 2024Automate your Kamailio Test Calls - Kamailio World 2024
Automate your Kamailio Test Calls - Kamailio World 2024Andreas Granig
 
KnowAPIs-UnknownPerf-jaxMainz-2024 (1).pptx
KnowAPIs-UnknownPerf-jaxMainz-2024 (1).pptxKnowAPIs-UnknownPerf-jaxMainz-2024 (1).pptx
KnowAPIs-UnknownPerf-jaxMainz-2024 (1).pptxTier1 app
 
The Essentials of Digital Experience Monitoring_ A Comprehensive Guide.pdf
The Essentials of Digital Experience Monitoring_ A Comprehensive Guide.pdfThe Essentials of Digital Experience Monitoring_ A Comprehensive Guide.pdf
The Essentials of Digital Experience Monitoring_ A Comprehensive Guide.pdfkalichargn70th171
 
Unit 1.1 Excite Part 1, class 9, cbse...
Unit 1.1 Excite Part 1, class 9, cbse...Unit 1.1 Excite Part 1, class 9, cbse...
Unit 1.1 Excite Part 1, class 9, cbse...aditisharan08
 

Recently uploaded (20)

Advancing Engineering with AI through the Next Generation of Strategic Projec...
Advancing Engineering with AI through the Next Generation of Strategic Projec...Advancing Engineering with AI through the Next Generation of Strategic Projec...
Advancing Engineering with AI through the Next Generation of Strategic Projec...
 
The Evolution of Karaoke From Analog to App.pdf
The Evolution of Karaoke From Analog to App.pdfThe Evolution of Karaoke From Analog to App.pdf
The Evolution of Karaoke From Analog to App.pdf
 
Short Story: Unveiling the Reasoning Abilities of Large Language Models by Ke...
Short Story: Unveiling the Reasoning Abilities of Large Language Models by Ke...Short Story: Unveiling the Reasoning Abilities of Large Language Models by Ke...
Short Story: Unveiling the Reasoning Abilities of Large Language Models by Ke...
 
Engage Usergroup 2024 - The Good The Bad_The Ugly
Engage Usergroup 2024 - The Good The Bad_The UglyEngage Usergroup 2024 - The Good The Bad_The Ugly
Engage Usergroup 2024 - The Good The Bad_The Ugly
 
cybersecurity notes for mca students for learning
cybersecurity notes for mca students for learningcybersecurity notes for mca students for learning
cybersecurity notes for mca students for learning
 
Alluxio Monthly Webinar | Cloud-Native Model Training on Distributed Data
Alluxio Monthly Webinar | Cloud-Native Model Training on Distributed DataAlluxio Monthly Webinar | Cloud-Native Model Training on Distributed Data
Alluxio Monthly Webinar | Cloud-Native Model Training on Distributed Data
 
办理学位证(UQ文凭证书)昆士兰大学毕业证成绩单原版一模一样
办理学位证(UQ文凭证书)昆士兰大学毕业证成绩单原版一模一样办理学位证(UQ文凭证书)昆士兰大学毕业证成绩单原版一模一样
办理学位证(UQ文凭证书)昆士兰大学毕业证成绩单原版一模一样
 
Call Girls in Naraina Delhi 💯Call Us 🔝8264348440🔝
Call Girls in Naraina Delhi 💯Call Us 🔝8264348440🔝Call Girls in Naraina Delhi 💯Call Us 🔝8264348440🔝
Call Girls in Naraina Delhi 💯Call Us 🔝8264348440🔝
 
(Genuine) Escort Service Lucknow | Starting ₹,5K To @25k with A/C 🧑🏽‍❤️‍🧑🏻 89...
(Genuine) Escort Service Lucknow | Starting ₹,5K To @25k with A/C 🧑🏽‍❤️‍🧑🏻 89...(Genuine) Escort Service Lucknow | Starting ₹,5K To @25k with A/C 🧑🏽‍❤️‍🧑🏻 89...
(Genuine) Escort Service Lucknow | Starting ₹,5K To @25k with A/C 🧑🏽‍❤️‍🧑🏻 89...
 
Project Based Learning (A.I).pptx detail explanation
Project Based Learning (A.I).pptx detail explanationProject Based Learning (A.I).pptx detail explanation
Project Based Learning (A.I).pptx detail explanation
 
ODSC - Batch to Stream workshop - integration of Apache Spark, Cassandra, Pos...
ODSC - Batch to Stream workshop - integration of Apache Spark, Cassandra, Pos...ODSC - Batch to Stream workshop - integration of Apache Spark, Cassandra, Pos...
ODSC - Batch to Stream workshop - integration of Apache Spark, Cassandra, Pos...
 
Adobe Marketo Engage Deep Dives: Using Webhooks to Transfer Data
Adobe Marketo Engage Deep Dives: Using Webhooks to Transfer DataAdobe Marketo Engage Deep Dives: Using Webhooks to Transfer Data
Adobe Marketo Engage Deep Dives: Using Webhooks to Transfer Data
 
why an Opensea Clone Script might be your perfect match.pdf
why an Opensea Clone Script might be your perfect match.pdfwhy an Opensea Clone Script might be your perfect match.pdf
why an Opensea Clone Script might be your perfect match.pdf
 
Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...
Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...
Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...
 
Building a General PDE Solving Framework with Symbolic-Numeric Scientific Mac...
Building a General PDE Solving Framework with Symbolic-Numeric Scientific Mac...Building a General PDE Solving Framework with Symbolic-Numeric Scientific Mac...
Building a General PDE Solving Framework with Symbolic-Numeric Scientific Mac...
 
BATTLEFIELD ORM: TIPS, TACTICS AND STRATEGIES FOR CONQUERING YOUR DATABASE
BATTLEFIELD ORM: TIPS, TACTICS AND STRATEGIES FOR CONQUERING YOUR DATABASEBATTLEFIELD ORM: TIPS, TACTICS AND STRATEGIES FOR CONQUERING YOUR DATABASE
BATTLEFIELD ORM: TIPS, TACTICS AND STRATEGIES FOR CONQUERING YOUR DATABASE
 
Automate your Kamailio Test Calls - Kamailio World 2024
Automate your Kamailio Test Calls - Kamailio World 2024Automate your Kamailio Test Calls - Kamailio World 2024
Automate your Kamailio Test Calls - Kamailio World 2024
 
KnowAPIs-UnknownPerf-jaxMainz-2024 (1).pptx
KnowAPIs-UnknownPerf-jaxMainz-2024 (1).pptxKnowAPIs-UnknownPerf-jaxMainz-2024 (1).pptx
KnowAPIs-UnknownPerf-jaxMainz-2024 (1).pptx
 
The Essentials of Digital Experience Monitoring_ A Comprehensive Guide.pdf
The Essentials of Digital Experience Monitoring_ A Comprehensive Guide.pdfThe Essentials of Digital Experience Monitoring_ A Comprehensive Guide.pdf
The Essentials of Digital Experience Monitoring_ A Comprehensive Guide.pdf
 
Unit 1.1 Excite Part 1, class 9, cbse...
Unit 1.1 Excite Part 1, class 9, cbse...Unit 1.1 Excite Part 1, class 9, cbse...
Unit 1.1 Excite Part 1, class 9, cbse...
 

Triple o 를 이용한 빠르고 쉬운 open stack 설치

  • 1. © Copyright 2012 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without notice. HP Restricted. 변상욱 부장 2015 Feb Cloud Consultant Hewlett Packard Korea Triple O 를 이용한 빠르고 쉬운 OpenStack® 설치
  • 2. © Copyright 2014 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without notice.2 OpenStack® Programs Identity (keystone) Object Storage (swift) Dashboard (horizon) Network (neutron) Block Storage (cinder) Compute (nova) Image (glance) Ceilomet er api que ue data stor e colle ctor A ge nt Compute agentno va quant um cind er glan ce poll Heat api no va Temp latesTemp lates Hea t api- cfn Heat Engi ne cin der quant um gla nce sw ift Orchestratio n (heat) Usage Metrics (ceilometer) 13 integrated, 2 supporting with 200+ configuration items
  • 3. © Copyright 2014 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without notice.3 OpenStack® 구축 Physical Environment 준비 (Server, Network, Storage) Kvm 용 Linux 설치 Package Module 설치 Install/Reconfig/Upgrade HA Setup, HW failure,… Bug Bug…..
  • 4. © Copyright 2014 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without notice.4 OpenStack® 구축 Sample keystone role-create --name admin keystone role-create --name Member TENANT_ID=$(keystone tenant-list |grep cookbook|awk ‘{print $2}’) ADMIN_TENANT_ID=$(keystone tenant-list |grep admin |awk ‘{print $2}’) keystone user-create --name admin --tenant_id $TENANT_ID --pass password --email root@localhost --enabled true USER_ID=$(keystone user-list |grep admin |awk ‘{print $2}’) ROLE_ID=$(keystone role-list |grep admin| awk ‘{print $2}’) keystone user-role-add --user $USER_ID --role $ROLE_ID --tenant_id $TENANT_ID keystone user-role-add –user $USER_ID –role $ROLE_ID –tenant_id $ADMIN_TENANT_ID keystone user-create --name demo --tenant_id $TENANT_ID --pass openstack --email demo@localhost --enabled true DEMO_USER_ID=$(keystone user-list |grep demo |awk ‘{print $2}’) MEMBER_ROLE_ID=$(keystone role-list |grep Member|awk ‘{print $2}’) keystone user-role-add --user $DEMO_USER_ID --role $MEMBER_ROLE_ID --tenant_id $TENANT_ID
  • 5. © Copyright 2014 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without notice.5 OpenStack® on OpenStack® … 그래서 복잡한 것을 피하는 방법을 찾았습니다.  OpenStack 으로 OpenStack 을 배포해 버리기로…
  • 6. © Copyright 2014 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without notice.6 Triple O • OpenStack On OpenStack • Triple O 는 OpenStack 이 가진 cloud 기능(nova, ironic, heat 등) 을 이용하여, OpenStack 을 install/upgrade 하려는 목적의 program • 2013 Portland Summit 에서 발표 • HP Robert Collins 가 Project Leader • Production 배포 (deploy) 용으로 사용됨 • Incubator project 이나 production 으로 사용 가능 하고, HP Helion OpenStack 에서 구현됨 • Under Cloud /Over Cloud 라는 용어 사용 (기존 Deployer Cloud / Workload Cloud)
  • 7. © Copyright 2014 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without notice.7 Triple O • Triple O 내부의 small projects - os-collect-config : collect and cache metadata, run hooks on changes - os-refresh-config : small templating layer for writing out config files - os-apply-config : react to heat metadata changes and send heat events - os-cloud-config : common code for tuskar and the seed initialization logic, the post heat completion initial configuration of a cloud - diskimage-builder : build golden disk images
  • 8. © Copyright 2014 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without notice.8 OpenStack Quick Review Glance Heat Neutron Nova 가상 머신 Deployment Guest VM Guest VM Guest VM … Glance 의 OS image 를 사용하여, Nova/Heat 을 통해 Compute nodes 에 가상 머신의 deploy
  • 9. © Copyright 2014 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without notice.9 The Concept of Triple O HW Node Deployment Bare Metal OS image, network, disk, instrumentation … OpenStack 의 component 를 그대로 재 사용하여, HW 로 OpenStack 을 Deploy 하기 Glance Heat Neutron Nova
  • 10. © Copyright 2014 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without notice.10 Nova and Heat Glance Heat Neutron Nova … Heat 에서 Cloud Capsule 화를 진행하고 Nova 와 Ironic 을 이용하여 PXE,IPMI 를 통해 HW 를 배포 (캡슐화 한 Golden Image 사용) Bare Metal OS image, network, disk, instrumentation Bare Metal OS image, network, disk, instrumentation Bare Metal OS image, network, disk, instrumentation HW Node Deployment
  • 11. © Copyright 2013 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without notice.11 Tuskar ironic Baremeta l Nova … Triple O 를 위한 deploy management service … Operation 을 위한 UI,CLI 및 API 제공 --description "My overcloud" --attribute "AdminToken=${OVERCLOUD_ADMIN_TOKEN}" --attribute "AdminPassword=${OVERCLOUD_ADMIN_PASSWORD}" -- attribute "CinderPassword=${OVERCLOUD_CINDER_PASSWORD}" -- attribute "GlancePassword=${OVERCLOUD_GLANCE_PASSWORD}" - -attribute "HeatPassword=${OVERCLOUD_HEAT_PASSWORD}" --attribute "NeutronPassword=${OVERCLOUD_NEUTRON_PASSWORD}" --attribute "NovaPassword=${OVERCLOUD_NOVA_PASSWORD}" -- attribute "NeutronPublicInterface=$NeutronPublicInterface" -- attribute "SwiftPassword=${OVERCLOUD_SWIFT_PASSWORD}" --attribute "SwiftHashSuffix=${OVERCLOUD_SWIFT_HASH}" --attribute "NovaComputeLibvirtType=$OVERCLOUD_LIBVIRT_TYPE" - -attribute "GlanceLogFile=''" --attribute "NeutronDnsmasqOptions=dhcp-option-force=26,1400" --role- count $controller_role_id=1 --role-count $compute_role_id=$COMPUTESCALE --role-count $blockstorage_role_id=$BLOCKSTORAGESCALE --role-count Heat
  • 13. © Copyright 2013 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without notice.13 Triple O 를 이용한 HP Helion OpenStack Operational Design
  • 14. © Copyright 2013 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without notice.14 Under Cloud - Managing HP Helion OpenStack Managing the Overcloud • Horizon runs on Undercloud • Scaling out Switf nodes • Scaling out compute nodes • Configuring StoreVirtual VSA • Adding Cinder storage nodes • Backing up and restoring the cloud • Updating the cloud software • Restarting the cloud after power loss
  • 15. © Copyright 2013 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without notice.15 Over Cloud - Operating HP Helion OpenStack Operating the cloud • Creating tenants and users • OpenStack user operations • Adding storage types • Configuring block storage
  • 16. HP Helion OpenStack Deploy step by step © Copyright 2013 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without notice.
  • 17. © Copyright 2013 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without notice.17 44 © Copyright 2014 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without notice. HP Helion OpenStack Deploy (Triple O) step by step 1. Infra 사전 준비 HW,N/W,Linux (Ubuntu) OpenStack Public LAN ipmi network
  • 18. © Copyright 2013 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without notice.18 44 © Copyright 2014 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without notice. HP Helion OpenStack Deploy (Triple O) step by step 1. Infra 사전 준비 - HW, N/W, Linux (Ubuntu) 2. Unpacking the Package - script 수행(public key 생성,qemu,libvirt 등 KVM 모듈 설치) - baremetal.csv 파일 준비 (max addr, ilouser, ilopasswd, iloaddr, #cpu, #mem, diskspace) - Seed VM 생성 OpenStack Public LAN ipmi network Seed VM Seed Host (Ubuntu)
  • 19. © Copyright 2013 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without notice.19 44 © Copyright 2014 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without notice. HP Helion OpenStack Deploy (Triple O) step by step 3. Under Cloud 배포 - baremetal.csv 파일 준비 - Under Cloud 배포 (Bare Metal Cloud) - Under Cloud 에서 OpenStack Portal 과 같은 UI 제공 OpenStack Public LAN ipmi network Seed VM Seed Host (Ubuntu) Under Cloud
  • 20. © Copyright 2013 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without notice.20 44 © Copyright 2014 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without notice. HP Helion OpenStack Deploy (Triple O) step by step 3. Under Cloud 배포 - baremetal.csv 파일 준비 - Under Cloud 배포 4. Over Cloud 배포 - Under Cloud 에서, Bare Metal 정보를 통해서 Cloud 의 배포 - Heat 을 이용하여, stack 들을 사용하여 구성 - HA 구성까지 해당 stack 을 이용하여 한번에 구성 - Glance 이미지 저장을 위해 Swift 사용 OpenStack Public LAN ipmi network Seed VM Seed Host (Ubuntu) Under Cloud Over Cloud Over Cloud Over Cloud
  • 21. © Copyright 2013 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without notice.21 44 © Copyright 2014 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without notice. HP Helion OpenStack Deploy (Triple O) step by step 5. Node 배포 - 추가 Node 배포 - Over Cloud 에서 사용하는 Swift Node, Ceph 등은 별도 구성 가능 Seed VM Seed Host (Ubuntu) Under Cloud Over Cloud H/A Over Cloud H/A Over Cloud H/A Compute Node Compute Node OpenStack Public LAN ipmi network
  • 22. © Copyright 2013 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without notice.22 22 9 END 감사합니다