1. Portworx Enterprise Documentation
"Upgrade Portworx on Kubernetes using the Operator": In the section "Verify the Portworx upgrade
" the documentation explicitly instructs the administrator to use kubectl: "Verify that all Portworx pods are running the upgraded version... You can verify this by running the kubectl get storagenodes -n kube-system command and looking at the VERSION column."
2. Portworx Enterprise Documentation
"Monitor Portworx on Kubernetes": In the section "Monitor Portworx components
" the documentation states: "The Portworx Operator creates StorageNode and StorageCluster objects... You can view the status of your storage nodes by running the kubectl get storagenodes command." This reinforces that querying the StorageNode CRD is the standard monitoring and verification procedure.
3. Kubernetes Documentation
"Custom Resources": This documentation explains the concept of Custom Resource Definitions (CRDs) and how kubectl is the standard tool for interacting with these resources. The StorageNode object is a CRD installed by Portworx
making kubectl get storagenodes the correct
Kubernetes-native interaction pattern.