Solution default test configuration

Specifies solution default test configuration. This values are used for the test step of a solution. The default configuration is used for all solutions in the Solution Envoy if there is no specific test configuration for a solution. This has to be done for each new Solution Envoy.

  • Open the configuration-management
  • Use POST method Create a solution default configuration for creating the configuration.
Note: You can find the URL for the configuration-management by inspecting the route of the same name
$ oc -n zen get routes | grep configuration-management
configuration-management ssob-config.apps.{your.cluster.domain} / configuration-management https reencrypt/Redirect None

Request parameters

Parameter Type Description
configurationName path parameter (String) The name of the configuration: ssob-integration-test
runtimeName path parameter (String) The name of the specific Solution Envoy, e.g. cpd-runtime-default
data body parameter (YAML) The configuration values (Body Parameters)

Configuration Parameters (body parameter)

The following table lists the required configurable parameters for the solution default configuration.

Parameter Description
user.user-alias.default Username used for executing the solution-tests (e.g. dev-envoy-test-user). The test user must exist or be created in the identity provider and the realm the the Solution Envoy is using.
user.<test-username e.g. dev-envoy-test-user> Password used for the specified default user for executing the solution-tests (e.g. password123)

Examples

Example body parameter for a typical development stage (data):

user:
  dev-envoy-test-user: "password123"
user-alias:
  default: "dev-envoy-test-user"