Skip to content

Container management solution with an accent on modeling containerized applications and provide placement based on dynamic policy allocation

License

Notifications You must be signed in to change notification settings

pnedunuri/admiral

Repository files navigation

Admiral

Admiral

###Contents

What is Admiral?

This project provides an enterprise container management solution, which can help enterprises reduce complexity and achieve advantages including simplified and automated application delivery, optimized resource utilization along with business governance and applying business policies, release management and overall data center integration.

Admiral is a service written in Java and based on VMware's Xenon framework. This service enables the users to:

  • manage Docker hosts, where containers will be deployed
  • manage Policies (together with Resource Pools, Deployment Policies, etc.), to establish the preferences about what host(s) a container deployment will actually use
  • manage Templates (including one or more container images) and Docker Registries
  • manage Containers and Applications
  • manage other common and required entities like credentials, certificates, etc.

Getting started

Running Admiral

There are three ways you can start Admiral:

1. Run container image

docker run -d -p 8282:8282 --name admiral vmware/admiral

Open http://<docker-host-IP>:8282/uic in browser

2. Download the published build archive, you can find it here.

See detailed instructions how to run it.

unzip admiral-0.5.0-SNAPSHOT-jar-with-dependencies-and-agent.jar.zip
java -cp ./lib/* -jar admiral-host-0.5.0-SNAPSHOT-jar-with-dependencies-and-agent.jar --bindAddress=0.0.0.0 --port=8282

Open http://127.0.0.1:8282/uic in browser

3. Clone the repo and build locally. Detailed instructions about building locally can be found in the Admiral developer guide:

  • Building the Admiral agent first
cd container-images/admiral-agent
make buildall
  • Building the Java project
mvn clean install -DskipTests
  • Run the project java -jar host/target/admiral-host-*-jar-with-dependencies-and-agent.jar --bindAddress=0.0.0.0 --port=8282

Open http://127.0.0.1:8282/uic in browser

Building the code

mvn clean install

Contributing

You are invited to contribute new features, fixes, or updates, large or small; we are always thrilled to receive pull requests, and do our best to process them as fast as we can. If you wish to contribute code and you have not signed our contributor license agreement (CLA), our bot will update the issue when you open a Pull Request. For any questions about the CLA process, please refer to our FAQ.

Before you start to code, we recommend discussing your plans through a GitHub issue or discuss it first with the official project maintainers via the gitter.im chat, especially for more ambitious contributions. This gives other contributors a chance to point you in the right direction, give you feedback on your design, and help you find out if someone else is working on the same thing.

License

Admiral is available under the Apache 2 license.

This project uses open source components which have additional licensing terms. The source files / docker images and licensing terms for these open source components can be found at the following locations:

About

Container management solution with an accent on modeling containerized applications and provide placement based on dynamic policy allocation

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Java 79.1%
  • JavaScript 8.8%
  • HTML 3.7%
  • TypeScript 3.4%
  • Go 3.4%
  • CSS 1.0%
  • Other 0.6%