osde2e

module
v0.0.0-...-f7ecfc8 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: May 3, 2024 License: Apache-2.0

README

OSDe2e

GoDoc

Introduction

A comprehensive test framework used for Service Delivery to test all aspects of Managed OpenShift Clusters (OpenShift Dedicated). The data generated by the different test coverage is used to inform product releases and decisions.

OSDe2e key features are:

  • Portable test framework that can run anywhere to validate end to end test workflows
    • Run locally from a developers workstation or from a CI application
  • Supports create/delete different cluster deployment types
    • ROSA, ROSA Hosted Control Plane (e.g. HyperShift), OSD on AWS
    • OSD on GCP
    • Azure (Azure Red Hat OpenShift)
  • Performs cluster health checks to ensure cluster is operational prior to running tests
  • Perform cluster upgrades
  • Captures artifacts for later use, such as
    • Cluster install/uninstall logs
    • Test logs
    • Metrics
    • Metadata
    • Must gather artifacts
  • Tests OSD operators along with other OpenShift features from a customer/SRE point of view
  • Provides a test harness to validate Add Ons

When osde2e is invoked, the standard workflow is followed:

  • Load configuration
  • Cluster deployment (when not leveraging an existing cluster)
  • Verify the health of the cluster
  • Run tests (pre upgrade)
  • Collect logs, metrics and metadata
  • Upgrade cluster (when defined)
  • Verify the health of the cluster post upgrade
  • Run tests (post upgrade - when upgrade is defined)
  • Collect logs, metrics and metadata
  • Cluster deprovision (when this is toggled on)

Prerequisites

Prior to running osde2e, make sure you meet the minimal prerequisites defined below:

  • Navigate to OpenShift Cluster Manager (OCM) to obtain an OpenShift offline token.
    • Save your token into the environment variable OCM_TOKEN for later usage
  • Verify (submit a request if required to ocm resources) your Red Hat account has adequate quota for deploying clusters based on your preferred deployment type
  • A go workspace running the minimal version defined in the go.mod

Run

OSDe2e can be invoked by one of two ways. Refer to each section below to learn how to run it.

From Source

Running from source requires you to build the osde2e binary. Follow the steps below to do this:

git clone https://github.com/openshift/osde2e.git
cd osde2e
go mod tidy
make build

On completion of the make build target, the generated binary will reside in the directory ./out/. Where you can then invoke osde2e ./out/osde2e --help.

From Container Image

Running from a container image using a container engine (e.g. docker, podman). You can either build the image locally or consume the public image available on quay.io.

export CONTAINER_ENGINE=<docker|podman>

# Build Image
make build-image
$CONTAINER_ENGINE run quay.io/app-sre/osde2e:latest <args>

# Pull Image
$CONTAINER_ENGINE pull quay.io/app-sre/osde2e:latest
$CONTAINER_ENGINE run quay.io/app-sre/osde2e:latest <args>

Config Input

OSDe2e provides multiple ways for you to provide input to tailor what test workflows you wish to validate. It provides four ways for you to provide input (order is lowest to highest precedence):

  • Use pre-canned composable default configs
  • Provide a custom config
  • Environment variables
  • Command line options

It is highly recommended to leave sensitive settings as environment variables (e.g. OCM_TOKEN). This way the chance of these settings defined in a custom config file are not checked into source control.

Pre-Canned Default Configs

The configs package provides pre-canned default configs available for you to use. These config files are named based on what action they are performing. Within the config file can contain multiple settings to tailor osde2e.

Example config stage:

This default config is telling osde2e to use the stage OCM environment.

ocm:
  env: stage

You can provide N+1 pre-canned configs to osde2e. Example below will deploy a OSD cluster within the OCM stage environment.

./out/osde2e test --configs aws,stage
Custom Config

The composable configs consist of a number of small YAML files that can all be loaded together. Rather than using the built in configs, you can also elect to build your own custom YAML file and provide that using the --custom-config CLI option.

osde2e test --custom-config ./osde2e.yaml

The custom config below is a basic example for deploying a ROSA STS cluster and running all of the OSD operators tests that do not have the informing label associated to them.

dryRun: false
provider: rosa
cloudProvider:
  providerId: aws
  region: us-east-1
rosa:
  env: stage
  STS: true
cluster:
  name: osde2e
tests:
  ginkgoLabelFilter: Operators && !Informing

You can use both pre-canned default configs and your own custom configs:

./out/osde2e test --configs aws --custom-config ./osde2e.yaml
Environment Variables

Any config option can be passed in using environment variables. Please refer to the config package for exact environment variable names.

Below is an example to spin up a OSD cluster and test it:

OCM_TOKEN=<ocm-token> \
OSD_ENV=prod \
CLUSTER_NAME=my-cluster \
CLUSTER_VERSION=4.12.0 \
osde2e test

These also can be combined with pre-canned default configs and custom configs:

OCM_TOKEN=<ocm-token> \
CLUSTER_VERSION=4.12.0 \
osde2e test --configs prod,e2e-suite
OCM_TOKEN=<ocm-token> \
CLUSTER_VERSION=4.12.0 \
osde2e test --configs prod,e2e-suite

A list of commonly used environment variables are included in Config variables.

Command Line Options

Some configuration settings are also exposed as command-line options. A full list can be displayed by providing --help after the command.

Below is an example of using options for the test command:

./out/osde2e test --cluster-id <cluster-id> \
  --provider stage \
  --skip-health-check \
  --focus-tests "RBAC Operator"

Another example below is you can skip cluster health check, must gather as follows.

POLLING_TIMEOUT=1 \
./out/osde2e test --cluster-id=<cluster-id> \
--configs stage \
--skip-must-gather \
--skip-health-check \
--focus-tests="rh-api-lb-test"

A list of commonly used CLI flags are included in Config variables.

Examples

To see more examples of configuring input for osde2e, refer to the prowgen jobs in the OpenShift release repository owned by the team. These will be always up to date with the latest changes osde2e has to offer.

Cluster Deployments

OSDe2e provides native support for deploying the following cluster types:

  • ROSA
  • ROSA Hosted Control Plane (HyperShift)
  • OSD (OpenShift Dedicated)

You can have osde2e deploy the cluster if a cluster ID is not provided or you can leverage an existing cluster by giving the cluster ID as input at runtime.

You can also provide it a kubeconfig file and osde2e can attempt to target that cluster.

export TEST_KUBECONFIG=<kubeconfig-file>
./out/osde2e test <args>

It may be possible to test against a non Managed OpenShift cluster (a traditional OpenShift Container Platform cluster). Though this will require you to alter the input settings as non managed clusters will not have certain items applied to them like a Managed cluster would (e.g. OSD operators, health checks, etc).

Tests

OSDe2e currently holds all core and operator specific tests and are maintained by the CICD team. Test types range from core OSD verification, OSD operators to scale/conformance.

Currently in flight: OSD operator tests will no longer reside in osde2e repository and live directly alongside the operator source code in its repository

Selecting Tests To Run

OSDe2e supports a couple different ways you can select which tests you would like to run. Below presents the commonly used methods for this:

  • Using the label filter. Labels are ginkgos way to tag test cases. The examples below will tell osde2e to run all tests that have the E2E label applied.
# Command line option
osde2e test --label-filter E2E

# Passed in using a custom config file
tests:
  ginkgoLabelFilter: E2E
  • Using focus strings. Focus strings are ginkgos way to select test cases based on string regex.
# Command line option
osde2e test --focus-tests "OCM Agent Operator"

# Custom config file
tests:
  focus: "OCM Agent Operator"
  • Using a combination of labels and focus strings to fine tune your test selection. The examples below tell osde2e to run all ocm agent operator tests and avoid running the upgrade test case.
# Command line options
osde2e test --label-filter "Operators && !Upgrade" --focus-tests "OCM Agent Operator"

# Custom config file
tests:
  ginkgoLabelFilter: "Operators && !Upgrade"
  focus: "OCM Agent Operator"
Writing Tests

Refer to the Writing Tests document for guidelines and standards.

Third-party (Addon) tests are built as containers that spin up and report back results to OSDe2e. These containers are built and maintained by external groups looking to get CI signal for their product within OSD. The definition of a third-party test is maintained within the managed-tenants repo and is returned via the Add-Ons API.

For more information please see the OSDE2E Test Harness repository to learn more for writing add on tests.

Reporting

Each time osde2e runs it captures as much data that it possible can. Data can include cluster/pod logs, prometheus metrics, test data generated, hive version and osde2e version to identify any possible flakiness in the environment.

Each time tests are executed a JUnit XML file will be generated to capture all the tests that ran and statistics about them (e.g. pass/fail, duration). These XML files will be later used by external applications to present metrics and data for others to see into. An example of this is they are used to present data in TestGrid Dashboards.

CI Jobs

Periodic jobs are run daily validating Managed OpenShift clusters, using osde2e. Check out the CI Jobs page to learn more.

Directories

Path Synopsis
cmd
osde2e/debug
This file contains functions used to implement the '--debug' command line option.
This file contains functions used to implement the '--debug' command line option.
osde2e/update
This file contains functions used to implement the '--debug' command line option.
This file contains functions used to implement the '--debug' command line option.
pkg
common/concurrentviper
Package concurrentviper is a generated thread-safe wrapper for github.com/spf13/viper
Package concurrentviper is a generated thread-safe wrapper for github.com/spf13/viper
common/concurrentviper/gen
Package main generates a threadsafe version of github.com/spf13/viper
Package main generates a threadsafe version of github.com/spf13/viper
common/config
Package config provides the configuration for tests run as part of the osde2e suite.
Package config provides the configuration for tests run as part of the osde2e suite.
common/helper
Package helper provides utilities to assist with osde2e testing.
Package helper provides utilities to assist with osde2e testing.
common/label
Package label implements a standard set of Ginkgo labels for classifying OpenShift Dedicated end to end platform/component tests.
Package label implements a standard set of Ginkgo labels for classifying OpenShift Dedicated end to end platform/component tests.
common/providers/ocmprovider
Package ocmprovider allows for the creation and management of OSD clusters through OCM.
Package ocmprovider allows for the creation and management of OSD clusters through OCM.
common/providers/rosaprovider
Package rosaprovider will allow the provisioning of clusters through rosa.
Package rosaprovider will allow the provisioning of clusters through rosa.
common/runner
Package runner provides a wrapper for the OpenShift extended test suite image.
Package runner provides a wrapper for the OpenShift extended test suite image.
common/spi
Package spi defines the service provider interface for cluster providers.
Package spi defines the service provider interface for cluster providers.
common/templates
Package templates houses utility functions for working with templates.
Package templates houses utility functions for working with templates.
common/upgrade
Package upgrade provides utilities to per
Package upgrade provides utilities to per
e2e
Package e2e launches an OSD cluster, performs tests on it, and destroys it.
Package e2e launches an OSD cluster, performs tests on it, and destroys it.
e2e/openshift
Package openshift runs the OpenShift extended test suite.
Package openshift runs the OpenShift extended test suite.
e2e/openshift/hypershift
Package hypershift runs test units for hypershift clusters
Package hypershift runs test units for hypershift clusters

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL