Configuration
Overview
This section explains how to completely configure a WorkflowGen database container. Everything is configurable via an environment variable.
This image is based on microsoft/mssql-server-windows-express (SQL Server 2017) for the Windows LTSC 2019 version, and on mcr.microsoft.com/mssql/server (SQL Server 2019) for the Linux (Ubuntu 18.04) version.
To support Windows LTSC 2019, the base image has been rebuilt using the open sourced Dockerfile and hosted on Advantys' Docker Hub repository. Therefore, the actual base image is advantys/mssql-server-windows-express.
The Windows version of this image is intended for development and testing only. For production workloads, use the Linux version.
Environment variables
Variables specific to the base images
Some variables are available in the base images that provide functionalities related to SQL Server. For the Linux version, see the mcr.microsoft.com/mssql/server Docker Hub page and the Deploy and connect to SQL Server Linux containers Microsoft article. For the Windows version, see the microsoft/mssql-server-windows-express Docker Hub page.
Some environment variables in the base images are required. For example, you have to provide a value for the SA_PASSWORD
environment variable.
Variables specific to WorkflowGen
The WorkflowGen database container adds special environment variables to enable additional features related to WorkflowGen. The following table provides descriptions for each of them:
Variable | Description & values |
| The name of the WorkflowGen database Default value: |
| Sets the WorkflowGen database to contain database users for more portability (see contained database authentication Server configuration option for more information) Possible values: |
| The username of the database user that has access to the WorkflowGen database Default value: |
| Required variable The password of the database user that has access to the WorkflowGen database |
| Do not modify for Linux version Internal path to the Default value:
|
| The username of the WorkflowGen administrative user Default value: |
| Required variable The password of the WorkflowGen administrative user |
| Indicates if the authentication method of WorkflowGen is applicative or not Possible values: |
Format-based environment variables
Secrets
When using an orchestrator such as Kubernetes, you'll probably want to secure secrets using their built-in secret management tools. Follow the specific guide for your orchestrator to know how to create a secret.
For Kubernetes, see https://kubernetes.io/docs/concepts/configuration/secret/.
It's recommended to inject secrets into WorkflowGen containers as files because they won't be exposed as environment variables and they'll be removed from the container when it's stopped or removed.
Secrets management is only possible using an orchestrator.
In order to get the secret value in the file, you need to suffix any environment variable you want to get the value of in this way with _FILE
and set its value to the path of the file containing the secret. The container will then get the value in the file at the specified path and set the environment variable without the suffix with that value.
For example, let's say you want to set sa account password in SQL Server to strong(!)Pass
using the environment variable SA_PASSWORD
, but you want to use a secret for the value. All you have to do is suffix the environment variable name with _FILE
so that it becomes SA_PASSWORD_FILE
. Then, set the value of this variable to the path of the file containing the password.
📌 Example with Docker Swarm orchestrator
For Kubernetes, you would create a ConfigMap that complements your secret like this:
Then, you would map the ConfigMap as environment variables and mount the secret as a volume like this:
Using an orchestrator
Kubernetes
Kubernetes also has a built-in object called ConfigMap to manage pod configuration. See the Configure a Pod to Use a ConfigMap Kubernetes article for more information and how to use it. You should use this object to configure environment variables for WorkflowGen.
You can also manage sensitive information by protecting it further in the orchestrator in a secure area. See the Secrets Kubernetes article for more information and instructions on how to use it. You should use this object to protect sensitive information such as the WorkflowGen license key, usernames, passwords, cryptographic keys, API keys, etc.
Using an external configuration manager
Some popular configuration managers support Docker containers out-of-the-box. Here are a few links to their specific documentation to get you started:
Chef
Ansible
Puppet
About security features
The Linux version of the database has some security features that can be used to improve the overall security of the database. For more information on security features in SQL Server for Linux, see Configure SQL Server container images on Docker in the Microsoft SQL Server documentation.
The Windows version of the container doesn't have the security features of the Linux version. It's advised to use the Windows version only for development and testing purposes.
Performance & high availability
You can configure replication with this container, but you'll have to make a custom image. For more information about making a custom image, see the Custom Image page of this section. For more information about configuring replication in SQL Server, see Configure a SQL Server Availability Group for read-scale on Linux in the Microsoft documentation.
Use with Kubernetes
You should always deploy the database container within a StatefulSet so that each container has its own separated storage. It also ensures that each container has a unique DNS name inside the cluster so that it can be found easily by other containers. You can also configure each of the instances based on an incremental identifier so that you can set a read/write instance and several read-only instances. Here's an example of a simple StatefulSet deployment with the WorkflowGen database container:
You can use this example as a starting point to configure multiple database containers. For more information about StatefulSets, see StatefulSets in the Kubernetes documentation. You might need custom code to be able to configure multiple instances properly. See the Custom Image page of this section for more information about how you can add custom code to the container.
Last updated