forked from LaconicNetwork/kompose
changed kompose2 to kompose
This commit is contained in:
parent
c49eccf313
commit
d5414877b5
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",
|
||||
"GodepVersion": "v74",
|
||||
"Packages": [
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
# Kubernetes compose (Kompose)
|
||||
|
||||
[](https://travis-ci.org/skippbox/kompose2)
|
||||
[](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.
|
||||
|
||||
@ -8,7 +8,7 @@
|
||||
|
||||
## Download
|
||||
|
||||
Grab the latest [release](https://github.com/skippbox/kompose2/releases)
|
||||
Grab the latest [release](https://github.com/skippbox/kompose/releases)
|
||||
|
||||
## Usage
|
||||
|
||||
@ -205,7 +205,7 @@ $ make binary
|
||||
## 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.
|
||||
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
|
||||
|
||||
|
||||
@ -18,7 +18,7 @@ package command
|
||||
|
||||
import (
|
||||
"github.com/docker/libcompose/project"
|
||||
"github.com/skippbox/kompose2/cli/app"
|
||||
"github.com/skippbox/kompose/cli/app"
|
||||
"github.com/urfave/cli"
|
||||
)
|
||||
|
||||
|
||||
@ -18,7 +18,7 @@ package app
|
||||
|
||||
import (
|
||||
"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/docker"
|
||||
"github.com/docker/libcompose/project"
|
||||
|
||||
@ -20,10 +20,10 @@ import (
|
||||
"os"
|
||||
|
||||
"github.com/urfave/cli"
|
||||
dockerApp "github.com/skippbox/kompose2/cli/docker/app"
|
||||
"github.com/skippbox/kompose2/version"
|
||||
"github.com/skippbox/kompose2/cli/command"
|
||||
cliApp "github.com/skippbox/kompose2/cli/app"
|
||||
dockerApp "github.com/skippbox/kompose/cli/docker/app"
|
||||
"github.com/skippbox/kompose/version"
|
||||
"github.com/skippbox/kompose/cli/command"
|
||||
cliApp "github.com/skippbox/kompose/cli/app"
|
||||
)
|
||||
|
||||
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
|
||||
# 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'
|
||||
|
||||
if [ "$TRAVIS" = 'true' -a "$TRAVIS_PULL_REQUEST" != 'false' ]; then
|
||||
|
||||
@ -1,7 +1,7 @@
|
||||
#!/usr/bin/env bash
|
||||
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
|
||||
DEFAULT_BUNDLES=(
|
||||
|
||||
Loading…
Reference in New Issue
Block a user