All Projects → ICTU → docker-dashboard

ICTU / docker-dashboard

Licence: Apache-2.0 license
Yet another dashboard for Docker, but better.

Programming Languages

javascript
184084 projects - #8 most used programming language
coffeescript
4710 projects
HTML
75241 projects
CSS
56736 projects
API Blueprint
66 projects
shell
77523 projects

Big Boat

Build Status Docker Stars Docker Pulls GitHub tag GitHub commits license

Yet another docker dashboard, but bigger & better.

Instances screenshot

Appstore screenshot

Configuration

Create a configuration file in the root of the project: settings.json. Populate this file with the settings template listed below.

{
    "project": "<projectname>",
    "elasticSearchUrl": "http://<elasticsearch_host>:9200",
    "agentUrl":"http://<agent_url>",
    "agentAuthToken": "<agent_auth_token",
    "admin": true,
    "public": {
      "remoteAppstoreUrl": "http://<remoteAppstoreUrl>"
    }
}

Start dashboard

ROOT_URL=<root_url_of_app> meteor --settings settings.json

Deployment keys

It is possible to define deploy keys for automation. These keys will allow API access without the need for specific BigBoat users. To use these keys start the dashboard with the following environment variable: -DEPLOY_KEYS This is a comma separated list of deploy keys, e.g: key1,key2

Application Definition

Environment variables (4.1.6)

The following default variables are accessible within the context of a service in your application definition. These variables are also injected in each service container.

  • BIGBOAT_PROJECT
  • BIGBOAT_APPLICATION_NAME
  • BIGBOAT_INSTANCE_NAME
  • BIGBOAT_SERVICE_NAME

See use case example for project 'innovation' and instance name 'test1' below.

name: alpine
version: var_exp_multi_service

os1:
  image: alpine
  command: sh -c "while true; do sleep 600; done"
  environment:
    - MY_PROJECT=$BIGBOAT_PROJECT
    - MY_APPLICATION=$BIGBOAT_APPLICATION_NAME
    - MY_INSTANCE=$BIGBOAT_INSTANCE_NAME
    - MY_SERVICE=$BIGBOAT_SERVICE_NAME
    - MY_FQDN=${BIGBOAT_SERVICE_NAME}.${BIGBOAT_INSTANCE_NAME}.${BIGBOAT_PROJECT}.ictu

os2:
  image: alpine
  command: sh -c "while true; do sleep 600; done"
  environment:
    - MY_PROJECT=$BIGBOAT_PROJECT
    - MY_APPLICATION=$BIGBOAT_APPLICATION_NAME
    - MY_INSTANCE=$BIGBOAT_INSTANCE_NAME
    - MY_SERVICE=$BIGBOAT_SERVICE_NAME
    - MY_FQDN=${BIGBOAT_SERVICE_NAME}.${BIGBOAT_INSTANCE_NAME}.${BIGBOAT_PROJECT}.ictu

In the example the environment variables for service 'os1' would be expanded as follows:

  • MY_PROJECT=innovation
  • MY_APPLICATION=alpine
  • MY_INSTANCE=test1
  • MY_SERVICE=os1
  • MY_FQDN=os1.test1.innovation.ictu

While the environment variables for service 'os2' would be expanded to:

  • MY_PROJECT=innovation
  • MY_APPLICATION=alpine
  • MY_INSTANCE=test1
  • MY_SERVICE=os2
  • MY_FQDN=os2.test1.innovation.ictu

The MY* variables defined under the 'environment' list for each service would be exported as envs inside the 'os1' and 'os2' service container.

API

All API endpoints are implemented as REST services, unless explicitly mentioned otherwise.

Application definitions

This api allows for CRUD operations on the application definitions stored by the dashboard.

Endpoint: /api/v1/appdef/:name/:version

Retrieve an application definition

An existing application definition can be retrieved with the HTTP GET operation. It will return the complete application definition as YAML text.

curl http://BIG_BOAT/api/v1/appdef/myApp/1.0

Create a new application definition

A new application definition can be created and updated with the HTTP PUT operation. The example shows how to create a new application definition myNewApp with version 1.0 from the application definition stored in appdef.yaml.

curl -H "Content-Type: text/plain" -X PUT --data-binary @appdef.yaml \
http://BIG_BOAT/api/v1/appdef/myNewApp/1.0

Update an application definition

An existing application definition can be updated with HTTP POST or PUT operations. The POST operation requires that the application definition already exists whereas PUT will also create it. The example shows how to update an existing application definition. If the definition does not exist, this call will fail with an error.

curl -H "Content-Type: text/plain" -X POST --data-binary @appdef.yaml \
http://BIG_BOAT/api/v1/appdef/myNewApp/1.0

Delete an application definition

An existing application definition can be deleted with the HTTP DELETE operation.

curl -X DELETE http://BIG_BOAT/api/v1/appdef/myNewApp/1.0

Application instances

You can get a list of instance names.

All instances:

curl http://BIG_BOAT/api/v1/instances

All versions of myNewApp:

curl http://BIG_BOAT/api/v1/instances/myNewApp

Version 1.0 of myNewApp:

curl http://BIG_BOAT/api/v1/instances/myNewApp/1.0

API Examples

Before running the examples make sure you have a file called appdef.yml in your current working dir. It must contain a valid application definition. The simplest one you can use is:

name: nginx
version: 1

www:
    image: nginx

Below is an example of how to create, inspect and remove an application definition and how to create an instance from it.

# create the appdef
curl -H "Content-Type: text/plain" -X PUT --data-binary @appdef.yml http://BIG_BOAT/api/v1/appdef/nginx/1.0

# retrieve the appdef
curl http://BIG_BOAT/api/v1/appdef/nginx/1.0

# start an instance
curl http://BIG_BOAT/api/v1/start-app/nginx/1.0/my-nginx

# check the state
curl http://BIG_BOAT/api/v1/state/my-nginx

# get instances for a certain definition
curl http://BIG_BOAT/api/v1/instances/nginx/1.0

# finally stop the instance
curl http://BIG_BOAT/api/v1/stop-app/my-nginx

User Accounts

The dashboard supports the following authentication methods:

  • LDAP

LDAP

Add the following object to your Meteor settings file:

"ldap" : {
   "serverAddr": "ldap://myldap",
   "serverPort": "389",
   "baseDn": <<baseDn>>,
   "superDn": "<<superDn>>",
   "superPass" : <<superPassword>>,
   "admins" : ["user1", "user2"]
 }

After starting the dashboard you will be able to authenticate against the specified ldap server. You specify your username (uid) and password as listed in the LDAP directory. The superDn and superPass are used to perform an ldap search to determine the usersDn based on the passed uid. After a userDn has been found the dashboard will bind to ldap with the user credentials. On a succesful bind the account will be created and added to the user collection.

How to run the regression tests

Start BigBoat and:

npm run art -- --baseUrl=http://url.of.the.running.bigboat
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].