Currently there is no standard mechanism to define a composite multi-container application or composite service composed of aggregate pre-defined building blocks spanning multiple hosts and clustered deployments. In addition, the associated metadata and artifact management requires separate processes outside the context of the application itself.
It's a made-up word meaning "the mother of all atomic particles" pronounced NOO-le-kyul
, like "molecule".
Nulecule defines a pattern and model for packaging complex multi-container applications, referencing all their dependencies, including orchestration metadata in a container image for building, deploying, monitoring, and active management.
Nulecule specification enables complex applications to be defined, packaged and distributed using standard container technologies. The resulting container includes dependencies while supporting multiple orchestration providers and ability to specify resource requirements. The Nulecule specification also supports aggregation of multiple composite applications. The Nulecule specification is container and orchestration agnostic, enabling the use of any container and orchestration engine.
- Application description and context maintained within a single container through extensible metadata
- Composable definition of complex applications through inheritance and composition of containers into a single, standards-based, portable description.
- Simplified dependency management for the most complex applications through a directed graph to reflect relationships.
- Container and orchestration engine agnostic, enabling the use of any container technology and/or orchestration technology
Here's an example using the atomicapp reference implementation with a kubernetes provider.
Run the image. You will be prompted to override defaults
[sudo] atomic run projectatomic/helloapache
-
Create file
answers.conf
with these contents:[general] provider = kubernetes [helloapache-app] image = centos/httpd # optional: choose a different image hostport = 80 # optional: choose a different port to expose
-
Run the application from the current working directory
$ [sudo] atomic run projectatomic/helloapache ... helloapache
You may want to download the application, review, edit the answerfile then run.
-
Download the application files using
atomic install
[sudo] atomic install projectatomic/helloapache
-
Rename
answers.conf.sample
mv answers.conf.sample answers.conf
-
Edit
answers.conf
, review files if desired and run$ [sudo] atomic run projectatomic/helloapache ... helloapache
- Develop an architecture to define how the services are connected and exposed.
- Create Dockerfiles and artifacts to package services as container images.
- Create provider files, e.g. for kubernetes pod, service, replication controller files
- Reviews example templates of the container application specification
- Builds the deployment container describing the application.
- Pushes all container images to a registy.
This is only a specification. Implementations may be written in any language. See implementation guide for more details.
Reference implementation https://github.com/projectatomic/atomicapp
Developer implementation provides tooling to help developers quickly package several containers as a unit. It may be as simple as generating a template to start from or as complex as a GUI to develop and provide graphical representation of the target deployment.
Please review the contributing guidelines before submitting pull requests.