Bug 1734046

Summary: Incorrect use of df -hk command
Product: [Red Hat Storage] Red Hat Gluster Storage Reporter: DzungDo <ddo>
Component: doc-Container_Native_Storage_with_OpenShiftAssignee: Agil Antony <agantony>
Status: CLOSED CURRENTRELEASE QA Contact: Sayalee <saraut>
Severity: medium Docs Contact:
Priority: medium    
Version: ocs-3.11CC: agantony, asriram, pprakash, puebele, rhs-bugs, storage-doc
Target Milestone: ---Keywords: ZStream
Target Release: OCS 3.11.z Async   
Hardware: Unspecified   
OS: Unspecified   
Whiteboard:
Fixed In Version: Doc Type: If docs needed, set a value
Doc Text:
Story Points: ---
Clone Of: Environment:
Last Closed: 2021-01-05 06:50:49 UTC Type: Bug
Regression: --- Mount Type: ---
Documentation: --- CRM:
Verified Versions: Category: ---
oVirt Team: --- RHEL 7.3 requirements from Atomic Host:
Cloudforms Team: --- Target Upstream Version:
Embargoed:

Description DzungDo 2019-07-29 14:04:34 UTC
Description of problem:

https://access.redhat.com/documentation/en-us/red_hat_openshift_container_storage/3.11/html-single/deployment_guide/index

Command used in documentation:
# df -kh | grep -v ^Filesystem | awk '{if($5>"90%") print $0}'

This command will give all values of anything 90%+ or 9%+

Suggestion:

Change syntax to:
# df -kh | grep -v ^Filesystem | awk '{if(int($5)>90) print $0}'


Version-Release number of selected component (if applicable):


How reproducible:


Steps to Reproduce:
1.
2.
3.

Actual results:


Expected results:


Additional info: