Kubernetes Submit Queue
25de8ef641
Merge pull request #40551 from juanvallejo/jvallejo/only-output-no-resources-found-for-human-readable-printer
...
Automatic merge from submit-queue (batch tested with PRs 40691, 40551, 40683, 40700, 40702)
only output "No resources found." for human readable printers
**Release note**:
```release-note
release note none
```
This patch removes the message `No resources found` (currently printed through stderr) when printing through a generic / non-human-readable printer (json, yaml, jsonpath, custom-columns).
**Before***
```
$ kubectl get pods -o json
No resources found.
{
"apiVersion": "v1",
"items": [],
"kind": "List",
"metadata": {},
"resourceVersion": "",
"selfLink": ""
}
```
**After**
```
$ kubectl get pods -o json
{
"apiVersion": "v1",
"items": [],
"kind": "List",
"metadata": {},
"resourceVersion": "",
"selfLink": ""
}
```
cc @fabianofranz @stevekuznetsov
2017-01-30 19:14:41 -08:00
Kubernetes Submit Queue
2623f7c456
Merge pull request #40549 from jessfraz/40433-reenable-cascading-deployment
...
Automatic merge from submit-queue
re-enable cascading deployment
I couldn't reproduce #40433 locally sooo trying on the test infra to make sure I'm not crazy
2017-01-29 23:51:27 -08:00
juanvallejo
5ec2a4c3ca
only output "No resources found." for human readable printers
2017-01-27 13:30:23 -05:00
Jordan Liggitt
17168aaacc
Test generic operations with thirdpartyresources
2017-01-26 19:59:27 -05:00
Jess Frazelle
00cdc06103
re-enable cascading deployment
...
Signed-off-by: Jess Frazelle <acidburn@google.com>
2017-01-26 12:51:11 -08:00
Jordan Liggitt
5676b9a252
Temporarily disable cascading deployment delete in test-cmd-util.sh
...
Re-enabling tracked in https://github.com/kubernetes/kubernetes/issues/40433
2017-01-25 13:34:16 -05:00
Jordan Liggitt
903787ab2c
Tolerate existing kubernetes service in test-cmd.sh
2017-01-25 13:34:16 -05:00
Jordan Liggitt
d47f898500
Re-enable test-cmd.sh tests
2017-01-25 13:34:16 -05:00
Zihong Zheng
6b9860cf54
Allows kubectl create -f to filter by selector.
2017-01-17 19:18:51 -08:00
Michail Kargakis
9c820a5793
kubectl: fix rollback dryrun when version is not specified
2017-01-17 12:01:09 +01:00
Andy Goldstein
cb39d0d811
Fix expected error text
2017-01-13 16:58:16 -05:00
Andy Goldstein
613ada4cd7
Fix kubectl get -f <file> -o <nondefault printer>
...
Fix kubectl get -f <file> -o <nondefault printer> so it prints all the
objects in the file, instead of just the first one. Also add a test for
this feature.
2017-01-11 10:30:13 -05:00
Andy Goldstein
80c5cd8b88
Allow missing keys in templates by default
...
Switch to allowing missing keys in jsonpath templates by default.
Add support for allowing/disallowing missing keys in go templates
(default=allow).
Add --allow-missing-template-keys flag to control this behavior
(default=true / allow missing keys).
2017-01-09 10:35:46 -05:00
nikhiljindal
5424d50c03
Adding test-federation-cmd.sh to test kubectl with federation apiserver
2017-01-04 11:17:05 -08:00