-
Notifications
You must be signed in to change notification settings - Fork 46
CB Spider 서버 메타정보 환경 설정 방법 (Korean)
ByoungSeob Kim edited this page May 9, 2024
·
3 revisions
* Deprecated since v0.7.6
CB-Spider 메타 정보 관리는 cb-store (Key-Value 저장 관리를 위한 공통 인터페이스 제공) 를 활용하고 있으며, 관리하는 메타 정보 종류는 다음과 같다.
- 클라우드 연결 관련 정보: 클라우드 연결 드라이버 정보, 클라우드 크리덴셜 정보, 클라우드 리젼 정보 등
- 자원ID 맵핑 관련 정보: CB-Spider 서버가 관리하는 자원ID와 CSP(CloudOS)가 관리하는 자원ID 간의 맵핑 정보
- nutsdb 활용 예시 (default)
$ vi ./conf/store_conf.yaml
#### Config for CB-Store ####
# server type: NUTSDB | ETCD
storetype: NUTSDB
nutsdb:
dbpath: "$CBSTORE_ROOT/meta_db/dat"
segmentsize: 1048576 # 1048576 1024*1024 (1MB)
- 단일 노드 etcd 활용 예시
$ vi ./conf/store_conf.yaml
#### Config for CB-Store ####
# server type: NUTSDB | ETCD
storetype: ETCD
etcd:
etcdserverport: "10.10.1.2:2379"
- 다중 노드 etcd 활용 예시:
- (예시) etcd 구성 node 목록: 10.10.1.2, 10.10.1.3, 10.10.1.4
$ vi ./conf/store_conf.yaml
#### Config for CB-Store ####
# server type: NUTSDB | ETCD
storetype: ETCD
etcd:
etcdserverport: "10.10.1.2:2379,10.10.1.3:2379,10.10.1.4:2379"
-
Install & Start Guide
-
Features & Usage
-
- AdminWeb Tool Guide
- CLI Tool Guide
- REST API Guide
-
Design
-
Developer Guide
-
Cloud Driver Developer Guide
- Cloud Driver Developer Guide-WIP
- VM SSH Key Development Guide-WIP
- VM User Development Guide
- What is the CSP SDK API Version of drivers
- Region Zone Info and Driver API
- Price Info and Driver API
- (StartVM TerminateVM) API Call Counts and Waiting
- StartVM and TerminateVM Main Flow of drivers
- VM Root Disk Configuration Guide
- Security Group Rules and Driver API
- Network Load Balancer and Driver API
- VM Snapshot, MyImage and Disk Overview
- Kubernetes and Driver API(PMKS, K8S)
- Tag and Cloud Driver API
- AnyCall API Extension Guide
-
Test Reports
- v0.2.8-for-espresso-release
- v0.3.0-espresso-release
- Azure:Terminating VM
- cb-user@VM: ssh login, sudo run
- v0.3.14 test for SG Source
- v0.4.0-cafemocha-release
- Test via REST API Gateway
- Test Reports of v0.4.11 (IID2 initial Version)
- Test Reports of v0.4.12 (Register & Unregister existing Resources)
- Test Reports for v0.6.0 Release
- How to ...
- How to provision GPU VMs
- How to Resolve the 'Failed to Connect to Database' Error
- How to test CB Spider with Mock Driver
- How to install CB Spider on WSL2 under 공유기/사설망
- How to install CB Spider on macOS
- How to run CB Spider Container on macOS
- How to install OpenStack on a VM for CB Spider Testing
- How to get Azure available Regions
- How to profile memory usage in Golang
- Deprecated:How to install protoc and plugins
- [For Cloud-Migrator]