$ sudo podman pull quay.io/openshift/origin-tests:4.1
cluster Loader is a tool that deploys large numbers of various objects to a cluster, which creates user-defined cluster objects. Build, configure, and run cluster Loader to measure performance metrics of your OpenShift Container Platform deployment at various cluster states.
cluster Loader is included in the origin-tests
container image.
To pull the origin-tests
container image, run:
$ sudo podman pull quay.io/openshift/origin-tests:4.1
Execute cluster Loader using the built-in test configuration, which deploys five template builds and waits for them to complete:
$ sudo podman run -v ${LOCAL_KUBECONFIG}:/root/.kube/config -i quay.io/openshift/origin-tests:4.1 /bin/bash -c 'export KUBECONFIG=/root/.kube/config && \ openshift-tests run-test "[Feature:Performance][Serial][Slow] Load cluster should load the \ cluster [Suite:openshift]"'
Alternatively, execute cluster Loader with a user-defined configuration by
setting the environment variable for VIPERCONFIG
:
$ sudo podman run -v ${LOCAL_KUBECONFIG}:/root/.kube/config -i quay.io/openshift/origin-tests:4.1 /bin/bash -c 'export KUBECONFIG=/root/.kube/config && \ export VIPERCONFIG=config/test && \ openshift-tests run-test "[Feature:Performance][Serial][Slow] Load cluster should load the \ cluster [Suite:openshift]"'
In this example, there is a subdirectory called config/ with a configuration file called test.yml. In the command line, exclude the extension of the configuration file, as the tool will automatically determine the file type and extension.
The tool creates multiple namespaces (projects), which contain multiple templates or pods.
Locate the configuration files for cluster Loader in the config/
subdirectory.
The pod files and template files referenced in these configuration examples are
found in the content/
subdirectory.
cluster Loader’s configuration file is a basic YAML file:
provider: local (1)
clusterLoader:
cleanup: true
projects:
- num: 1
basename: clusterloader-cakephp-mysql
tuning: default
ifexists: reuse
templates:
- num: 1
file: ./examples/quickstarts/cakephp-mysql.json
- num: 1
basename: clusterloader-dancer-mysql
tuning: default
ifexists: reuse
templates:
- num: 1
file: ./examples/quickstarts/dancer-mysql.json
- num: 1
basename: clusterloader-django-postgresql
tuning: default
ifexists: reuse
templates:
- num: 1
file: ./examples/quickstarts/django-postgresql.json
- num: 1
basename: clusterloader-nodejs-mongodb
tuning: default
ifexists: reuse
templates:
- num: 1
file: ./examples/quickstarts/nodejs-mongodb.json
- num: 1
basename: clusterloader-rails-postgresql
tuning: default
templates:
- num: 1
file: ./examples/quickstarts/rails-postgresql.json
tuningsets: (2)
- name: default
pods:
stepping: (3)
stepsize: 5
pause: 0 s
rate_limit: (4)
delay: 0 ms
1 | Optional setting for end-to-end tests. Set to local to avoid extra log messages. |
2 | The tuning sets allow rate limiting and stepping, the ability to create several batches of pods while pausing in between sets. cluster Loader monitors completion of the previous step before continuing. |
3 | Stepping will pause for M seconds after each N objects are created. |
4 | Rate limiting will wait M milliseconds between the creation of objects. |
This example assumes that references to any external template files or podspec files are also mounted into the container.
Field | Description |
---|---|
|
Set to |
|
A sub-object with one or many definition(s). Under |
|
A sub-object with one definition per configuration. |
|
An optional sub-object with one definition per configuration. Adds synchronization possibilities during object creation. |
Field | Description |
---|---|
|
An integer. One definition of the count of how many projects to create. |
|
A string. One definition of the base name for the project. The count of
identical namespaces will be appended to |
|
A string. One definition of what tuning set you want to apply to the objects, which you deploy inside this namespace. |
|
A string containing either |
|
A list of key-value pairs. The key is the ConfigMap name and the value is a path to a file from which you create the ConfigMap. |
|
A list of key-value pairs. The key is the secret name and the value is a path to a file from which you create the secret. |
|
A sub-object with one or many definition(s) of pods to deploy. |
|
A sub-object with one or many definition(s) of templates to deploy. |
Field | Description |
---|---|
|
An integer. The number of pods or templates to deploy. |
|
A string. The docker image URL to a repository where it can be pulled. |
|
A string. One definition of the base name for the template (or pod) that you want to create. |
|
A string. The path to a local file, which is either a PodSpec or template to be created. |
|
Key-value pairs. Under |
Field | Description |
---|---|
|
A string. The name of the tuning set which will match the name specified when defining a tuning in a project. |
|
A sub-object identifying the |
|
A sub-object identifying the |
Field | Description |
---|---|
|
A sub-object. A stepping configuration used if you want to create an object in a step creation pattern. |
|
A sub-object. A rate-limiting tuning set configuration to limit the object creation rate. |
Field | Description |
---|---|
|
An integer. How many objects to create before pausing object creation. |
|
An integer. How many seconds to pause after creating the number of objects
defined in |
|
An integer. How many seconds to wait before failure if the object creation is not successful. |
|
An integer. How many milliseconds (ms) to wait between creation requests. |
Field | Description |
---|---|
|
A sub-object with |
|
A boolean. Wait for pods with labels matching |
|
A boolean. Wait for pods with labels matching |
|
A list of selectors to match pods in |
|
A string. The synchronization timeout period to wait for pods in |
If the IDENTIFIER
parameter is not defined in user templates, template
creation fails with error: unknown parameter name "IDENTIFIER"
. If you deploy
templates, add this parameter to your template to avoid this error:
{ "name": "IDENTIFIER", "description": "Number to append to the name of resources", "value": "1" }
If you deploy pods, adding the parameter is unnecessary.