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

![Version: 9.0.0-beta.8](https://img.shields.io/badge/Version-9.0.0--beta.8-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: 9.0.0-beta.9](https://img.shields.io/badge/Version-9.0.0--beta.9-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 @@ -250,10 +250,10 @@ A Helm chart for MINT
| components.ui.config.execution_component_from_tapis_tenant | string | `""` | |
| components.ui.config.ingestion_api | string | `""` | |
| components.ui.config.visualization_url | string | `""` | |
| components.ui.enabled | bool | `true` | Enable or disable UI |
| components.ui.enabled | bool | `false` | Enable or disable the legacy LitElement UI. Off by default: `ui_react` is the maintained frontend. Set it to `true` to keep serving the old app. |
| components.ui.image.pullPolicy | string | `"Always"` | Image pull policy for UI |
| components.ui.image.repository | string | `"ghcr.io/mintproject/mint-ui-lit"` | Docker image repository for UI |
| components.ui.image.tag | string | `"latest"` | Docker image tag for UI |
| components.ui.image.tag | string | `"latest"` | Docker image tag for UI. Only `latest` and `main` exist in GHCR. The per-commit SHA tags were never pushed there and live only on Docker Hub, so a SHA pin against this repository fails to pull. |
| components.ui.ingress.annotations | object | `{}` | |
| components.ui.ingress.className | string | `""` | |
| components.ui.ingress.enabled | bool | `true` | Enable or disable ingress for UI |
Expand Down
9 changes: 6 additions & 3 deletions charts/mint/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -393,12 +393,15 @@ components:
pathType: ImplementationSpecific
tls: []
ui:
# -- Enable or disable UI
enabled: true
# -- Enable or disable the legacy LitElement UI. Off by default: `ui_react`
# is the maintained frontend. Set it to `true` to keep serving the old app.
enabled: false
image:
# -- Docker image repository for UI
repository: ghcr.io/mintproject/mint-ui-lit
# -- Docker image tag for UI
# -- Docker image tag for UI. Only `latest` and `main` exist in GHCR.
# The per-commit SHA tags were never pushed there and live only on Docker
# Hub, so a SHA pin against this repository fails to pull.
tag: latest
# -- Image pull policy for UI
pullPolicy: Always
Expand Down
Loading
Loading