WorkflowGen Documentation
7.14 to 7.22
7.14 to 7.22
  • WorkflowGen for Docker
  • Getting Started
  • Main Architecture Description
  • SQL Server Hosting Options
  • Business Continuity & Disaster Recovery
  • Log Gathering & Application Metrics
  • Update Management
  • Custom Domain Names
  • WorkflowGen Image
    • Recommended Architectures
    • Configuration
    • File Management
    • Custom Image
    • TLS/SSL
  • WorkflowGen Database Image
  • Configuration
  • File Management
  • Custom Image
  • WorkflowGen Upgrade Image
    • Usage
    • Configuration
  • Kubernetes
    • Getting Started
    • TLS/SSL
    • Cluster Management Tools
    • WorkflowGen Helm Chart
    • Multitenancy
Powered by GitBook
On this page
  • Overview
  • Environment variables
  • Variables specific to the base images
  • Variables specific to WorkflowGen
  • Format-based environment variables
  • Secrets
  • Using an orchestrator
  • Kubernetes
  • Using an external configuration manager
  • Chef
  • Ansible
  • Puppet
  • About security features
  • Performance & high availability
  • Use with Kubernetes
Export as PDF

Configuration

PreviousTLS/SSLNextFile Management

Last updated 1 year ago

Overview

This section explains how to completely configure a WorkflowGen database container. Everything is configurable via an environment variable.

  • This image is based on (SQL Server 2017) for the Windows LTSC 2019 version, and on (SQL Server 2019) for the Linux (Ubuntu 18.04) version.

  • To support Windows LTSC 2019, the base image has been rebuilt using the and hosted on Advantys' Docker Hub repository. Therefore, the actual base image is .

  • 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 Docker Hub page and the Microsoft article. For the Windows version, see the 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

WFGEN_DATABASE_NAME

The name of the WorkflowGen database

Default value: WFGEN

WFGEN_DATABASE_CONTAINMENT

Possible values: Y (default), N

WFGEN_DATABASE_USER_USERNAME

The username of the database user that has access to the WorkflowGen database

Default value: WFGEN_USER

WFGEN_DATABASE_USER_PASSWORD

Required variable

The password of the database user that has access to the WorkflowGen database

WFGEN_DATABASE_FILE_PATH

Do not modify for Linux version

Internal path to the .mdf and .ldf database files inside the container

Default value:

  • Windows: C:\wfgen\sql

  • Linux: /var/opt/mssql/data

WFGEN_ADMIN_USERNAME

The username of the WorkflowGen administrative user

Default value: wfgen_admin

WFGEN_ADMIN_PASSWORD

Required variable

The password of the WorkflowGen administrative user

WFGEN_AUTH_APPLICATION

Indicates if the authentication method of WorkflowGen is applicative or not

Possible values: Y (default), N

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.

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 _FILEso 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

# Create the secret for the license serial number
'strong(!)Pass' | docker secret create SA_PASSWORD -

# Create the container service in Docker Swarm
docker service create `
    # ...
    --env WFGEN_APP_SETTING_ApplicationSerialNumber_FILE=/run/secrets/SA_PASSWORD `
    --secret SA_PASSWORD `
    # ...
    advantys/workflowgen-sql:7.18.3-ubuntu-18.04
# Create the secret for the license serial number
echo 'strong(!)Pass' | docker secret create SA_PASSWORD -

# Create the container service in Docker Swarm
docker service create \
    # ...
    --env WFGEN_APP_SETTING_ApplicationSerialNumber_FILE=/run/secrets/SA_PASSWORD \
    --secret SA_PASSWORD \
    # ...
    advantys/workflowgen-sql:7.18.3-ubuntu-18.04

For Kubernetes, you would create a ConfigMap that complements your secret like this:

apiVersion: v1
kind: ConfigMap
metadata:
  name: database-config
data:
  SA_PASSWORD_FILE: /mnt/secrets/SA_PASSWORD
---
apiVersion: v1
kind: Secret
type: Opaque
metadata:
  name: database-secret
data:
  # "c3Ryb25nKCEpUGFzcwo=" is the base64-encoded value of "strong(!)Pass"
  SA_PASSWORD: 'c3Ryb25nKCEpUGFzcwo='

Then, you would map the ConfigMap as environment variables and mount the secret as a volume like this:

apiVersion: apps/v1
kind: StatefulSet
metadata:
  name: wfgen-database
spec:
  selector:
    matchLabels:
      # ...
  template:
    metadata:
      labels:
        # ...
    spec:
      containers:
        - name: database
          image: advantys/workflowgen-sql:7.18.3-ubuntu-18.04
          # ...
          envFrom: # ConfigMap as environment variables
            - configMapRef:
                name: database-config
          # ...
          volumeMounts:
            # ...
            - mountPath: /mnt/secrets # Mount Secret as a volume
              readOnly: true
              name: secrets
      volumes:
        # ...
        - name: secrets # Mount Secret as a volume
            secret:
              secretName: database-secret

Using an orchestrator

Kubernetes

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 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

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:

apiVersion: v1
kind: Service
metadata:
  name: database
spec:
  type: ClusterIP
  clusterIP: None
  ports:
    - port: 1433
      targetPort: mssql
      protocol: TCP
      name: mssql
  selector:
    app.kubernetes.io/name: workflowgen
    app.kubernetes.io/component: database
---
apiVersion: apps/v1
kind: StatefulSet
metadata:
  name: database
spec:
  replicas: 1
  serviceName: database
  selector:
    matchLabels:
      app.kubernetes.io/name: workflowgen
      app.kubernetes.io/component: database
  template:
    metadata:
      labels:
        app.kubernetes.io/name: workflowgen
        app.kubernetes.io/component: database
    spec:
      terminationGracePeriodSeconds: 10
      nodeSelector:
        kubernetes.io/os: linux
      containers:
        - name: database
          image: advantys/workflowgen-sql:7.18.3-ubuntu-18.04
          imagePullPolicy: Always
          securityContext:
            runAsUser: 0
            runAsGroup: 0
          resources:
            requests:
              memory: "1Gi"
              cpu: "500m"
            limits:
              memory: "2Gi"
              cpu: "1"
          envFrom:
            - configMapRef:
                name: database-config
          ports:
            - name: mssql
              containerPort: 1433
          livenessProbe:
            initialDelaySeconds: 30
            timeoutSeconds: 5
            exec:
              command:
                - pwsh
                - -NoLogo
                - -NoProfiles
                - /usr/local/bin/healthcheck.ps1
          readinessProbe:
            initialDelaySeconds: 20
            timeoutSeconds: 5
            exec:
              command:
                - pwsh
                - -NoLogo
                - -NoProfiles
                - /usr/local/bin/healthcheck.ps1
          volumeMounts:
            - mountPath: /var/opt/mssql
              name: sqldata
            - mountPath: /mnt/secrets
              readOnly: true
              name: secrets
      volumes:
        - name: secrets
            secret:
              secretName: database-sec
  volumeClaimTemplates:
    - metadata:
        name: sqldata
      spec:
        accessModes:
          - ReadWriteOnce
        storageClassName: default
        resources:
          requests:
            storage: 100Gi

Sets the WorkflowGen database to contain database users for more portability (see for more information)

For Kubernetes, see .

Kubernetes also has a built-in object called ConfigMap to manage pod configuration. See the 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 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.

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 in the Microsoft SQL Server documentation.

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 page of this section. For more information about configuring replication in SQL Server, see in the Microsoft documentation.

You can use this example as a starting point to configure multiple database containers. For more information about StatefulSets, see in the Kubernetes documentation. You might need custom code to be able to configure multiple instances properly. See the page of this section for more information about how you can add custom code to the container.

microsoft/mssql-server-windows-express
mcr.microsoft.com/mssql/server
open sourced Dockerfile
advantys/mssql-server-windows-express
mcr.microsoft.com/mssql/server
Deploy and connect to SQL Server Linux containers
microsoft/mssql-server-windows-express
https://kubernetes.io/docs/concepts/configuration/secret/
Configure a Pod to Use a ConfigMap
Secrets
Docker Cookbook
Chef and Kubernetes
Ansible and Docker
How to run Puppet in Docker
Configure SQL Server container images on Docker
Custom Image
Configure a SQL Server Availability Group for read-scale on Linux
StatefulSets
Custom Image
contained database authentication Server configuration option
k8s – Manage Kubernetes (K8s) objects
How to Install and Configure Kubernetes with the Puppet Kubernetes Module