Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion charts/mint/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ 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.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 3.4.5
version: 3.4.6-pre1
# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
# follow Semantic Versioning. They should reflect the version the application is using.
Expand Down
5 changes: 4 additions & 1 deletion charts/mint/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# MINT

![Version: 3.4.5](https://img.shields.io/badge/Version-3.4.5-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 1.16.3](https://img.shields.io/badge/AppVersion-1.16.3-informational?style=flat-square)
![Version: 3.4.6-pre1](https://img.shields.io/badge/Version-3.4.6--pre1-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 1.16.3](https://img.shields.io/badge/AppVersion-1.16.3-informational?style=flat-square)

A Helm chart for MINT

Expand Down Expand Up @@ -61,6 +61,7 @@ A Helm chart for MINT
| components.data_catalog_db.persistence.selector | object | `{}` | |
| components.data_catalog_db.persistence.size | string | `"30Gi"` | |
| components.data_catalog_db.persistence.storageClass | string | `""` | |
| components.data_catalog_db.persistence.subPath | string | `""` | |
| components.data_catalog_db.resources | object | `{}` | Resource specifications for Data Catalog database |
| components.ensemble_manager.api_version | string | `"v1"` | API version for Ensemble Manager |
| components.ensemble_manager.config.execution_engine.basePath | string | `""` | |
Expand Down Expand Up @@ -135,6 +136,7 @@ A Helm chart for MINT
| components.hasura_db.persistence.selector | object | `{}` | |
| components.hasura_db.persistence.size | string | `"30Gi"` | |
| components.hasura_db.persistence.storageClass | string | `""` | |
| components.hasura_db.persistence.subPath | string | `""` | Subpath for Hasura database |
| components.hasura_db.resources | object | `{}` | Resource specifications for Hasura database |
| components.mic_api | object | `{"enabled":false,"image":{"pullPolicy":"IfNotPresent","repository":"mintproject/mic-api","tag":"ee71a1a364fc3d384f85243684ad95d37913b049"},"ingress":{"annotations":{},"className":"","enabled":true,"hosts":[{"host":"api.mic.mint.local","paths":[{"path":"/","pathType":"ImplementationSpecific"}]}],"tls":[]},"resources":{}}` | MIC API component configuration |
| components.mic_api.enabled | bool | `false` | Enable or disable MIC API |
Expand All @@ -154,6 +156,7 @@ A Helm chart for MINT
| components.mic_api_db.persistence.selector | object | `{}` | |
| components.mic_api_db.persistence.size | string | `"10Gi"` | Size for MIC API database |
| components.mic_api_db.persistence.storageClass | string | `""` | Storage class for MIC API database |
| components.mic_api_db.persistence.subPath | string | `""` | Subpath for MIC API database |
| components.mic_api_db.resources | object | `{}` | Resource specifications for MIC API database |
| components.mic_ui.enabled | bool | `false` | Enable or disable MIC UI |
| components.mic_ui.image.environment.airflow_url | string | `"https://airflow.mint.isi.edu/api/v1"` | Airflow URL for MIC UI |
Expand Down
6 changes: 6 additions & 0 deletions charts/mint/templates/datacatalog.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -111,8 +111,14 @@ spec:
{{- end }}
{{- end }}
volumeMounts:
{{ if .Values.components.data_catalog_db.persistence.subPath }}
- mountPath: /var/lib/postgresql/data
name: data-catalog-db
subPath: {{ .Values.components.data_catalog_db.persistence.subPath }}
{{ else }}
- mountPath: /var/lib/postgresql/data
name: data-catalog-db
{{ end }}
ports:
- name: postgres
containerPort: 5432
Expand Down
6 changes: 6 additions & 0 deletions charts/mint/templates/hasura.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -109,8 +109,14 @@ spec:
{{- end }}
{{- end }}
volumeMounts:
{{ if .Values.components.hasura_db.persistence.subPath }}
- mountPath: /var/lib/postgresql/data
name: hasura-db
subPath: {{ .Values.components.hasura_db.persistence.subPath }}
{{ else }}
- mountPath: /var/lib/postgresql/data
name: hasura-db
{{ end }}
env:
- name: POSTGRES_PASSWORD
valueFrom:
Expand Down
6 changes: 6 additions & 0 deletions charts/mint/templates/mic-api.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -85,8 +85,14 @@ spec:
resources:
{{- toYaml .resources | nindent 12 }}
volumeMounts:
{{ if .Values.components.mic_api_db.persistence.subPath }}
- mountPath: /var/lib/postgresql/data
name: mic-api-db
subPath: {{ .Values.components.mic_api_db.persistence.subPath }}
{{ else }}
- mountPath: /var/lib/postgresql/data
name: mic-api-db
{{ end }}
ports:
- name: postgres
containerPort: 5432
Expand Down
5 changes: 5 additions & 0 deletions charts/mint/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,8 @@ components:
# -- Resource specifications for MIC API database
resources: {}
persistence:
# -- Subpath for MIC API database
subPath: ""
# -- Enable or disable persistence for MIC API database
enabled: true
# -- Storage class for MIC API database
Expand Down Expand Up @@ -175,6 +177,7 @@ components:
dataSource: {}
existingClaim: ""
selector: {}
subPath: ""
annotations:
helm.sh/resource-policy: keep
model_catalog_endpoint:
Expand Down Expand Up @@ -271,6 +274,8 @@ components:
# -- Resource specifications for Hasura database
resources: {}
persistence:
# -- Subpath for Hasura database
subPath: ""
# -- Enable or disable persistence for Hasura database
enabled: true
storageClass: ""
Expand Down