We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 789095e commit 3a51cb8Copy full SHA for 3a51cb8
tools/api_tools/api_explore.sh
@@ -118,9 +118,16 @@ ${K8SC} -n "${NAMESPACE}" get secret "${SECRET}" -o json | jq -Mr '.data["ca.crt
118
APISERVER=https://$("${K8SC}" -n default get endpoints kubernetes --no-headers | awk '{ print $2 }')
119
120
### Test API
121
-echo "---Test API---"
122
-${K8SC} "/openapi/v2"
123
+echo "---Test API (v2)---"
+${K8SC} get --raw "/openapi/v2"
124
+echo "---Test API (v3)---"
125
+${K8SC} get --raw "/openapi/v3"
126
127
128
+${K8SC} get --raw "/openapi/v3/apis/nbde.openshift.io/v1alpha1"
129
+echo
130
131
132
### Extract logs from pod
133
echo "---Extract logs from pod---"
0 commit comments