Blueprints [Beta]
Reusable templates for your services
Blueprints are reusable templates that allow you to configure everything needed to automate installations of your services. They define a collection of service installations, and inputs which can be customized across environments. When you install a blueprint on an environment, it creates installations for all the services defined in the blueprint and keeps them in sync with the blueprint.
When to use Blueprints?
Blueprints are most powerful when you have multiple environments and find yourself repeating the same configuration patterns across them. They allow you to avoid configuration drift and ensure consistency for your services. On the other hand, if you only have a single environment, it may be premature to use blueprints and it would be easier to just manage the configuration directly at the installation level.
Start with blueprints when you have at least two environments or when you find yourself copying configurations between deployments.
Using Blueprints
Blueprints are currently only available for use via the ryvn.yaml
file. See the infrastructure as code
guide to learn how to configure ryvn.yaml
syncing before using blueprints.
Here is an example of a blueprint of a simple application consisting of a frontend and backend web-server.
See ryvn.yaml Blueprint Reference for detailed information about all the blueprint fields.
Blueprint Syncing
When you make changes to blueprints, these changes will result in changes to all blueprint installations automatically, if they are valid and do not require intervention.
Changes to environment variable or configuration made to installations directly will be overwritten if the same key is also defined on the blueprint and the effective value is different.
If you add an environment variable or a secret directly on the installation but this environment variable or secret does not appear in the blueprint definition, then it will be ignored and not managed by the blueprint. This also means if you remove an environment variable or secret from the blueprint definition, it will not be automatically removed from the installation.
Blueprint Inputs
Inputs allow you to customize blueprint behavior when installing it on an environment. They support various data types:
Type | Description | Example |
---|---|---|
string | Text values | Application names, URLs |
number | Numeric values | CPU cores, memory limits |
boolean | True/false values | Feature flags, enable/disable options |
array | Lists of values | Port lists, environment names |
object | Complex data structures | Configuration objects |
Input Properties
Each input can have these properties:
Property | Description | Required |
---|---|---|
name | Unique identifier for the input | Yes |
type | Data type (string, number, boolean, array, object) | Yes |
description | Detailed explanation of the input’s purpose | No |
displayName | Human-readable name for the UI | No |
default | Default value if not specified | No |
Inputs without default values are automatically converted to blueprint inputs and are required to be assigned a value when installing the blueprint.
Service Configuration
Each service in a blueprint can be configured with:
Environment Variables
For web-server services, you can define environment variables:
Service Configuration
The config
field contains service-specific configuration as a YAML string. This is the same configuration that you would
provide to the service when installing it manually. For helm charts, this is the same as the override values.yaml
file and for
terraform, this is the same as the variables yaml file.
Template Variables
Configuration can reference blueprint inputs using template syntax.
Secrets Management
Blueprints can define secrets that are automatically generated or referenced from external sources:
Generated Secrets
Secret Types
Type | Description | Use Case |
---|---|---|
random-string | Random alphanumeric string | API keys, tokens |
random-bytes | Random binary data | Encryption keys |
rsa-key | RSA key pair | SSL certificates, SSH keys |
ec-key | Elliptic curve key pair | Modern cryptography |
User-Defined Secrets
For secrets that need to be provided by users:
Installing Blueprints
To install a blueprint on an environment, add it to your environment configuration:
Installation Options
Option | Description | Required |
---|---|---|
name | Name of the blueprint to install | Yes |
blueprintInstallationName | Custom name for this installation | No |
inputs | Values for blueprint inputs | No (if defaults exist) |
If you install the same blueprint multiple times on an environment, you must provide a unique
blueprintInstallationName
for each installation.