Getting started
To get started using Helm with Release, you'll need to add a few files to your repository.
Create the following files:
The .release.yaml
file
.release.yaml
fileThe .release.yaml
file is loaded during application creation. It defines where Release will find the default Application Template and environment variables to use to create an application.
The .release.yaml
file could look something like this:
The Application Template file
The application-template.yaml
file is the default Application Template generated when you create an application. The Application Template is also used for deployment in GitOps-enabled applications.
An Application Template that deploys Elasticsearch via Helm would look something like this:
The Environment Variables file
The environment-variables.yaml
file defines your application's default environment variables. These environment variables will be passed to your Helm charts and are used to populate your Helm values.yaml
file.
Here is an example environment-variables.yaml
file with a username and password that can be consumed by your Helm values.yaml
file:
Once you have created these files and checked them in to your source control repository, you are ready to create an application. See Create an application to learn more about how to make an application in Release.
Last updated