compose2kube icon indicating copy to clipboard operation
compose2kube copied to clipboard

Convert docker-compose service files to Kubernetes objects.

Results 24 compose2kube issues
Sort by recently updated
recently updated
newest added

Current getting the following issue on master: ``` Error from server: error when creating "output/cache-rc.yml": namespaces "${NAMESPACE}" not found Error from server: error when creating "output/cache-srv.yml": namespaces "${NAMESPACE}" not found...

Replication Sets are next-generation replication controllers. We should migrate.

@kelseyhightower somehow I did not see that you kept on evolving this. Do you know about: http://github.com/skippbox/kompose We are proposing it for the k8s incubator via sig-apps.

If we have a volume defined like this in our docker-compose, volumes: - ./cache:/var/cache/nginx The name .cache is generated for the volume which failes the k8s name specification. Error from...

When flag `-compose-file-path` is specified, actually it assumes that it is only the directory name containing `docker-compose.yml` file. This PR adds the behaviour that other file name can be used...

While attempting to convert the bundled docker-compose.yml to a k8s config, services are generated with an invalid ServiceSpec definition. Per v1.ServiceSpec there is no field defined as _ExternalName_. This has...

work around to setting namespace as env var

Add the following features: - Configurable namespace: Use "default" namespace for Replication Controllers (fix) and Services. In addition, you can override the namespace using "-namespace" command line option. There is...

As I understand it, Kubernetes Deployments [1] are a higher-level construct over replication controllers and are the recommended way moving forward [2]. Is support for Deployments planned? Thanks. [1] http://kubernetes.io/docs/user-guide/deployments/...