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.6-pre8
version: 3.4.6-pre9
# 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
10 changes: 7 additions & 3 deletions charts/mint/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# MINT

![Version: 3.4.6-pre7](https://img.shields.io/badge/Version-3.4.6--pre7-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-pre9](https://img.shields.io/badge/Version-3.4.6--pre9-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 @@ -93,10 +93,10 @@ A Helm chart for MINT
| components.ensemble_manager.config.graphql.use_secret | bool | `true` | |
| components.ensemble_manager.enabled | bool | `true` | Enable or disable Ensemble Manager |
| components.ensemble_manager.environment.data_dir | string | `"/var/mint"` | |
| components.ensemble_manager.image | object | `{"pullPolicy":"IfNotPresent","repository":"mintproject/ensemble-manager","tag":"739acdcd828140fc471d4756b8708e57ca6acdeb"}` | Docker image repository for Ensemble Manager |
| components.ensemble_manager.image | object | `{"pullPolicy":"IfNotPresent","repository":"mintproject/ensemble-manager","tag":"814018a933c2750b62eef160394128daf3addf3d"}` | Docker image repository for Ensemble Manager |
| components.ensemble_manager.image.pullPolicy | string | `"IfNotPresent"` | Image pull policy for Ensemble Manager |
| components.ensemble_manager.image.repository | string | `"mintproject/ensemble-manager"` | Docker image repository for Ensemble Manager |
| components.ensemble_manager.image.tag | string | `"739acdcd828140fc471d4756b8708e57ca6acdeb"` | Docker image tag for Ensemble Manager |
| components.ensemble_manager.image.tag | string | `"814018a933c2750b62eef160394128daf3addf3d"` | Docker image tag for Ensemble Manager |
| components.ensemble_manager.ingress.annotations."nginx.ingress.kubernetes.io/enable-cors" | string | `"true"` | |
| components.ensemble_manager.ingress.className | string | `""` | |
| components.ensemble_manager.ingress.enabled | bool | `true` | |
Expand Down Expand Up @@ -244,6 +244,10 @@ A Helm chart for MINT
| components.model_catalog_explorer.ingress.hosts[0].paths[0].pathType | string | `"ImplementationSpecific"` | |
| components.model_catalog_explorer.ingress.tls | list | `[]` | |
| components.model_catalog_explorer.resources | object | `{}` | Resource specifications for Model Catalog Explorer |
| components.ui.config.airflow_api | string | `""` | |
| components.ui.config.airflow_dag_download_thread_id | string | `""` | |
| components.ui.config.ingestion_api | string | `""` | |
| components.ui.config.visualization_url | string | `""` | |
| components.ui.enabled | bool | `true` | Enable or disable UI |
| components.ui.image.pullPolicy | string | `"IfNotPresent"` | Image pull policy for UI |
| components.ui.image.repository | string | `"mintproject/mint-ui-lit"` | Docker image repository for UI |
Expand Down
8 changes: 4 additions & 4 deletions charts/mint/templates/ui-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -91,10 +91,10 @@ data:
window.REACT_APP_AUTH_LOGOUT_URL = {{ .Values.auth.logout_url | quote }};

//Visualization and Ingestion - Not used any more - Remove ?
window.REACT_APP_VISUALIZATION_URL = "http://dev.viz.mint.isi.edu";
window.REACT_APP_INGESTION_API = "http://node1.ingestion.mint.isi.edu/v1.3.0";
window.REACT_APP_AIRFLOW_API = "https://airflow.mint.isi.edu/api/v1";
window.REACT_APP_AIRFLOW_DAG_DOWNLOAD_THREAD_ID = "download_thread"
window.REACT_APP_VISUALIZATION_URL = {{ .Values.components.ui.config.visualization_url | quote }};
window.REACT_APP_INGESTION_API = {{ .Values.components.ui.config.ingestion_api | quote }};
window.REACT_APP_AIRFLOW_API = {{ .Values.components.ui.config.airflow_api | quote }};
window.REACT_APP_AIRFLOW_DAG_DOWNLOAD_THREAD_ID = {{ .Values.components.ui.config.airflow_dag_download_thread_id | quote }};

{{ if eq .Values.external_services.ckan.enabled true }}
window.REACT_APP_DATA_CATALOG_TYPE = {{ .Values.external_services.ckan.type | quote }};
Expand Down
5 changes: 5 additions & 0 deletions charts/mint/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -383,6 +383,11 @@ components:
pullPolicy: IfNotPresent
# -- Resource specifications for UI
resources: {}
config:
visualization_url: ""
ingestion_api: ""
airflow_api: ""
airflow_dag_download_thread_id: ""
ingress:
# -- Enable or disable ingress for UI
enabled: true
Expand Down