FirecREST-v2 Deployment¶
Helm Charts¶
This repository includes a Helm chart to deploy FirecREST version 2.
Fetching the repository¶
The available versions can be listed with
Deploying the chart
helm install --create-namespace <deployment-name> -n <namespace> firecrest-v2/firecrest-api --values values.yaml
Values file¶
Enabling cluster-configs¶
FirecREST supports the configuration of clusters using dedicated YAML files. This feature must be explicitly enabled in firecrest-config.yaml
with the following declaration:
firecrest-cluster-configs
.
The example below automatically loads all YAML files from the designated directory using a Helm template:
apiVersion: v1
kind: ConfigMap
metadata:
name: firecrest-cluster-configs
data:
{{- (.Files.Glob "clusters/**.yaml").AsConfig | nindent 2 }}
values.yaml
: