Container Infrastructure Management Service for OpenStack
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
Go to file
Jenkins 1c78cd834b
Merge "Fix an error on generating configs"
8 years ago
contrib/templates/example Add Template Definitions 8 years ago
devstack Remove old hack for requirements 8 years ago
doc/source Minor improvement of the quickstart guide 8 years ago
etc/magnum introduce policy for magnum 8 years ago
magnum Merge "Fix an error on generating configs" 8 years ago
specs Remove trailing spaces in container-service.rst 8 years ago
tools Convert to new DevStack plugin model for functional testing 8 years ago
.coveragerc Initial commit from github (squashed) 8 years ago
.gitignore Add coe attribute to BayModel 8 years ago
.gitreview Update .gitreview for project rename 8 years ago
.mailmap Initial commit from github (squashed) 8 years ago
.testr.conf Make room for functional tests 8 years ago
CONTRIBUTING.rst Workflow documentation is now in infra-manual 8 years ago
Dockerfile Fix the docker build image issue 8 years ago
HACKING.rst Correct doc format 8 years ago
LICENSE Initial commit from github (squashed) 8 years ago
MANIFEST.in Copy Ironic's database model codebase 8 years ago
README.rst Update magnum document to use openstack as namespace 8 years ago
babel.cfg Initial commit from github (squashed) 8 years ago
bandit.yaml Add Bandit security lint checking via tox 8 years ago
functional_creds.conf.sample Make functional test work with new tox env 8 years ago
openstack-common.conf cleanup openstack-common.conf and sync updated files 8 years ago
requirements.txt Updated from global requirements 8 years ago
setup.cfg Add Swarm TemplateDefinition 8 years ago
setup.py Sync from oslo requirements 8 years ago
test-requirements-bandit.txt Update bandit for new usage requirement 8 years ago
test-requirements.txt Reorder requirements into ascii-betical order. 8 years ago
tox.ini Fix ignored E121 to E125 pep 8 rules 8 years ago

README.rst

Magnum

new Openstack project for containers.

Architecture

There are seven different types of objects in the Magnum system:

  • Bay: A collection of node objects where work is scheduled
  • BayModel: An object stores template information about the bay which is used to create new bays consistently
  • Node: A baremetal or virtual machine where work executes
  • Pod: A collection of containers running on one physical or virtual machine
  • Service: An abstraction which defines a logical set of pods and a policy by which to access them
  • ReplicationController: An abstraction for managing a group of PODs to ensure a specified number of PODs are running
  • Container: A docker container

Two binaries work together to compose the Magnum system. The first binary accessed by the python-magnumclient code is the magnum-api ReST server. The ReST server may run as one process or multiple processes. When a ReST request is sent to the client API, the request is sent via AMQP to the magnum-conductor process. The ReST server is horizontally scalable. At this time, the conductor is limited to one process, but we intend to add horizontal scalability to the conductor as well.

The magnum-conductor process runs on a controller machine and connects to a kubernetes or docker ReST API endpoint. The kubernetes and docker ReST API endpoints are managed by the bay object.

When service or pod objects are created, Kubernetes is directly contacted via the k8s ReST API. When container objects are acted upon, the docker ReST API is directly contacted.

Features

  • Abstractions for bays, containers, nodes, pods, and services
  • Integration with Kubernetes and Docker for backend container technology.
  • Integration with Keystone for multi-tenant security.
  • Integration with Neutron for k8s multi-tenancy network security.

Installation and Usage