Skip to content
Go from Docker Compose to Kubernetes
Go Shell Other
Branch: master
Clone or download

Latest commit

cdrage Fix tests (#1274)
For some reason, Kubernetes tests haven't been running correctly. This
(hopefully) fixes it on Semaphore..

Signed-off-by: Charlie Drage <charlie@charliedrage.com>
Latest commit 6b018fa Apr 23, 2020

Files

Permalink
Type Name Latest commit message Commit time
Failed to load latest commit information.
build 1.21.0 Release (#1249) Feb 25, 2020
cmd Add server flag for kompose down (#1260) Mar 8, 2020
docs Add server flag for kompose down (#1260) Mar 8, 2020
examples Revert "Add node references (#1123)" Jun 20, 2019
pkg Fix annotations missing for ingress (#1248) Mar 31, 2020
script Fix tests (#1274) Apr 23, 2020
vendor Support export yaml with indent (#1219) Dec 28, 2019
.gitignore Add kompose.image-pull-secret and kompose.image-pull-policy (#1091) Feb 7, 2019
.gitmodules submodule with a 'go get'-friendly url Jun 4, 2019
.mention-bot Change bot message Aug 16, 2017
.travis.yml Use new go version for build (#1209) Dec 26, 2019
CHANGELOG.md 1.21.0 Release (#1249) Feb 25, 2020
CONTRIBUTING.md Go down to one ACK Aug 14, 2017
Dockerfile Add Dockerfile (#1101) Aug 12, 2019
Jenkinsfile changing the organisation from kubernetes-incubator to kubernetes Aug 24, 2017
LICENSE remove executable perms from docs Sep 26, 2016
Makefile Fix tests (#1274) Apr 23, 2020
OWNERS Update OWNERS (#1177) Oct 31, 2019
README.md 1.21.0 Release (#1249) Feb 25, 2020
RELEASE.md update release process doc Apr 10, 2017
SECURITY_CONTACTS Update embargo doc link in SECURITY_OWNERS and changes PST to PSC (#1115 Mar 8, 2019
code-of-conduct.md Update code-of-conduct.md Dec 20, 2017
glide.lock Support export yaml with indent (#1219) Dec 28, 2019
glide.yaml Support export yaml with indent (#1219) Dec 28, 2019
main.go kubernetes-incubator -> kubernetes Jul 12, 2017

README.md

Kompose (Kubernetes + Compose)

Build Status Widget Coverage Status Widget GoDoc Widget GoReportCard Widget

kompose is a tool to help users who are familiar with docker-compose move to Kubernetes. kompose takes a Docker Compose file and translates it into Kubernetes resources.

kompose is a convenience tool to go from local Docker development to managing your application with Kubernetes. Transformation of the Docker Compose format to Kubernetes resources manifest may not be exact, but it helps tremendously when first deploying an application on Kubernetes.

Use Case

Convert docker-compose.yaml into Kubernetes deployments and services with one simple command:

$ kompose convert -f docker-compose.yaml
INFO Kubernetes file "frontend-service.yaml" created         
INFO Kubernetes file "redis-master-service.yaml" created     
INFO Kubernetes file "redis-slave-service.yaml" created      
INFO Kubernetes file "frontend-deployment.yaml" created      
INFO Kubernetes file "redis-master-deployment.yaml" created  
INFO Kubernetes file "redis-slave-deployment.yaml" created 

Other examples are provided in the examples directory.

Installation

We have multiple ways to install Kompose. Our preferred method is downloading the binary from the latest GitHub release.

Our entire list of installation methods are located in our installation.md document.

Installation methods:

Binary installation

Kompose is released via GitHub on a three-week cycle, you can see all current releases on the GitHub release page.

Linux and macOS:

# Linux
curl -L https://github.com/kubernetes/kompose/releases/download/v1.21.0/kompose-linux-amd64 -o kompose

# macOS
curl -L https://github.com/kubernetes/kompose/releases/download/v1.21.0/kompose-darwin-amd64 -o kompose

chmod +x kompose
sudo mv ./kompose /usr/local/bin/kompose

Windows:

Download from GitHub and add the binary to your PATH.

Note: kompose up is not supported on windows.

Shell autocompletion

We support both Bash and Zsh autocompletion.

# Bash (add to .bashrc for persistence)
source <(kompose completion bash)

# Zsh (add to .zshrc for persistence)
source <(kompose completion zsh)

Development and building of Kompose

Building with go

Requisites:

  1. make
  2. Golang v1.6 or later
  3. Set GOPATH correctly or click SettingGOPATH for details

Steps:

  1. Clone repository
$ git clone https://github.com/kubernetes/kompose.git $GOPATH/src/github.com/kubernetes/kompose
  1. Build with make
$ make bin
  1. Or build with go
$ go build -o kompose main.go
  1. Test your changes
$ make test

Documentation

Documentation can be found at our kompose.io website or our docs folder.

Here is a list of all available docs:

Community, Discussion, Contribution, and Support

Issues: If you find any issues, please file it.

Kubernetes Community: As part of the Kubernetes ecosystem, we follow the Kubernetes community principles. More information can be found on the community page.

Chat (Slack): We're fairly active on Slack and you can find us in the #kompose channel.

Code of Conduct

Participation in the Kubernetes community is governed by the Kubernetes Code of Conduct.

You can’t perform that action at this time.