From ed649db82ac0da7af2e31215b4c3ce964904b826 Mon Sep 17 00:00:00 2001 From: Ryan Howe Date: Mon, 15 Apr 2019 15:12:55 -0400 Subject: [PATCH] docs: Fix example to catch up to https://github.com/openshift/api/pull/153 Fixing example command that extracts the current update image from the ClusterVersion object to match chnages to the api --- docs/dev/clusterversion.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/dev/clusterversion.md b/docs/dev/clusterversion.md index e4b52fd1d5..19e6fe29a5 100644 --- a/docs/dev/clusterversion.md +++ b/docs/dev/clusterversion.md @@ -8,7 +8,7 @@ This object is used by the administrator to declare their target cluster state, You can extract the current update image from the `ClusterVersion` object: ```console -$ oc get clusterversion -o jsonpath='{.status.current.image}{"\n"}' version +$ oc get clusterversion -o jsonpath='{.status.desired.image}{"\n"}' version registry.svc.ci.openshift.org/openshift/origin-release@sha256:c1f11884c72458ffe91708a4f85283d591b42483c2325c3d379c3d32c6ac6833 ```