Deploy Gateway container image
Gateway containerization
Itential Gateway can be deployed using a containerized method of deployment.
Prerequisites
Before proceeding, the following prerequisites must be met:
- OCI compliance
- Docker repository access
- AWS CLI on the host OS
For CLI commands, remember to input the desired version for your environment, where applicable (e.g., docker run --name iag_4.3.4). For sample illustration purposes only, version 4.3.4 is used in this article.
Container management platform
Gateway images are compliant with Open Container Initiative (OCI) specifications; however, this guide assumes the use of Docker. Specific instruction for using technologies that manage OCI containers, such as Docker Compose, falls outside the scope of this guide.
Docker repository access
Gateway images are hosted on the Itential Docker repository. Contact your Itential Account Manager to obtain the credential information needed to download images from this repository, including your:
- Access key ID
- Secret access key
AWS command line interface
Amazon Web Services Command Line Interface (AWS CLI) must be installed on your host operating system (OS).
For CLI commands, remember to input the desired version for your environment, where applicable.
Log into the Itential Docker repository
Before you can begin working with Gateway containers, you must log into the Itential Docker repository. Issue the following command.
Pull container images
To download images from the container registry, issue a docker pull command.
Start a Gateway container
To start a Gateway container, issue the following commands.
Create Docker network
Start container
Gateway dependencies
The Gateway dependencies must be running in your environment. This guide assumes these dependencies will be hosted via containers. However, dependencies may also be hosted via stand-alone servers, as they would be in a non-containerized Gateway application.
Gateway andItential Platform must be on the same Docker network for each application to communicate with the other.
Use the Gateway image
To start a Gateway container, issue the following command:
The host_machine_ip, host_port_number, and container_port_number fields should be added and should match theItential Platform container docs. The Gateway port is 8083.
Referring to a feature release version of Gateway (e.g., automation-gateway:4.3.0) will result in the latest maintenance release of that version being run. Itential recommends using a specific maintenance release version (e.g., automation-gateway:4.3.4) in production environments.
Set up Gateway database persistence
The default behavior of the Gateway container is to reset the Gateway database once the container is stopped using the docker-compose down command.
For the Gateway database to persist so that it is still available if the container is restarted or stopped, set up a volume to host the database on the host machine.
Build a customized Gateway image
The Gateway image does not have root access. If packages that require root access need to be added to the image, Itential recommends that you build a new Gateway image that adds the packages.
The following Dockerfile example builds a new Gateway image that adds the git package.
Gateway properties
All the properties listed in the properties.yml file can be configured using environment variables.
For each property, place the text automation_gateway_ in front of the Gateway property name.
Example
Learn more
- Example Docker Compose files can be found in the Itential Open Source GitLab repository. Documentation for these examples is provided in README files located throughout the project.
- To use Itential Gateway Docker images, see the demo examples provided at Docker Compose examples Gateway.