Add builder manager support (#308)

This change orchestrates function builds.

Environments (in v2) define a builder image, just like they do a runtime image. The builder image contains a build script that's invoked with source and deployment paths (as env vars).

The buildermgr watches for environments with build images defined, and creates build deployments and services.

Functions can define source and deployment. Buildermgr watches for functions with source code (and build status == pending) and invokes the environment's builder when appropriate. It captures logs from the build and sets the build status (success/failure) and build lots into the PackageStatus.
This commit is contained in:
Ta-Ching Chen
2017-09-25 07:53:09 -07:00
committed by Soam Vasani
parent a720377f3c
commit e587eca08f
40 changed files with 1827 additions and 176 deletions
-5
View File
@@ -1,5 +0,0 @@
FROM alpine:3.4
ADD builder /
EXPOSE 8000
+3 -2
View File
@@ -1,2 +1,3 @@
#!/bin/sh
GOOS=linux GOARCH=386 go build -o builder .
#!/bin/bash
CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -o builder .
+1 -1
View File
@@ -38,5 +38,5 @@ func main() {
builder := builder.MakeBuilder(dir)
mux := http.NewServeMux()
mux.HandleFunc("/", builder.Handler)
http.ListenAndServe(":8000", mux)
http.ListenAndServe(":8001", mux)
}