Uh oh!
There was an error while loading. Please reload this page.
Include external config - #758
Conversation
rseymour
commented
Dec 26, 2014
We already have a solid use case for this functionality (combined with --no-recreate) where we have an etl fig setup that prepares docs to load into an elasticsearch cluster, and an app fig that has an elasticsearch that it is setup to read from. The app fig (which is 4 containers or so) can run independently of the ETL fig setup. Fire up the ETL containers, process some data, shut them down, and the app now has the data brought into it. Very cool imho. |
… adding includes. Signed-off-by: Daniel Nephin <dnephin@gmail.com>
Signed-off-by: Daniel Nephin <dnephin@gmail.com>
Signed-off-by: Daniel Nephin <dnephin@yelp.com>
c29e80b to
5b82cddComparednephin
commented
Dec 31, 2014
aanand
commented
Jan 2, 2015
OK, just had a read over. Promising stuff. Thoughts, in decreasing order of (aha) import:
|
dnephin
commented
Jan 2, 2015
Thanks for the feedback!
|
Signed-off-by: Daniel Nephin <dnephin@yelp.com>
64cfb53 to
b31f9a2CompareThere was a problem hiding this comment.
Does this handle files in local directories? If not, it would be great if it did :)
There was a problem hiding this comment.
Yup, I believe that relative paths were working.
I should say that this implementation will probably change quite a bit. It was more of a proof-of-concept
sdake
commented
May 6, 2015
@dnephin reviewed this patch looks solid - although needs a rebase. Can we have this in master soon? :) |
zaneb
commented
May 6, 2015
Code looks good to me. |
omerzimp
commented
May 12, 2015
+1 on needing to rebase this. |
scottbelden
commented
Jun 30, 2015
Any progress on trying to rebase this and get it in? Would love to be able to use this. |
dnephin
commented
Jul 3, 2015
@scottbelden Not yet, it still needs a lot of work, and probably the removal of some features for an initial release. I think I might try and extract this code as a separate tool that can be used to pipe to stdin once #1488 is merged. Once that's ready, I'll leave a comment in this PR. |
dnephin
commented
Jul 31, 2015
I've implemented this as an external pre-processing tool at https://github.com/dnephin/compose-addons#dcao-include If anyone is interested, please check out the docs. Any feedback can be contributed by opening an issue on that repo (and would be appreciated). |
http probe - fix how the tls phase is calculated
Resolves#318
Adds support for including other
fig.ymlfiles by url (or relative path).Requires an additional
fig.ymlkey ofproject-configto support additional configuration. I would see this being used for things like project name as well.Feedback welcome