-
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.
[docs] Add docs for local-csi-node-watcher controller (#38)
Signed-off-by: Viktor Kramarenko <[email protected]> Signed-off-by: Aleksandr Zimin <[email protected]> Co-authored-by: Aleksandr Zimin <[email protected]>
- Loading branch information
1 parent
3bd925f
commit 474dcde
Showing
6 changed files
with
796 additions
and
257 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 |
---|---|---|
@@ -0,0 +1,61 @@ | ||
spec: | ||
versions: | ||
- name: v1alpha1 | ||
schema: | ||
openAPIV3Schema: | ||
description: | | ||
LocalStorageClass - это пользовательский ресурс Kubernetes, который определяет конфигурацию для Kubernetes Storage Class. | ||
properties: | ||
spec: | ||
description: | | ||
Описывает конфигурацию Kubernetes Storage Class. | ||
properties: | ||
isDefault: | ||
description: | | ||
Следует ли использовать данный Storage class по умолчанию. | ||
> Обратите внимание, что false является значением по умолчанию. | ||
reclaimPolicy: | ||
description: | | ||
Reclaim policy данного storage class'а. Может быть: | ||
- Delete (При удалении Persistent Volume Claim также удаляются Persistent Volume и связанное хранилище) | ||
- Retain (При удалении Persistent Volume Claim остаются Persistent Volume и связанное хранилище) | ||
volumeBindingMode: | ||
description: | | ||
Binding mode для данного Storage class'а. Может быть: | ||
- Immediate (создает PV сразу же, как будет создан PVC) | ||
- WaitForFirstConsumer (создает PV только после того, как будет создан Pod для PVC) | ||
lvm: | ||
description: | | ||
Поле описывает конфигурацию LVM. | ||
properties: | ||
type: | ||
description: | | ||
Тип девайса. | ||
lvmVolumeGroups: | ||
description: | | ||
LVMVolumeGroup ресурсы, на которых будут размещены Persistent Volume. | ||
items: | ||
properties: | ||
name: | ||
description: | | ||
Имя LVMVolumeGroup ресурса. | ||
thin: | ||
description: | | ||
Thin pool в выбранном LVMVolumeGroup ресурсе. | ||
properties: | ||
poolName: | ||
description: | | ||
Имя выбранного Thin pool. | ||
status: | ||
description: | | ||
Описывает текущую информацию о соответствующем Storage Class. | ||
properties: | ||
phase: | ||
description: | | ||
Текущее состояние Storage class. Может быть: | ||
- Failed (в случае, если контроллер получил некорректную конфигурацию, или возникли ошибки в ходе выполнения операций) | ||
- Create (если все операции завершились успешно) | ||
reason: | ||
description: | | ||
Дополнительная информация о состоянии Storage Class. |
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
Oops, something went wrong.