Skip to content

Extending the Helm Chart

This guide is meant for the usage of the helm chart as a subchart that includes custom services.

Create a new chart as a wrapper

helm create myproject

Add Ibexa as a dependency

myproject/Chart.yaml

dependencies:
  - name: ibexa
    version: 3.6.0
    repository: oci://registry.gitlab.com/xrow-public/repository/charts/ibexa

Add your customization

myproject/values.yaml

ibexa:
  env:
  - name: "foo"
    value: "bar"

or

myproject/templates/deployment.yaml

apiVersion: apps/v1
kind: Deployment
...