Suite of the Docker and Kubernetes applications
Go to file
Peter Razumovsky 82056d980f Fix name pattern for DockerApp
Currently name pattern for DockerApp allows to use underlines, dots and
doesn't limit name length (at least that's described in field description).
This occurs validation error with some regexp. Kubernetes docs [1] indicates,
that container name should be DNS_LABEL, which described in [2]. Also,
kubernetes code [3] contains regexp and length limit for DNS_LABEL
pattern.

[1] http://kubernetes.io/docs/user-guide/pods/multi-container/#containers

[2] http://kubernetes.io/docs/user-guide/labels/#syntax-and-character-set

[3] 8fd414537b/pkg/util/validation/validation.go (L88-L89)

Change-Id: Icb2ed2b00afe15bd547c01895beedd5ff02b0b0d
Closes-bug: #1622899
2016-10-07 14:08:22 +03:00
Applications Fix name pattern for DockerApp 2016-10-07 14:08:22 +03:00
DockerInterfacesLibrary Revert "Add missed parts of providing versioning to stable/mitaka" 2016-09-27 14:57:59 +00:00
DockerStandaloneHost Clarify description for Docker mirror and registry 2016-10-05 16:33:22 +03:00
Kubernetes Clarify description for Docker mirror and registry 2016-10-05 16:33:22 +03:00
doc Adding initial doc hierarchy for building with sphinx 2016-09-20 11:47:53 +00:00
tests Add k8s app test for per-commit job 2016-09-19 19:02:41 +03:00
tools Add linters tests 2016-09-20 17:29:36 +03:00
.gitignore Adding initial doc hierarchy for building with sphinx 2016-09-20 11:47:53 +00:00
.gitreview Add initial version of script for zipping packages 2016-09-09 17:47:31 +03:00
README.rst [Kubernetes] Kubernetes documentation 2015-12-03 16:48:42 +03:00
setup.cfg Adding setup.|(py,cfg) for building docs 2016-09-22 18:52:26 +03:00
setup.py Adding setup.|(py,cfg) for building docs 2016-09-22 18:52:26 +03:00
test-requirements.txt Adding tox env for docs 2016-09-20 11:48:03 +00:00
tox.ini Merge "Adding tox env for docs" 2016-09-21 08:29:42 +00:00

README.rst

Docker support for Murano

Docker is an open-source project that automates the deployment of applications inside software containers. Docker containers could be run either by the Docker itself or by container management platforms that built on top of the Docker and provide extra value to schedule and manage containers on multiple hosts.

This folder contains needed abstractions and applications to develop and run Docker applications:

  • DockerInterfaceLibrary: library that defines a framework for building Docker applications. It provides set of common interfaces and data structures that are used by all Docker applications and Docker hosting services. If you want to develop your own Docker application this is a good place to start. See DockerInterfaceLibrary/README.rst for more details.
  • DockerStandaloneHost: a regular Docker host. Docker containers are run on a dedicated VM running docker software (require pre-built image with docker and murano-agent).
  • Kubernetes: an open source container cluster manager by Google. It allows to schedule and run Docker applications on multiple clustered nodes. Application both installs Kubernetes and provides capabilities to run Docker applications similar to DockerStandaloneHost. See Kubernetes/README.rst for more details.
  • Applications: Examples of some of the most popular Docker applications.