cleanup remaining kubectl shorthand -o flags (#394)

* Cleanup remaining kubectl shorthand -o flags

* cleanup remaining kubectl shorthand -o flags

* cleanup remaining kubectl shorthand -o flags

* cleanup remaining kubectl shorthand -o flags
This commit is contained in:
RichieEscarez 2018-09-12 10:46:16 -07:00 committed by Knative Prow Robot
parent b2254cbb42
commit 0304e7a85c
4 changed files with 4 additions and 4 deletions

View File

@ -130,7 +130,7 @@ kubectl apply --filename auth.yaml
1. Check that your service is running using: 1. Check that your service is running using:
```shell ```shell
kubectl get ksvc -o "custom-columns=NAME:.metadata.name,READY:.status.conditions[2].status,REASON:.status.conditions[2].message" kubectl get ksvc --output "custom-columns=NAME:.metadata.name,READY:.status.conditions[2].status,REASON:.status.conditions[2].message"
NAME READY REASON NAME READY REASON
legit True <none> legit True <none>
``` ```

View File

@ -103,7 +103,7 @@ service "gitwebhook" created
```shell ```shell
$ kubectl get ksvc gitwebhook \ $ kubectl get ksvc gitwebhook \
-o=custom-columns=NAME:.metadata.name,DOMAIN:.status.domain --output=custom-columns=NAME:.metadata.name,DOMAIN:.status.domain
NAME DOMAIN NAME DOMAIN
gitwebhook gitwebhook.default.example.com gitwebhook gitwebhook.default.example.com

View File

@ -139,7 +139,7 @@ corresponding URIs. You should get the same results as directly accessing these
* Get the ingress IP: * Get the ingress IP:
``` ```
export GATEWAY_IP=`kubectl get svc knative-ingressgateway --namespace istio-system \ export GATEWAY_IP=`kubectl get svc knative-ingressgateway --namespace istio-system \
-o jsonpath="{.status.loadBalancer.ingress[*]['ip']}"` --output jsonpath="{.status.loadBalancer.ingress[*]['ip']}"`
``` ```
* Send a request to the Search service: * Send a request to the Search service:

View File

@ -38,7 +38,7 @@ kubectl get route --output yaml
``` ```
export SERVICE_HOST=`kubectl get route stock-route-example --output jsonpath="{.status.domain}"` export SERVICE_HOST=`kubectl get route stock-route-example --output jsonpath="{.status.domain}"`
export SERVICE_IP=`kubectl get svc knative-ingressgateway --namespace istio-system \ export SERVICE_IP=`kubectl get svc knative-ingressgateway --namespace istio-system \
-o jsonpath="{.status.loadBalancer.ingress[*].ip}"` --output jsonpath="{.status.loadBalancer.ingress[*].ip}"`
``` ```
* Make a request to the index endpoint: * Make a request to the index endpoint: