Created
April 20, 2023 20:28
-
-
Save matheus-rossi/d6141900d524d48d6741f9c0c538adde to your computer and use it in GitHub Desktop.
gist
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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.14 | |
dependencies: | |
- name: elasticsearch | |
version: 7.17.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.5 | |
repository: https://equinor.github.io/helm-charts/charts/ | |
condition: neo4j-community.enabled | |
- name: mysql | |
version: 9.1.8 | |
repository: https://raw.githubusercontent.com/bitnami/charts/archive-full-index/bitnami | |
condition: mysql.enabled | |
- name: postgresql | |
version: 11.2.6 | |
repository: https://raw.githubusercontent.com/bitnami/charts/archive-full-index/bitnami | |
condition: postgresql.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: 17.1.0 | |
repository: https://raw.githubusercontent.com/bitnami/charts/archive-full-index/bitnami | |
condition: kafka.enabled | |
maintainers: | |
- name: DataHub | |
email: [email protected] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment