profiles

Namespace

profiles

Source:

Methods

(static) get(name) → {Promise.<Object>}

Description:
Source:
Examples

Usage

const profile = await Qarnot.profiles.get('docker-batch');
console.log(profile);

Output

{
  name: null,
  constants: [
    {
      name: 'DOCKER_REPO',
      value: 'library/ubuntu',
      description: 'Docker image to use. E.g: library/ubuntu ' +
        '(official images must be prefixed by ' +
        "'library/')"
    },
    {
      name: 'DOCKER_TAG',
      value: 'latest',
      description: 'Docker tag. E.g: latest, trusty, ...'
    },
    {
      name: 'DOCKER_REGISTRY_LOGIN',
      value: '',
      description: 'Your login on the Docker Hub, if you ' +
        'want to use your private Docker images'
    },
    {
      name: 'DOCKER_REGISTRY_PASSWORD',
      value: '',
      description: 'Your password on the Docker Hub, if you ' +
        'want to use your private Docker images'
    },
    {
      name: 'DOCKER_USER',
      value: '',
      description: 'The user the command will be run as. Leave empty ' +
        'to use the default user from your Docker image.'
    },
    {
      name: 'DOCKER_HOST',
      value: '',
      description: 'The hostname inside the container'
    },
    {
      name: 'DOCKER_CMD',
      value: '',
      description: 'The command to run in the container. ' +
        'The ENTRYPOINT and CMD are honored.'
    },
    {
      name: 'DOCKER_PROGRESS1',
      value: '',
      description: 'One of the Regex used for progress ' +
        'tracking. See developer documentation for ' +
        'details.'
    },
    {
      name: 'DOCKER_PROGRESS2',
      value: '',
      description: 'Another of the Regex used for progress ' +
        'tracking. See developer documentation for ' +
        'details.'
    },
    {
      name: 'DOCKER_PROGRESS3',
      value: '',
      description: 'Another of the Regex used for progress ' +
        'tracking. See developer documentation for ' +
        'details.'
    },
    {
      name: 'DOCKER_WORKDIR',
      value: '${DOCKER_WORKDIR}',
      description: 'Set task working directory (will be passed as -w to ' +
        'docker). This does NOT change the               ' +
        'location of resources and where results should be ' +
        'written, this location is still found in the $TASK_PATH ' +
        'env variable. '
    }
  ]
}
Parameters:
Name Type Description
name String name of the profile
Returns:
Type
Promise.<Object>

(static) list() → {Promise.<Array.<String>>}

Description:
Source:
Examples

Usage

const profiles = await Qarnot.profiles.list();
console.log(profiles);

Output

[
  'blender',
  'docker-batch',
  'python',
  ...
]
Returns:
Type
Promise.<Array.<String>>