Scope
- JobScheduler Agent is operated with a Docker container.
- Prerequisites
- Consider to prepare the files indicated with chapter Build.
Build
The following files are required for the build context:
Dockerfile
- Start Script
start_jobscheduler_agent.sh
- JobScheduler Agent tarball is available for download.
Dockerfile
Download: Dockerfile
- Explanations
- Line 1: We start from an Alpine image that includes JDK 8. Newer Java version can be used, see Which Java versions is JobScheduler available for?
- Line 5: Consider that $UID provides the numeric ID of the account that the JobScheduler Agent installation inside the Docker container is performed for. This numeric ID typically starts above 1000 and should correspond to the account that is used on the Docker host, i.e. the account on the Docker Host and the account inside the container should use the same numeric ID. This mechanism simplifies exposure of the Docker container's file system.
- Line 8-9: Adjust the JobScheduler release number as required.
- Line 16-19: The Agent tarball is copied and extracted to the container.
- Line 22-23: Optionally a keystore file with an SSL private key and public certificate can be provided for use of the Agent with the HTTPS protocol
- Line 26-28: Optionally directories are created and later on mounted to the Docker host for file watching by the Agent.
- Line 31-33: An account and group "jobscheduler" is created that is handed over ownership of installed files.
- Line 36-37: The start script is copied to the container, see below chapter Start Script.
- Line 40: The Agent's run-time directory is exposed to a volume for later mount to the Docker host.
- Line 42: Optionally the file watching directory is exposed to a volume for later mount to the Docker host.
- Line 45: Port 4445 is exposed for later mapping. This port is used for the connection between JobScheduler Master and Agent.
- Line 48: The account "jobscheduler" that is the owner of the installation is exposed for later mapping. This account should be mapped at run-time to the account in the Docker Host that will mount the exposed volume.
- Line 50: The start script is executed to launch the JobScheduler Agent daemon.
Start Script
The start script for Agents comes straightforward:
- Explanations
- Line 5: The standard start script
jobscheduler_agent.sh
is used. Thetail
command prevents the start script from terminating in order to keep the container alive. - Line 8: Optionally the Agent can be started for use with the HTTPS protocol on a neetwork interface and the HTTP protocol on the localhost interface.
- Line 5: The standard start script
Build Command
There are a number of ways how to write a build command, find the following example:
A typical build command could look like this:
- Explanations
- Line 7: The script starts from the naming convention that the name of the current directory represents the image name.
- Line 9: The script assumes a sub-folder
build
to represent the Docker build context. Consider use of the--build-arg
that injects theUSER_ID
environment variable into the image with the numeric ID of the account running the build command. This simplifies later access to the volume that optionally can be exposed by the Dockerfile as the same numeric user ID and group ID inside and outside of the container are used.
Run
There are a number of ways how to write a run command, find the following example:
A typical run command could look like this:
- Explanations
- Using a common Docker network with the
--network
option for JobScheduler components allows direct access to resources such as ports within the Docker network. - The
RUN_USER_ID
variable is populated with the numeric ID of the account and the group that executes the run command. This value is assigned the--user
option in order to inject the account information into the container (replacing the account specified with theUSE jobscheduler
instruction in the Dockerfile. - Port
4445
for access to JobScheduler Agent by a Master can optionally be mapped to some outside port. This is not required if a Docker network is used. - Specify a
data
directory to be created that is referenced with the--volume
option to expose the run-time directory of the JobScheduler Agent.
- Using a common Docker network with the
Stop
There are a number of ways how to terminate an Agent and its container, find the following example:
A typical stop command could look like this:
- Explanations
- Before stopping the container the Agent daemon is terminated by use of its start script. This offers the following modes for termination:
stop
: terminate Agent normally, wait for any running tasks to complete.abort
: kill any running tasks and terminate the Agent abnormally.kill
: kill immediately the Agent process and any running tasks.
- Only after the Agent daemon is terminated the container can be stopped or killed.
- Before stopping the container the Agent daemon is terminated by use of its start script. This offers the following modes for termination: