From 047698d1d7f9ba6012fc5ff4cddb58a519ba7ead Mon Sep 17 00:00:00 2001 From: Eric Nothen Date: Tue, 12 May 2026 10:12:43 +0200 Subject: [PATCH] Fixed command to get ClusterPolicy Filter part of the command to get the ClusterPolicy was broken (opening 2 brackets but closing 3) Signed-off-by: Eric Nothen --- openshift/install-gpu-ocp.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openshift/install-gpu-ocp.rst b/openshift/install-gpu-ocp.rst index 126c5534b..19e098b2d 100644 --- a/openshift/install-gpu-ocp.rst +++ b/openshift/install-gpu-ocp.rst @@ -225,7 +225,7 @@ Create the cluster policy using the CLI .. code-block:: console - $ oc get csv -n nvidia-gpu-operator $STARTING_CSV -o jsonpath='{.metadata.annotations.alm-examples}' | jq -r 'map(select(.kind == "ClusterPolicy")) | .[0]') > clusterpolicy.json + $ oc get csv -n nvidia-gpu-operator $STARTING_CSV -o jsonpath='{.metadata.annotations.alm-examples}' | jq -r 'map(select(.kind == "ClusterPolicy")) | .[0]' > clusterpolicy.json .. note:: $STARTING_CSV is the value of the ``startingCSV`` field in the ``Subscription`` CR sample created in the :ref:`install-gpu-ocp` section.