18 Commits
Author SHA1 Message Date
Charlie Drage 0f4bfebf08 Move version information to separate file
Moves the version information to a seperate file. This is mostly due to
import cycle errors occuring when using "import
github.com/kubernetes/kompose/cmd" in order to get the global variable
of VERSION and GITCOMMIT.

Update's the Makefile and other files accordingly.

If the version and commmit is unretriveable due to not being able to
find the kompose binary, the one from pkg/version/version.go will be
used.
2017-11-07 15:28:04 -05:00
Charlie Drage 79b5a02729 1.4.0 Release 2017-10-31 16:47:47 -04:00
Charlie Drage c27bbc223c 1.3.0 Release 2017-10-10 15:24:44 -04:00
Charlie Drage 7908d73652 1.2.0 Release 2017-09-18 14:38:34 -04:00
Charlie Drage e555d111a5 1.1.0 Release 2017-08-30 11:38:56 -04:00
Charlie Drage 90a89b6826 1.0.0 Release 2017-07-20 11:54:54 -04:00
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
Charlie Drage 4da352210c 0.7.0 Release 2017-05-25 12:05:54 -04:00
Charlie Drage 0bc69a487f 0.6.0 Release 2017-04-28 09:46:54 -04:00
Charlie Drage 3c870ffa86 0.5.0 Release 2017-04-04 12:24:27 -04:00
Charlie Drage d4fd8cbebb 0.4.0 Release 2017-03-21 14:48:27 -04:00
Charlie Drage 10cff91295 121011e Release 2017-02-24 09:45:28 -05:00
Tomas Kral 18955c63d4 fix passing gitcommit in version output 2017-02-11 17:05:08 +01:00
Charlie Drage c20ce2f088 0.2.0 Release 2017-01-27 15:36:17 -05:00
Tomas Kral 4f176b847e fix golint errors 2017-01-05 10:31:11 +01:00
Suraj Deshmukh 5625a97833 Flag validation called on up and down
On kompose up and kompose down flag validation
was done which is validating flags that are not there
in kompose up and kompose down
2016-12-27 15:59:07 +05:30
Charlie Drage 1b9228e696 Switch to spf13/cobra from urfave/cli
There's A LOT happening in this commit, so here's an outline:

First off, urfave/cli has been removed in favour of spf13/cobra. With
this, comes changes to the formatting as well as the help page for
Kompose.

Upon converting, I noticed a CLI flag was NOT appearing for OpenShift.
Specifically, --deploymentconfig. This has been added with a note
that says it is OpenShift only.

Exit codes have been fixed. If the conversion / down / up fails for
any reason, Kompose will exit with Code 1.

--verbose as well as --suppress-warnings can now be set at the
same time.

app_test.go in the cli directory has been moved to pkg/transformer
to better reflect the testing coverage.

version.go has been removed and converted to it's own CLI command in
conjuction with (most) Go software. A new CLI command has been
created. kompose version

--dab isn't a conventional way for short-form CLI paramters. This
has been shortened to -b for bundle.

CLI flags consisting of only two/three letters have been removed due to
it being unconventional for CLI. For example, --dc was removed in preference
for --deploymentconfig

--replicas has been added as an option when using kompose down or
kompose up. This has been added as previously in app.go the
replica amount was hard-coded as 1.

Differentiating names have been used for flags. For example,
persistent flags use the name Global (ex. GlobalOut). Command-specific
flags have their own names (ex. UpOpt).

Closes #239 #253
2016-12-22 08:15:51 -05:00