feat(k8s): support for yaml/json imports

This commit is contained in:
Jaka Hudoklin 2019-04-05 20:27:47 +02:00
parent db5ee88274
commit 5e29229879
No known key found for this signature in database
GPG key ID: 916062A1C4748647
5 changed files with 104 additions and 20 deletions

13
tests/k8s/pod.json Normal file
View file

@ -0,0 +1,13 @@
{
"kind": "Pod",
"apiVersion": "v1",
"metadata": {
"name": "test"
},
"spec": {
"containers": [{
"name": "test",
"image": "busybox"
}]
}
}