Skip to content

Commit 4836b0a

Browse files
authored
Merge pull request moby#33129 from vieux/builder-report-2017-05-07
Add dev report for may 8th
2 parents 6efdac4 + 1397a49 commit 4836b0a

File tree

3 files changed

+92
-1
lines changed

3 files changed

+92
-1
lines changed

reports/2017-05-01.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ We are almost done, it should be merged soon.
2222

2323
Slack works great for synchronous communication, but we need to place for async discussion. A mailing list is currently being setup.
2424

25-
#### Find a good and non-confusing home for the remaining monolith
25+
### Find a good and non-confusing home for the remaining monolith
2626

2727
Lots of discussion and progress made on this topic, see [here](https://github.com/moby/moby/issues/32871). The work will start this week.
2828

reports/2017-05-08.md

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
# Development Report for May 08, 2017
2+
3+
## Daily Meeting
4+
5+
A daily meeting is hosted on [slack](https://dockercommunity.slack.com) every business day at 9am PST on the channel `#moby-project`.
6+
During this meeting, we are talking about the [tasks](https://github.com/moby/moby/issues/32867) needed to be done for splitting moby and docker.
7+
8+
## Topics discussed last week
9+
10+
### The CLI split
11+
12+
The Docker CLI was succesfully moved to [https://github.com/docker/cli](https://github.com/docker/cli) last week thanks to @tiborvass
13+
The Docker CLI is now compiled from the [Dockerfile](https://github.com/moby/moby/blob/a762ceace4e8c1c7ce4fb582789af9d8074be3e1/Dockerfile#L248)
14+
15+
### Mailing list
16+
17+
Discourse is available at [forums.mobyproject.org](https://forums.mobyproject.org/) thanks to @thaJeztah. mailing-list mode is enabled, so once you register there, you will received every new threads / messages via email. So far, 3 categories were created: Architecture, Meta & Support. The last step missing is to setup an email address to be able to start a new thread via email.
18+
19+
### Find a place for `/pkg`
20+
21+
Lots of discussion and progress made on this [topic](https://github.com/moby/moby/issues/32989) thanks to @dnephin. [Here is the list](https://gist.github.com/dnephin/35dc10f6b6b7017f058a71908b301d38) proposed to split/reorganize the pkgs.
22+
23+
### Find a good and non-confusing home for the remaining monolith
24+
25+
@cpuguy83 is leading the effort [here](https://github.com/moby/moby/pull/33022). It's still WIP but the way we are experimenting with is to reorganise directories within the moby/moby.
26+
27+
## Componentization
28+
29+
So far only work on the builder, by @tonistiigi, happened regarding the componentization effort.
30+
31+
### builder
32+
33+
The builder dev report can be found [here](builder/2017-05-07.md)
34+

reports/builder/2017-05-08.md

Lines changed: 57 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
1+
# Development Report for May 08, 2017
2+
3+
4+
### Quality: Dependency interface switch
5+
6+
Proposal for [switching the dependency interface](https://github.com/moby/moby/issues/32904) for current builder package. That should fix the current problems with data leakage and conflicts caused by daemon state cleanup scripts.
7+
8+
Merged as part of this effort:
9+
10+
- [Move dispatch state to a new struct](https://github.com/moby/moby/pull/32952)
11+
- [Cleanup unnecessary mutate then revert of b.runConfig](https://github.com/moby/moby/pull/32773)
12+
13+
In review:
14+
- [Refactor builder probe cache and container backend](https://github.com/moby/moby/pull/33061)
15+
- [Expose GetImage interface for builder](https://github.com/moby/moby/pull/33054)
16+
17+
### Merged: docker build --iidfile
18+
19+
[`docker build --iidfile` to capture the ID of the build result](https://github.com/moby/moby/pull/32406). New option can be used by the CLI applications to get back the image ID of build result. API users can use the `Aux` messages in progress stream to also get the IDs for intermediate build stages, for example to share them for build cache.
20+
21+
### New feature: Long running session
22+
23+
PR for [adding long-running session between daemon and cli](https://github.com/moby/moby/pull/32677) that enables advanced features like incremental context send, build credentials from the client, ssh forwarding etc.
24+
25+
@simonferquel proposed a [grpc-only version of that interface](https://github.com/moby/moby/pull/33047) that should simplify the setup needed for describing new features for the session. Looking for design reviews.
26+
27+
The feature also needs to be reworked after CLI split.
28+
29+
### buildkit
30+
31+
Not much progress [apart from some design discussion](https://github.com/moby/moby/issues/32925). Next step would be to open up a repo.
32+
33+
### Proposals for new Dockerfile features that need design feedback:
34+
35+
[Add IMPORT/EXPORT commands to Dockerfile](https://github.com/moby/moby/issues/32100)
36+
37+
[Add `DOCKEROS/DOCKERARCH` default ARG to Dockerfile](https://github.com/moby/moby/issues/32487)
38+
39+
[Add support for `RUN --mount`](https://github.com/moby/moby/issues/32507)
40+
41+
[DAG image builder](https://github.com/moby/moby/issues/32550)
42+
43+
[Option to export the hash of the build context](https://github.com/moby/moby/issues/32963) (new)
44+
45+
[Allow --cache-from=*](https://github.com/moby/moby/issues/33002#issuecomment-299041162) (new)
46+
47+
If you are interested in implementing any of them, leave a comment on the specific issues.
48+
49+
### Other new builder features currently in code-review:
50+
51+
[Allow builds from any git remote ref](https://github.com/moby/moby/pull/32502)
52+
53+
[Fix a case where using FROM scratch as NAME would fail](https://github.com/moby/moby/pull/32997)
54+
55+
### Backlog:
56+
57+
[Build secrets](https://github.com/moby/moby/pull/30637) will be brought up again in next maintainer's meeting to evaluate how to move on with this, if any other proposals have changed the objective and if we should wait for swarm secrets to be available first.

0 commit comments

Comments
 (0)