-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[ISSUE-635] Support WBT disabling (#103)
Signed-off-by: safronovD <danil_safronov@dell.com>
- Loading branch information
Showing
3 changed files
with
49 additions
and
1 deletion.
There are no files selected for viewing
29 changes: 29 additions & 0 deletions
29
charts/csi-baremetal-deployment/templates/configmap/node-config.yaml
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,29 @@ | ||
apiVersion: v1 | ||
kind: ConfigMap | ||
metadata: | ||
namespace: {{ .Release.Namespace }} | ||
name: node-config | ||
labels: | ||
app: csi-baremetal-node | ||
data: | ||
wbt-config.yaml: |- | ||
enable: true | ||
wbt_lat_usec_value: 0 | ||
acceptable_volume_options: | ||
# Values - FS, RAW, RAWPART | ||
# Block volumes don't take any impact from WBT | ||
modes: | ||
- FS | ||
# Name from "kubectl get sc" | ||
# It is risky to change WBT settings for LVG Volumes | ||
storage_classes: | ||
- csi-baremetal-sc-hdd | ||
- csi-baremetal-sc-ssd | ||
- csi-baremetal-sc-nvme | ||
wbt-acceptable_kernels.yaml: |- | ||
enable_for_all: false | ||
# The list of acceptable kernel versions | ||
# Used only if enable_for_all is false | ||
node_kernel_versions: | ||
# RHEL 8 | ||
- 4.18.0-193.65.2.el8_2.x86_64 |
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