Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Introduce a new component: worker which performs the real builds #260

Open
wants to merge 49 commits into
base: develop
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
49 commits
Select commit Hold shift + click to select a range
a3467da
Rewrite bzk service
haklop Jun 27, 2015
8cd1448
Merge pull request #259 from bazooka-ci/refact-bzk-service
julienvey Jul 15, 2015
d912c14
Rework jobs and variants lists for a more responsive layout
jawher Jun 22, 2015
ae1b3d4
Some minor changes in color
julienvey Aug 18, 2015
b64b55f
Simplify the color tweaks
jawher Aug 19, 2015
891f379
Merge pull request #262 from bazooka-ci/rework-colors
jawher Aug 19, 2015
2e1466e
Fix the errored variants styling
jawher Aug 20, 2015
9776b1d
Fix created directories permissions
jawher Sep 24, 2015
30f7534
Tweak SCM key handling
jawher Sep 25, 2015
922baaa
Fix a JSON config bug in Variant struct
jawher Sep 25, 2015
f3cc334
Make go vet happy
jawher Sep 25, 2015
1241f94
Add a 5 second grace period when stopping the bazooka containers
jawher Sep 27, 2015
ba8d05b
Merge pull request #267 from bazooka-ci/make-go-vet-happy
jawher Sep 28, 2015
1a573e7
Merge pull request #264 from bazooka-ci/fix-dirs-permissions
jawher Sep 28, 2015
bfe7b98
Merge pull request #265 from bazooka-ci/fix-json-bug-in-variant
jawher Sep 28, 2015
0483649
Merge pull request #268 from bazooka-ci/grace-period-when-stopping-co…
julienvey Sep 29, 2015
0fd7e83
Merge pull request #266 from bazooka-ci/tweak-scm-key-handling
julienvey Sep 29, 2015
dc1be14
Merge pull request #261 from bazooka-ci/rework-job-list
julienvey Sep 29, 2015
65b613e
Add an internal API to manipulate jobs and variants
Oct 15, 2015
12e9100
Add an API to serve a specific image given its name
Oct 15, 2015
ab7c119
Fix error when registering an image
jawher Nov 15, 2015
8ffd4a6
Merge pull request #272 from bazooka-ci/get-image-api
jawher Nov 15, 2015
be84a26
Merge pull request #273 from bazooka-ci/add-internal-api
jawher Nov 15, 2015
e7b6135
Merge pull request #274 from bazooka-ci/fix-register-image
jawher Nov 15, 2015
8c22c16
Use syslog to capture the build log
jawher Sep 27, 2015
c478d8f
Merge pull request #270 from bazooka-ci/use-syslog-to-capture-build-logs
jawher Nov 16, 2015
faa8e1b
Implement service aliases
julienvey Sep 18, 2015
b020a5d
Merge pull request #269 from bazooka-ci/service_aliases
julienvey Nov 16, 2015
027ed70
Orchestration now uses the HTTP API instead of mongo
jawher Nov 16, 2015
3427274
Merge pull request #275 from bazooka-ci/use-internal-api-instead-of-m…
jawher Nov 17, 2015
9ea35cf
Parser now use the image API to retrieve the language parser image to…
jawher Nov 17, 2015
863affe
Merge pull request #276 from bazooka-ci/parser-use-image-api
jawher Nov 17, 2015
8436423
Get rid of useless Sprintf
jawher Nov 17, 2015
aed0108
Use defer to remove containers
julienvey Nov 17, 2015
471130e
Merge pull request #277 from bazooka-ci/defer
julienvey Nov 17, 2015
ae4144e
Remove unused files in parser
julienvey Nov 17, 2015
7eb5ac7
Homogenize to use URL instead of URI
jawher Nov 17, 2015
b5364d1
Merge pull request #278 from bazooka-ci/url-not-uri
julienvey Nov 17, 2015
5a49919
Damn you npm
jawher Nov 17, 2015
3c33e37
Update generator to manage changes in working directory
julienvey Nov 17, 2015
d9fbbf8
Merge pull request #255 from bazooka-ci/improve_scripts
julienvey Nov 19, 2015
cdc8548
Use templates to generate bzk build scripts and Dockerfile
julienvey Nov 18, 2015
fdbad17
Merge pull request #279 from bazooka-ci/template_scripts
jawher Nov 21, 2015
4f1cdf7
Add error details when logging scm fetch error
julienvey Dec 10, 2015
315e1a2
Merge pull request #280 from bazooka-ci/add_error_log
jawher Dec 10, 2015
2f0b396
Fix bitbucket server hook
julienvey Dec 10, 2015
c37b38e
Merge pull request #281 from bazooka-ci/bitbucket_payload
jawher Jan 1, 2016
12dab68
Replace links with Docker 1.9 bridge networks
jawher Nov 18, 2015
74ed838
Introduce a new componenet: worker which performs the real builds
jawher May 25, 2015
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Rewrite bzk service
- bzk service restart == bzk service stop && bzk service start
- Rename tag option by version on bzk service start
- Add --recreate options on bzk service restart which destroy container before restarting it
  • Loading branch information
haklop committed Jul 13, 2015
commit a3467dacdb92a86a10c370320ba6fadd334fa638
1 change: 1 addition & 0 deletions cli/bzk/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ type Config struct {
DockerSock string `yaml:"docker_sock"`
SCMKey string `yaml:"scm_key"`
Registry string `yaml:"registry"`
Tag string `yaml:"tag"`

MongoURI string `yaml:"mongo_uri"`
}
Expand Down
Loading