Skip to main content

A CLI tool used to deploy ephemeral environments for testing cloud.redhat.com applications

Project description

bonfire

A CLI tool used to deploy ephemeral environments for testing cloud.redhat.com applications

bonfire interacts with a running instance of qontract-server to obtain namespace and application configurations defined in the AppSRE team's internal app-interface repository.

It also interacts with OpenShift to manage the reservation of ephemeral namespaces for testing.

It is meant to be partnered with the Clowder operator to spin up an ephemeral environment for testing.

Installation

pip install -r requirements.txt
pip install .

Deploying applications

The bonfire config get command can be used to print processed app configs to stdout.

The bonfire config deploy command can be used to deploy app configs into a namespace.

Using a local config

To get up and running without needing to contact app-interface's qontract-server, you can utilize a local config file.

See the (example config)[example_config.yaml] which specifies each app you wish to deploy along with the location for that app's template.

For example, to use this approach to get the config for the ingress app along with all of its dependencies, you can create your own config.yaml and run:

bonfire config get --app ingress --local-config --get-dependencies

Loading an app's ephemeral config from app-interface

You'll first need to set proper env variables to interface with your instance of qontract-server:

export QONTRACT_BASE_URL="https://myserver/graphql"
export QONTRACT_USERNAME=myUsername
export QONTRACT_PASSWORD=myPassword

If these env vars are not specified, bonfire will attempt to access a local qontract-server (see "Setting up a local qontract-server" below)

You can then use the bonfire config get command to obtain the kubernetes configuration of an application defined according to the app-interface schema.

bonfire will query the qontract GraphQL API and read the desired application's deploy configuration.

bonfire config get relies on a few key pieces of info to process an app's config:

  1. The application name. This is the name of the app in app-interface
  2. a 'src env' -- the name of the app-interface environment that it should pull application configs for. An app's config will only be processed if it has a deploy target set up for this environment (default: "ephemeral")
  3. a 'ref env' -- the name of the app-interface environment that we want the application's IMAGE_TAG and deploy template to come from. We will use the IMAGE_TAG/template defined on the app's deploy target that matches this environment name.
  4. Any template refs you wish to override -- in other words, if you want to download a different git hash of an application component's template.
  5. Any image tags you wish to override
  6. Whether or not you want to dynamically load dependencies that all components of app relies on. This requires the app to be using the Clowder operator.

For example, let's say that we are running a PR check against the insights-puptoo service. This service:

  • is a member of the ingress application.
  • the kubernetes deploy manifest for this service resides in the same repo as the code
  • every time a PR is opened in this repo, a docker image is built and pushed to quay.io/myorg/insights-puptoo with the tag pr-<git hash>. The PR opened against the app has commit hash abc1234

If we intend to deploy the ingress application group into namespace mynamespace, using the new template/image of the insights-puptoo PR, but using the production template/image for all other components, we could run:

APP_NAME=ingress
COMPONENT_NAME=insights-puptoo
GIT_COMMIT=pr-abc1234
IMAGE=quay.io/myorg/insights-puptoo
IMAGE_TAG=abc1234
NAMESPACE=mynamespace

bonfire config get \
    --ref-env insights-prod \
    --app $APP_NAME \
    --set-template-ref $COMPONENT_NAME=$GIT_COMMIT \
    --set-image-tag $IMAGE=$IMAGE_TAG \
    --get-dependencies \
    --namespace $NAMESPACE \
    > k8s_resources.json

oc apply -f k8s_resources.json -n $NAMESPACE

Running a local qontract-server

For testing/debug purposes, instead of committing changes directly to app-interface, you can run your own local copy of the app-interface API server.

  1. Clone https://github.com/app-sre/qontract-server
  2. Clone the internal app-interface repo

In qontract-server, run:

npm install yarn
make bundle APP_INTERFACE_PATH=/path/to/app-interface
LOAD_METHOD=fs DATAFILES_FILE=bundle/bundle.json yarn run server

Namespace reservation

bonfire is also used to reserve, release, and reconcile ephemeral namespaces running on our test OpenShift clusters.

The list of ephemeral namespaces is stored in app-interface.

The service account that bonfire logs in to the cluster with has a custom role bound to it which allows it to edit namespace labels:

---
apiVersion: rbac.authorization.k8s.io/v1
kind: Role
metadata:
  name: namespace-editor
rules:
- apiGroups:
  - ""
  resources:
  - namespaces
  verbs:
  - get
  - list
  - patch
  - update
  - watch

This role is bound to the service account in each ephemeral namespace.

Bonfire uses labels to keep track of which namespaces are reserved AND ready. A "ready" namespace is one which has been "wiped clean" and then had a fresh set of base test configurations copied into it.

When a tester is logged in using the proper account, namespace commands can be used such as:

bonfire namespace reserve -- find an available namespace and reserve it. By default the TTL is 1 hr.

bonfire namespace release <namespace> -- release a namespace reservation

Use bonfire namespace -h to see a list of all available namespace commands.

Namespace reconciler

A separate cron job runs the bonfire namespace reconcile command every 2 minutes. This command does the following:

  • Checks for any namespaces that are released, but not ready, and "prepares" them by wiping them and copying base test resources into them. After being prepared, the namespace is marked "ready". A namespace is prepared by:
    1. creating an ephemeral ClowdEnvironment resource for it, and
    2. copying any secrets defined in the ephemeral-base namespace into it
  • Checks for any namespaces that are reserved, but do not have an "expires" time set on them yet. This would be a newly-reserved namespace. The reconciler is responsible for applying the "expires time"
  • Checks the "expires time" on all reserved namespaces. If any have expired, bonfire will release them and re-prepare them.

Interactions with Clowder

  • For every namespace that bonfire prepares, it creates a Clowder ClowdEnvironment resource following this template. The name of the environment matches this format. So, if bonfire prepared a namespace called ephemeral-01, then the name of the ClowdEnvironment would be env-ephemeral-01.

  • When bonfire get config is executed for a certain namespace, it will dynamically populate an ENV_NAME parameter and pass this to all templates it processes. Therefore, all templates that define a ClowdApp resource should set the environment mapping in their spec using an ${ENV_NAME} parameter.

  • When bonfire namespace wait-on-resources is executed, it follows this logic:

  1. Wait for all resources owned by a 'ClowdEnvironment' to appear in the namespace
  2. Wait for all the deployments in the namespace to reach 'active' state.
  3. Wait for resources owned by a 'ClowdApp' to appear in the namespace
  4. Wait for all the deployments in the namespace to reach 'active' state (deployments we already waited on in step 2 are not waited on again)

Project details


Release history Release notifications | RSS feed

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

crc-bonfire-1.0.0b0.tar.gz (40.4 kB view hashes)

Uploaded Source

Built Distribution

crc_bonfire-1.0.0b0-py3-none-any.whl (31.0 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page