Bug 1923054
Summary: | oc returns an error while using -o jsonpath when there is no resource found in the namespace | ||
---|---|---|---|
Product: | OpenShift Container Platform | Reporter: | Maciej Szulik <maszulik> |
Component: | oc | Assignee: | Maciej Szulik <maszulik> |
Status: | CLOSED ERRATA | QA Contact: | RamaKasturi <knarra> |
Severity: | medium | Docs Contact: | |
Priority: | medium | ||
Version: | 4.6 | CC: | aos-bugs, jokerman, knarra, mfojtik, yhe |
Target Milestone: | --- | ||
Target Release: | 4.6.z | ||
Hardware: | Unspecified | ||
OS: | Unspecified | ||
Whiteboard: | |||
Fixed In Version: | Doc Type: | No Doc Update | |
Doc Text: | Story Points: | --- | |
Clone Of: | Environment: | ||
Last Closed: | 2021-02-22 13:54:57 UTC | Type: | --- |
Regression: | --- | Mount Type: | --- |
Documentation: | --- | CRM: | |
Verified Versions: | Category: | --- | |
oVirt Team: | --- | RHEL 7.3 requirements from Atomic Host: | |
Cloudforms Team: | --- | Target Upstream Version: | |
Embargoed: | |||
Bug Depends On: | 1922573 | ||
Bug Blocks: |
Description
Maciej Szulik
2021-02-01 10:50:11 UTC
PR in the queue. Make the oc with the related PR , the issue has fixed: [root@dhcp-140-138 oc]# ./oc version Client Version: 4.6.0-20210207 Server Version: 4.7.0-0.nightly-2021-02-03-165316 Kubernetes Version: v1.20.0+e761892 [root@dhcp-140-138 oc]# ./oc get pod -o jsonpath='{range .items[*]}{.metadata.name}{"\n"}{end}' [root@dhcp-140-138 oc]# echo $? 0 Compared with the oc without the pr , could still reproduce the issue: [root@dhcp-140-138 oc]# oc version --client Client Version: 4.6.0-202102050644.p0-e12ee36 [root@dhcp-140-138 oc]# oc get pod -o jsonpath='{range .items[*]}{.metadata.name}{"\n"}{end}' error: error executing jsonpath "{range .items[*]}{.metadata.name}{\"\\n\"}{end}": Error executing template: not in range, nothing to end. Printing more information for debugging the template: template was: {range .items[*]}{.metadata.name}{"\n"}{end} object given to jsonpath engine was: map[string]interface {}{"apiVersion":"v1", "items":[]interface {}{}, "kind":"List", "metadata":map[string]interface {}{"resourceVersion":"", "selfLink":""}} Verified with the latest payload below and i see that the issue has fixed. [knarra@knarra openshift-client-linux-4.6.0-0.nightly-2021-02-12-054943]$ ./oc version -o yaml clientVersion: buildDate: "2021-02-12T03:16:13Z" compiler: gc gitCommit: aaa9ca377e9816a2501ce3f5dda3f889618b6a37 gitTreeState: clean gitVersion: 4.6.0-202102120217.p0-aaa9ca3 goVersion: go1.15.5 major: "" minor: "" platform: linux/amd64 openshiftVersion: 4.6.0-0.nightly-2021-02-12-073026 releaseClientVersion: 4.6.0-0.nightly-2021-02-12-054943 serverVersion: buildDate: "2021-02-11T22:10:37Z" compiler: gc gitCommit: f173eb4a83e55734ee6808a1ed7674be9a4cd0bf gitTreeState: clean gitVersion: v1.19.0+f173eb4 goVersion: go1.15.5 major: "1" minor: "19" platform: linux/amd64 [knarra@knarra openshift-client-linux-4.6.0-0.nightly-2021-02-12-054943]$ ./oc get pod -o jsonpath='{range .items[*]}{.metadata.name}{"\n"}{end}' [knarra@knarra openshift-client-linux-4.6.0-0.nightly-2021-02-12-054943]$ with older version of oc(4.6.8), the issue is reproducible: ============================================================ [knarra@knarra openshift-client-linux-4.6.8]$ ./oc get pod -o jsonpath='{range .items[*]}{.metadata.name}{"\n"}{end}' error: error executing jsonpath "{range .items[*]}{.metadata.name}{\"\\n\"}{end}": Error executing template: not in range, nothing to end. Printing more information for debugging the template: template was: {range .items[*]}{.metadata.name}{"\n"}{end} object given to jsonpath engine was: map[string]interface {}{"apiVersion":"v1", "items":[]interface {}{}, "kind":"List", "metadata":map[string]interface {}{"resourceVersion":"", "selfLink":""}} Based on the above moving bug to verified state. Since the problem described in this bug report should be resolved in a recent advisory, it has been closed with a resolution of ERRATA. For information on the advisory (OpenShift Container Platform 4.6.18 bug fix update), and where to find the updated files, follow the link below. If the solution does not work for you, open a new bug report. https://access.redhat.com/errata/RHBA-2021:0510 |