Closed
Description
Follow-up #79 (comment):
image
is a required field in Kubernetes and without it the generated file can't be used.
From compose spec, v1 doesn't allow image
being specified with build
, and v2 allows you to do that but the image
will be built from build
.
We can print an error when we see build
in the compose file. Would love to hear more thoughts.
Activity
surajssd commentedon Aug 6, 2016
With Kubernetes:
image
is must, until we come up with a build storyWith OpenShift:
build
given we can createbuildconfig
image
given well and goodcc: @kadel
ngtuna commentedon Aug 10, 2016
Currently there is an unsupported key message if we see
build
in the compose file.@surajssd : while working on the issue #92 of having
image
andbuild
in the same compose service, you can also add a check for required fields likeimage
ngtuna commentedon Oct 10, 2016
Closed via #195