Commit Graph
17 Commits
Author SHA1 Message Date
Charlie Drage 787b7d9261 kubernetes-incubator -> kubernetes
Today, we graduate from the incubator, thus all links are updates from
kubernetes-incubator to kubernetes
2017-07-12 15:42:13 -04:00
Charlie Drage ce32bb817d 2016 -> 2017 for licensing
New year, update to the license.
2017-06-28 10:49:52 -04:00
Shubham Minglani 5cb598fa5b return errors instead of logrus.Fatal calls
This commit refactors the code to remove more or less
all occurences of logrus.Fatalf() from the code under
pkg/ except for app.go where all the errors are being
handled currently.

This is being done since random logrus.Fatalf() calls
all around the code was making handling the errors,
unit testing and troubleshooting a bit more painful.

logrus.Fatalf() calls are either replaced by
return errors.New("new error")
or
return errors.Wrap(err, "annonate error")
calls, and the function signatures are accordingly
changed to accomodate the new return values.

The unit tests which previously used to check
if logrus.Fatalf() calls worked fine have also
been fixed to only check for errors now.

Fixes #416
2017-03-15 13:30:21 +05:30
Charlie Drage c0043ebd11 Clean up logrus
Replaces "log" from "logrus" as commonly used in large Go projects.

Makes it easier from a developer perspective to use `log.Info`,
`log.Debug`, etc.
2017-02-27 10:53:24 -05:00
Tomas Kral 4f176b847e fix golint errors 2017-01-05 10:31:11 +01:00
Abhishek a5a3805760 added support for multiple-compose files 2017-01-03 17:18:34 +05:30
Tomas Kral 3419ae7fe1 few updates based on review 2016-12-20 16:58:28 +05:30
Tomas Kral d5d0a3f03a Add tests for unsupported keys in loaders 2016-12-20 16:58:23 +05:30
Tomas Kral e4f9b59b4d Separate unsupported key check for every loader 2016-12-20 12:21:03 +05:30
Tomas Kral c441610b4f fix govet errors 2016-11-22 13:02:31 +01:00
sebgoa 00331589a3 Fix license headers, This closes #223 2016-11-01 15:01:27 +01:00
Tuna 670d8423e5 remove tag experimental 2016-10-21 01:40:34 +02:00
Tomas Kral f8f737be7b move to kubernetes-incubator
update imports to reflect move to kubernetes-incubator
2016-10-17 18:14:29 +02:00
Tuna 592cc95907 upgrade libcompose to fbdac0a6a80837c63eb6c8f43514f7bb3f32df6c 2016-10-09 02:35:51 +02:00
Tuna 82ae7fab78 clean code 2016-08-25 00:34:54 +07:00
Janet Kuo 14726f1a53 Add unit test for komposeConvert 2016-08-12 18:21:56 -07:00
Tuna f10d6afecf make loader, transformer as interfaces 2016-08-11 23:33:45 +07:00