You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Every command seems to print the namespace and version info. This makes it difficult to find the output that I care about. For example, here is the output for the operator set command:
% bin/kubectl-rook-ceph operator set foo bar
Info: CephCluster namespace: "rook-ceph"
Info: Rook operator namespace: "rook-ceph"
rook: v1.11.0-alpha.0.410.g97bf52d76
go: go1.19.7
Warning: rook version 'rook: v1.11.0-alpha.0.410.g97bf52d76
go: go1.19.7
' is running a pre-release version of Rook.
Info: configmap/rook-ceph-operator-config patched
I would expect output to only include the warning and then the related output:
% bin/kubectl-rook-ceph operator set foo bar
Warning: rook version 'rook: v1.11.0-alpha.0.410.g97bf52d76' is running a pre-release version of Rook.
Info: configmap/rook-ceph-operator-config patched
The text was updated successfully, but these errors were encountered:
there was extra `fmt.Print()` in method `RunCommandInOperatorPod`
due to which command output was printed two times.
fixes: rook#118
Signed-off-by: subhamkrai <srai@redhat.com>
subhamkrai
added a commit
to subhamkrai/kubectl-rook-ceph
that referenced
this issue
Jun 14, 2023
there was extra `fmt.Print()` in method `RunCommandInOperatorPod`
due to which command output was printed two times.
fixes: rook#118
Signed-off-by: subhamkrai <srai@redhat.com>
Every command seems to print the namespace and version info. This makes it difficult to find the output that I care about. For example, here is the output for the
operator set
command:I would expect output to only include the warning and then the related output:
The text was updated successfully, but these errors were encountered: