Skip to content

Latest commit

 

History

History
158 lines (72 loc) · 8.88 KB

environments.md

File metadata and controls

158 lines (72 loc) · 8.88 KB
id title
environments
Environments
Environments are available in Unleash v4.3.x and later. They can also be enabled from Unleash v4.2.x with a feature toggle.

<iframe src="https://www.loom.com/embed/95239e875bbc4e09a5c5833e1942e4b0" frameborder="0" webkitallowfullscreen mozallowfullscreen allowfullscreen style={{position: 'absolute', top: '0', left: '0', width: '100%', height: '100%'}}></iframe>

Environments is a new way to organize activation strategy configurations for feature toggles into separate environments. In Unleash, a feature lives across all your environments — after all, the goal is to get the new feature released as soon as possible — but it makes sense to configure the activation differently per environment. You might want the feature enabled for everyone in development, but only for yourself in production, for instance.

Previously, Unleash Enterprise could use strategy constraints to control the rollout across environments. With the new environments feature, this is no longer necessary. Now all activation strategies belong to an explicit environment instead.

Further, connected applications will use environment-scoped API keys to make sure they only download feature toggle configurations for the environment they are running in.

Finally, metrics have also been upgraded to record the environment. This, in turn, means that Unleash can display usage metrics per environment.

Despite this being a shift in how Unleash works, everything will continue to work exactly how it did for existing users. For backwards compatibility, we have created an environment named "default" that will contain all of the existing toggles and API keys. Read more about that in the migration section.

A graph showing how environments work. Each project can have multiple features, and each feature can have different activation strategies in each of its environments.

How to start using environments

In order to start using environments you need to be on Unleash v4.2 or higher.

If you are on v4.2, you also need to have the environment feature enabled (if you are using Unleash Hosted, please reach out on contact@getunleash.io if you want to start using environments.

If you are on v4.3 or later, environments are already enabled for you.

Note that in order to enable an environment for a feature toggle, you must first add activation strategies for that environment. You cannot enable an environment without activation strategies.

Step 1: Enable new environments for your Project

Navigate to the project and choose the “environments” tab.

A project view showing the Environments tab. The UI displays three environment toggles: "default", "development", and "production". The "default" environment is enabled.

Step 2: Configure activation strategies for the new environment

From the “feature toggle view” you will now be able to configure activation strategies per environment. You can also enable and disable environments here. Remember that an environment must have activation strategies before you can enable it.

A feature toggle strategies tab showing three different environments, of which one is active. The UI displays data about the currently selected environment,

Step 3: Create environment specific API keys

In order for the SDK to download the feature toggle configuration for the correct environment you will need to create an API token for a defined environment.

An API key creation form. The form's fields are "username", "token type", "project", and, crucially, "environment". The development environment is selected.

Migration

To ease migration we have created a special environment called “default”. All existing activation strategies have been added to this environment. All existing Client API keys have also been scoped to work against the default environment to ensure zero disruption as part of the upgrade.

If you're currently using strategy constraints together with the “environment” field on the Unleash Context, you should be aware that the new environment support works slightly differently. With environments, the SDK API will use the client's API key to determine which environment the client is configured for. The API then sends only strategies belonging to the client's environment. This means that you might not need the "environment" property of the Unleash Context anymore.

A strategy constraint using the environment field of the unleash context.

Addons

We have made some slight changes to events related to feature toggles: there's one deprecation and several new event types. Most of the new events contain project and environment data.

To avoid missing important updates, you will also need to update your addon configuration to subscribe to the new events.

Deprecated events:

  • FEATURE_UPDATE - not used after switching to environments

New Events

  • FEATURE-METADATA-UPDATED - The feature toggle metadata was updated (across all environments).
  • FEATURE-STRATEGY-ADD¹ - An activation strategy was added to a feature toggle in an environment. The data will contain the updated strategy configuration.
  • FEATURE-STRATEGY-UPDATE¹ - An activation strategy was updated for a feature toggle. The data will contain the updated strategy configuration.
  • FEATURE-STRATEGY-REMOVE¹ - An activation strategy was removed for a feature toggle.
  • FEATURE-ENVIRONMENT-ENABLED¹ - Signals that a feature toggle has been enabled in a defined environment.
  • FEATURE-ENVIRONMENT-DISABLED¹ - Signals that a feature toggle has been disabled in a defined environment.
  • FEATURE-PROJECT-CHANGE¹ - The feature toggle was moved to a new project.
  1. These feature events will contain project and environment as part of the event metadata.

API

In order to support configuration per environment we had to rebuild our feature toggle admin API to account for environments as well. This means that we're making the following changes to the API:

  • /api/admin/features - deprecated (scheduled for removal in Unleash v5.0). The old feature toggles admin API still works, but strategy configuration will be assumed to target the “default” environment.
  • /api/admin/projects/:projectId/features - New feature API to be used for feature toggles which also adds support for environments. See the documentation to learn more.

Plan Differences

Open-Source (free)

  • Will get access to two preconfigured environments: “development” and “production”. Existing users of Unleash will also get an additional “default” environment to simplify the adoption of environments.
  • Will be possible to turn environments on/off for all projects.

Pro (commercial)

  • Will get access to two preconfigured environments: “development” and “production”. Existing users of Unleash will also get an additional “default” environment to simplify the adoption of environments.
  • Will be possible to turn environments on/off for the default project.

Enterprise (commercial)

  • Will get access to two preconfigured environments: “development” and “production”. Existing users of Unleash will also get an additional “default” environment to simplify the adoption of environments.
  • Will be possible to turn environments on/off for all projects
  • Will be allowed to update and remove environments.
  • Will be allowed to create new environments.

Rollout Plan

  • Unleash v4.2 will provide early access to environment support. This means that it can be enabled per customer via a feature flag.
  • Unleash v4.3 plans to provide general access to the environment support for all users of Unleash (Open-Source, Pro, Enterprise).

Future enhancements

With improved environment capabilities we have also done the groundwork to be able to also improve other related aspects inside Unleash:

  • Improve Usage Metrics to be able to show usage and evaluation results per hour for multiple days with dimensions such as environment, application and time (per hour).
  • Improve RBAC with the ability to limit who can change configuration for a specific environment (planned as an enterprise feature).