Update dep for compose 3.5+ (#1120)

* Update vendor packages

* Support compose 3.5+ versions
This commit is contained in:
Hang Yan
2019-03-26 11:44:26 -04:00
committed by Charlie Drage
parent 1ef535a261
commit 06468b2f63
192 changed files with 20023 additions and 6429 deletions
+14
View File
@@ -0,0 +1,14 @@
version: "3.5"
services:
helloworld:
image: tutum/hello-world
ports:
- 80:80
networks:
- helloworld-network
networks:
helloworld-network:
name: helloworld-network
+80
View File
@@ -0,0 +1,80 @@
{
"kind": "List",
"apiVersion": "v1",
"metadata": {},
"items": [
{
"kind": "Service",
"apiVersion": "v1",
"metadata": {
"name": "helloworld",
"creationTimestamp": null,
"labels": {
"io.kompose.service": "helloworld"
},
"annotations": {
"kompose.cmd": "%CMD%",
"kompose.version": "%VERSION%"
}
},
"spec": {
"ports": [
{
"name": "80",
"port": 80,
"targetPort": 80
}
],
"selector": {
"io.kompose.service": "helloworld"
}
},
"status": {
"loadBalancer": {}
}
},
{
"kind": "Deployment",
"apiVersion": "extensions/v1beta1",
"metadata": {
"name": "helloworld",
"creationTimestamp": null,
"labels": {
"io.kompose.service": "helloworld"
},
"annotations": {
"kompose.cmd": "%CMD%",
"kompose.version": "%VERSION%"
}
},
"spec": {
"replicas": 1,
"template": {
"metadata": {
"creationTimestamp": null,
"labels": {
"io.kompose.service": "helloworld"
}
},
"spec": {
"containers": [
{
"name": "helloworld",
"image": "tutum/hello-world",
"ports": [
{
"containerPort": 80
}
],
"resources": {}
}
],
"restartPolicy": "Always"
}
},
"strategy": {}
},
"status": {}
}
]
}