forked from LaconicNetwork/kompose
changed kompose2 to kompose
This commit is contained in:
parent
ba1c66af42
commit
eb8e5be7b4
2
Godeps/Godeps.json
generated
2
Godeps/Godeps.json
generated
@ -1,5 +1,5 @@
|
|||||||
{
|
{
|
||||||
"ImportPath": "github.com/skippbox/kompose2",
|
"ImportPath": "github.com/skippbox/kompose",
|
||||||
"GoVersion": "go1.6",
|
"GoVersion": "go1.6",
|
||||||
"GodepVersion": "v74",
|
"GodepVersion": "v74",
|
||||||
"Packages": [
|
"Packages": [
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
# Kubernetes compose (Kompose)
|
# Kubernetes compose (Kompose)
|
||||||
|
|
||||||
[](https://travis-ci.org/skippbox/kompose2) [](https://skippbox.herokuapp.com)
|
[](https://travis-ci.org/skippbox/kompose) [](https://skippbox.herokuapp.com)
|
||||||
|
|
||||||
`kompose` is a tool to help users familiar with `docker-compose` move to [Kubernetes](http://kubernetes.io). It takes a Docker Compose file and translates it into Kubernetes objects, it can then submit those objects to a Kubernetes endpoint with the `kompose up` command.
|
`kompose` is a tool to help users familiar with `docker-compose` move to [Kubernetes](http://kubernetes.io). It takes a Docker Compose file and translates it into Kubernetes objects, it can then submit those objects to a Kubernetes endpoint with the `kompose up` command.
|
||||||
|
|
||||||
@ -8,7 +8,7 @@
|
|||||||
|
|
||||||
## Download
|
## Download
|
||||||
|
|
||||||
Grab the latest [release](https://github.com/skippbox/kompose2/releases)
|
Grab the latest [release](https://github.com/skippbox/kompose/releases)
|
||||||
|
|
||||||
## Usage
|
## Usage
|
||||||
|
|
||||||
@ -166,7 +166,7 @@ Currently `kompose` does not support the following Docker Compose options.
|
|||||||
For example:
|
For example:
|
||||||
|
|
||||||
```
|
```
|
||||||
$ cat nginx.yml
|
$ cat nginx.yml
|
||||||
nginx:
|
nginx:
|
||||||
image: nginx
|
image: nginx
|
||||||
dockerfile: foobar
|
dockerfile: foobar
|
||||||
@ -205,7 +205,7 @@ $ make binary
|
|||||||
## Contributing and Issues
|
## Contributing and Issues
|
||||||
|
|
||||||
`kompose` is a work in progress, we will see how far it takes us. We welcome any pull request to make it even better.
|
`kompose` is a work in progress, we will see how far it takes us. We welcome any pull request to make it even better.
|
||||||
If you find any issues, please [file it](https://github.com/skippbox/kompose2/issues).
|
If you find any issues, please [file it](https://github.com/skippbox/kompose/issues).
|
||||||
|
|
||||||
## Community, discussion, contribution, and support
|
## Community, discussion, contribution, and support
|
||||||
|
|
||||||
|
|||||||
@ -18,7 +18,7 @@ package command
|
|||||||
|
|
||||||
import (
|
import (
|
||||||
"github.com/docker/libcompose/project"
|
"github.com/docker/libcompose/project"
|
||||||
"github.com/skippbox/kompose2/cli/app"
|
"github.com/skippbox/kompose/cli/app"
|
||||||
"github.com/urfave/cli"
|
"github.com/urfave/cli"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|||||||
@ -18,7 +18,7 @@ package app
|
|||||||
|
|
||||||
import (
|
import (
|
||||||
"github.com/urfave/cli"
|
"github.com/urfave/cli"
|
||||||
"github.com/skippbox/kompose2/cli/command"
|
"github.com/skippbox/kompose/cli/command"
|
||||||
"github.com/docker/libcompose/cli/logger"
|
"github.com/docker/libcompose/cli/logger"
|
||||||
"github.com/docker/libcompose/docker"
|
"github.com/docker/libcompose/docker"
|
||||||
"github.com/docker/libcompose/project"
|
"github.com/docker/libcompose/project"
|
||||||
|
|||||||
@ -20,10 +20,10 @@ import (
|
|||||||
"os"
|
"os"
|
||||||
|
|
||||||
"github.com/urfave/cli"
|
"github.com/urfave/cli"
|
||||||
dockerApp "github.com/skippbox/kompose2/cli/docker/app"
|
dockerApp "github.com/skippbox/kompose/cli/docker/app"
|
||||||
"github.com/skippbox/kompose2/version"
|
"github.com/skippbox/kompose/version"
|
||||||
"github.com/skippbox/kompose2/cli/command"
|
"github.com/skippbox/kompose/cli/command"
|
||||||
cliApp "github.com/skippbox/kompose2/cli/app"
|
cliApp "github.com/skippbox/kompose/cli/app"
|
||||||
)
|
)
|
||||||
|
|
||||||
func main() {
|
func main() {
|
||||||
|
|||||||
@ -4,7 +4,7 @@ if [ -z "$VALIDATE_UPSTREAM" ]; then
|
|||||||
# this is kind of an expensive check, so let's not do this twice if we
|
# this is kind of an expensive check, so let's not do this twice if we
|
||||||
# are running more than one validate bundlescript
|
# are running more than one validate bundlescript
|
||||||
|
|
||||||
VALIDATE_REPO='https://github.com/skippbox/kompose2.git'
|
VALIDATE_REPO='https://github.com/skippbox/kompose.git'
|
||||||
VALIDATE_BRANCH='master'
|
VALIDATE_BRANCH='master'
|
||||||
|
|
||||||
if [ "$TRAVIS" = 'true' -a "$TRAVIS_PULL_REQUEST" != 'false' ]; then
|
if [ "$TRAVIS" = 'true' -a "$TRAVIS_PULL_REQUEST" != 'false' ]; then
|
||||||
|
|||||||
@ -1,7 +1,7 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
export KOMPOSE_PKG='github.com/skippbox/kompose2'
|
export KOMPOSE_PKG='github.com/skippbox/kompose'
|
||||||
|
|
||||||
# List of bundles to create when no argument is passed
|
# List of bundles to create when no argument is passed
|
||||||
DEFAULT_BUNDLES=(
|
DEFAULT_BUNDLES=(
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user