Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs(translation): 翻译 operations-component #48

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/operations/component.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ api网关组件
- **Pod**: default-keystone-xxx
- **功能**:
- 认证
- 资源归属project和domain
- 资源归属:域(domain), 项目(project)
- 权限:角色(role),权限(policy)
- 服务目录

Expand Down Expand Up @@ -112,7 +112,7 @@ api网关组件
- 作为DHCP Server为虚拟机分配IP
- 作为DHCP relay server转发物理机PXE启动时候的DHCP请求
- GPU设备探测与初始化
- 初始化即为GPU设备绑定vfio驱动
- 为 GPU 设备绑定 vfio 驱动并注册到云平台
- 宿主机初始化与信息探测
- 监控数据采集
- ovn-controller:虚拟机vpc网络管理,连接southbound,将southbound中的flows转换成ovs流表规则。
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,167 @@
---
sidebar_position: 1
---

# Component Introduction

Most of the services deployed on the Cloudpods platform run in containers. Services deployed using `ocboot` and `helm` run directly on Kubernetes, while environments deployed using Docker Compose run directly on `docker`.

Next, we will introduce the component services of the platform.

## onecloud-operator

The Onecloud-operator component is a cluster controller that enables automatic configuration, deployment, and operational monitoring of cluster services.

- **Deployment**: onecloud-operator
- **Pod**: onecloud-operator-xxx
- **Configuration**:

```bash
# Configure the operator
$ kubectl edit oc -n onecloud
# View the configuration of the operator
$ kubectl get oc -n onecloud -o yaml
```

- **Features**:
- Automatic deployment of platform services, including initialization configuration and creation of corresponding k8s resources.
- Upgrade and rollback: update or rollback the version of any service.
- Resource cleanup: release corresponding resources when the platform service cluster is deleted.

### web

Front-end service component

- **Deployment**: default-web
- **Pod**: default-web-xxx
- **configmap**: default-web
- **Features**:
- Hosting front-end code
- Nignx-related configuration

### apigateway

API gateway component

- **Deployment**: default-apigateway
- **Pod**: default-apigateway-xxx
- **Features**:
- Provide web front-end API
- Entry point for authentication and authorization.

### keystone

- **Deployment**: default-keystone
- **Pod**: default-keystone-xxx
- **Features**:
- Authentication
- Resource ownership: domain, project
- Permission: role, policy
- Service directory

### region

- **Deployment**: default-region
- **Pod**: default-region-xxx
- **Features**:
- Cloud controller
- Management of cloud resources such as computing, networking, storage, and databases

### scheduler

Resource scheduling component

- **Deployment**: default-scheduler
- **Pod**: default-scheduler-xxx
- **Features**: resource scheduling

### glance

Image service component

- **Deployment**: default-glance
- **Pod**: default-glance-xxx
- **Features**: Image management

### baremetal

Physical machine management service component

- **Deployment**: default-baremetal
- **Pod**: default-baremetal-xxx
- **Features**:
- Provide bare metal management agent
- Provide PXEboot
- Provide DHCP

### host

Host service component

- **Pod**: default-host-xxx
- **Daemonset**: default-host
- **Features**: Agent on private cloud host
- **Container**: Under the host service, there are three containers: `host`, `ovn-controller`, and`sdnagent`
- host:
- Virtual machine lifecycle management
- Enable and disable virtual machines through qemu
- Perform other operations on virtual machines through qemu monitor
- Storage management and disk lifecycle management
- CURD operations for local disk and shared storage (Ceph, NFS, etc.) disk
- Storage information detection
- DHCP Server
- As a DHCP Server to assign IP addresses to virtual machines
- As a DHCP relay server forwarding DHCP requests when physical machines PXE boot
- GPU device detection and initialization
- Bind GPU devices with VFIO driver and register them to the cloud platform
- Host initialization and information detection
- Monitoring data collection- ovn-controller: Manages virtual machine VPC networks, connects to the southbound, and converts flows in the southbound to OVS flow table rules.
- sdnagent: Manages virtual machine classic networks.
- Flow table management
- Virtual machine NIC QoS
- Firewall

### host-image

- **Pod**: default-host-image-xxx
- **Function**: Provides API for reading image content, which can be remotely mounted with `fuse`.

### host-deployer

- **Pod**: default-host-deployer-xxx
- **Function**: Performs relevant operations for virtual machine deployment:
- Identification and initialization of virtual machine image operating system.
- Partition extension, file system formatting, etc.

### vpcagent

- **Deployment**: default-vpcagent
- **Pod**: default-vpcagent-xxx
- **Function**: Manages VPC configurations for `ovn`

### esxiagent

VMware Management Agent

- **Deployment**: default-esxiagent
- **Pod**: default-esxiagent-xxx
- **Function**: Agent for VMware management.

### cloudmon

Monitoring and collection service

- **Deployment**: default-cloudmon
- **Pod**: default-cloudmon-xxx
- **Function**:
- Ping detection: probes IP addresses that are occupied every 5 minutes.
- Usage data collection
- Monitoring data collection for VMware, OpenStack, public cloud platforms, etc.

### monitor

Monitoring and query service

- **Deployment**: default-monitor
- **Pod**: default-monitor-xxx
- **Function**: Responsible for monitoring query and alarm functions.