forked from hwameistor/hwameistor
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: windsonsea <haifeng.yao@daocloud.io>
- Loading branch information
1 parent
58d2025
commit 68f912f
Showing
167 changed files
with
292 additions
and
317 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
--- | ||
sidebar_position: 4 | ||
sidebar_position: 11 | ||
sidebar_label: "APIs" | ||
--- | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
{ | ||
"label": "Use Cases", | ||
"position": 5, | ||
"link" : { | ||
"type": "generated-index", | ||
"description": "In this section, we will introduce different use cases:" | ||
} | ||
{ | ||
"label": "Applications", | ||
"position": 8, | ||
"link" : { | ||
"type": "generated-index", | ||
"description": "In this section, we will describe the application usage in HwameiStor:" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
--- | ||
sidebar_position: 2 | ||
sidebar_label: "Use Disk Volume" | ||
--- | ||
|
||
# Use Disk Volume | ||
|
||
HwameiStor provides another type of data volume known as raw disk data volume. | ||
This volume is based on the raw disk present on the node and can be directly mounted for container use. | ||
As a result, this type of data volume offers more efficient data read and write performance, | ||
thereby fully unleashing the performance of the disk. | ||
|
||
Create a nginx application and use `hwameistor-disk-volume` volume using the following command: | ||
|
||
```console | ||
$ cat << EOF | kubectl apply -f - | ||
apiVersion: v1 | ||
kind: Pod | ||
metadata: | ||
name: nginx | ||
namespace: default | ||
spec: | ||
containers: | ||
- name: nginx | ||
image: docker.io/library/nginx:latest | ||
imagePullPolicy: IfNotPresent | ||
volumeMounts: | ||
- name: data | ||
mountPath: /data | ||
ports: | ||
- containerPort: 80 | ||
volumes: | ||
- name: data | ||
persistentVolumeClaim: | ||
claimName: hwameistor-disk-volume | ||
EOF | ||
``` | ||
|
||
|
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
--- | ||
sidebar_position: 1 | ||
sidebar_label: "LVM Volume" | ||
--- | ||
|
||
# Use LVM Volume | ||
|
||
HwameiStor provides LVM-based data volumes, | ||
which offer read and write performance comparable to that of native disks. | ||
These data volumes also provide advanced features such as data volume expansion, migration, high availability, and more. | ||
|
||
Create a nginx application and use `hwameistor-lvm-volume` volume using the following command: | ||
|
||
```console | ||
$ cat << EOF | kubectl apply -f - | ||
apiVersion: v1 | ||
kind: Pod | ||
metadata: | ||
name: nginx | ||
namespace: default | ||
spec: | ||
containers: | ||
- name: nginx | ||
image: docker.io/library/nginx:latest | ||
imagePullPolicy: IfNotPresent | ||
volumeMounts: | ||
- name: data | ||
mountPath: /data | ||
ports: | ||
- containerPort: 80 | ||
volumes: | ||
- name: data | ||
persistentVolumeClaim: | ||
claimName: hwameistor-lvm-volume | ||
EOF | ||
``` |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
--- | ||
sidebar_position: 7 | ||
sidebar_position: 15 | ||
sidebar_label: "Community" | ||
--- | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
--- | ||
sidebar_position: 8 | ||
sidebar_position: 12 | ||
sidebar_label: "FAQs" | ||
--- | ||
|
||
|
4 changes: 2 additions & 2 deletions
4
..._start/advanced_features/fast_failover.md → docs/docs/fast_failover.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion
2
.../docs/quick_start/install/_category_.json → docs/docs/install/_category_.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
2 changes: 1 addition & 1 deletion
2
docs/docs/quick_start/uninstall.md → docs/docs/install/uninstall.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
--- | ||
sidebar_position: 4 | ||
sidebar_position: 5 | ||
sidebar_label: "Uninstall" | ||
--- | ||
|
||
|
2 changes: 1 addition & 1 deletion
2
...docs/architecture/modules/_category_.json → docs/docs/modules/_category_.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
docs/docs/architecture/modules/evictor.md → docs/docs/modules/evictor.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
--- | ||
sidebar_position: 5 | ||
sidebar_position: 6 | ||
sidebar_label: "Evictor" | ||
--- | ||
|
||
|
4 changes: 2 additions & 2 deletions
4
docs/docs/architecture/modules/exporter.md → docs/docs/modules/exporter.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
--- | ||
sidebar_position: 6 | ||
sidebar_position: 7 | ||
sidebar_label: "Exporter" | ||
--- | ||
|
||
# Exporter | ||
|
||
Exporter is HwameiStor's metrics server which will collect the metrics for the system resources, such as Disk, Volumes, Operations, etc.., and supply for the Prometheus module. | ||
Exporter is HwameiStor's metrics server which will collect the metrics for the system resources, such as Disk, Volumes, Operations, etc.., and supply for the Prometheus module. |
4 changes: 2 additions & 2 deletions
4
docs/docs/architecture/modules/gui.md → docs/docs/modules/gui.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
--- | ||
sidebar_position: 7 | ||
sidebar_position: 8 | ||
sidebar_label: "GUI" | ||
--- | ||
|
||
# GUI | ||
|
||
HwameiStor has a module for Graph User Interface. It will provide users with an easy way to manage the HwameiStor system. The GUI can be deployed by the Operator. | ||
HwameiStor has a module for Graph User Interface. It will provide users with an easy way to manage the HwameiStor system. The GUI can be deployed by the Operator. |
4 changes: 2 additions & 2 deletions
4
...cs/architecture/modules/lda_controller.md → docs/docs/modules/lda_controller.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
docs/docs/architecture/modules/scheduler.md → docs/docs/modules/scheduler.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
--- | ||
sidebar_position: 3 | ||
sidebar_position: 4 | ||
sidebar_label: "Scheduler" | ||
--- | ||
|
||
|
14 changes: 7 additions & 7 deletions
14
docs/docs/quick_start/_category_.json → docs/docs/nodes_and_disks/_category_.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
{ | ||
"label": "Quick Start", | ||
"position": 2, | ||
"link" : { | ||
"type": "generated-index", | ||
"description": "In this section, we will provide some guides to help you quickly get started with HwameiStor:" | ||
} | ||
{ | ||
"label": "Nodes and Disks", | ||
"position": 5, | ||
"link" : { | ||
"type": "generated-index", | ||
"description": "In this section, we will provide some guides about nodes and disks:" | ||
} | ||
} |
2 changes: 1 addition & 1 deletion
2
...start/advanced_features/disk_expansion.md → docs/docs/nodes_and_disks/disk_expansion.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
--- | ||
sidebar_position: 2 | ||
sidebar_position: 4 | ||
sidebar_label: "Disk Expansion" | ||
--- | ||
|
||
|
2 changes: 1 addition & 1 deletion
2
...es_and_nodes/node_expansion/disk_nodes.md → docs/docs/nodes_and_disks/disk_nodes.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
--- | ||
sidebar_position: 2 | ||
sidebar_position: 3 | ||
sidebar_label: "Disk Storage Node" | ||
--- | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...start/advanced_features/node_expansion.md → docs/docs/nodes_and_disks/node_expansion.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
--- | ||
sidebar_position: 1 | ||
sidebar_position: 2 | ||
sidebar_label: "Node Expansion" | ||
--- | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
--- | ||
sidebar_position: 2 | ||
sidebar_label: "Architecture" | ||
--- | ||
|
||
# Architecture | ||
|
||
HwameiStor is an HA local storage system for cloud-native stateful workloads. | ||
|
||
![System architecture](img/architecture.png) |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
8 changes: 0 additions & 8 deletions
8
docs/docs/quick_start/create_stateful/advanced/_category_.json
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
{ | ||
"label": "StorageClass", | ||
"position": 6, | ||
"link" : { | ||
"type": "generated-index", | ||
"description": "In this section, we will introduce StorageClass:" | ||
} | ||
} |
Oops, something went wrong.