mirror of
https://github.com/datahub-project/datahub.git
synced 2025-11-01 19:25:56 +00:00
37 lines
1.4 KiB
YAML
37 lines
1.4 KiB
YAML
apiVersion: v2
|
|
name: datahub-prerequisites
|
|
description: A Helm chart for packages that Datahub depends on
|
|
type: application
|
|
# This is the chart version. This version number should be incremented each time you make changes
|
|
# to the chart and its templates, including the app version.
|
|
version: 0.0.1
|
|
dependencies:
|
|
- name: elasticsearch
|
|
version: 7.9.3
|
|
repository: https://helm.elastic.co
|
|
condition: elasticsearch.enabled
|
|
# This chart deploys an enterprise version of neo4j that requires commercial license
|
|
- name: neo4j
|
|
version: 4.2.2-1
|
|
repository: https://neo4j-contrib.github.io/neo4j-helm/
|
|
condition: neo4j.enabled
|
|
# This chart deploys a community version of neo4j
|
|
- name: neo4j-community
|
|
version: 1.2.4
|
|
repository: https://equinor.github.io/helm-charts/charts/
|
|
condition: neo4j-community.enabled
|
|
- name: mysql
|
|
version: 8.5.4
|
|
repository: https://charts.bitnami.com/bitnami
|
|
condition: mysql.enabled
|
|
# This chart deploys an enterprise version of kafka that requires commercial license
|
|
# Note, Schema registry and kafka rest proxy do not require the commercial license
|
|
- name: cp-helm-charts
|
|
version: 0.6.0
|
|
repository: https://confluentinc.github.io/cp-helm-charts/
|
|
condition: cp-helm-charts.enabled
|
|
# This chart deploys a community version of kafka
|
|
- name: kafka
|
|
version: 12.17.4
|
|
repository: https://charts.bitnami.com/bitnami
|
|
condition: kafka.enabled |