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.4
version: 9.0.0-beta.5
# 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
4 changes: 2 additions & 2 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.4](https://img.shields.io/badge/Version-9.0.0--beta.4-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.5](https://img.shields.io/badge/Version-9.0.0--beta.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)

A Helm chart for MINT

Expand Down Expand Up @@ -133,7 +133,7 @@ A Helm chart for MINT
| components.hasura.environment.unauthorized_role | string | `"anonymous"` | Unauthorized role for Hasura |
| components.hasura.image.pullPolicy | string | `"Always"` | Image pull policy for Hasura |
| components.hasura.image.repository | string | `"ghcr.io/mintproject/graphql-engine"` | Docker image repository for Hasura |
| components.hasura.image.tag | string | `"latest"` | Docker image tag for Hasura |
| components.hasura.image.tag | string | `"06492bdedd05ca3534b943739f7ffffe877851da"` | Docker image tag for Hasura. A commit SHA, not `latest`: the graphql_engine workflow publishes only `:main` and `:<full-sha>`, so `:latest` is a stale image it never republishes. Migrations are baked into this image, so the schema a deployment can reach is exactly the one this tag carries. |
| components.hasura.ingress.annotations."nginx.ingress.kubernetes.io/enable-cors" | string | `"true"` | |
| components.hasura.ingress.className | string | `nil` | |
| components.hasura.ingress.enabled | bool | `true` | Enable or disable ingress for Hasura |
Expand Down
8 changes: 6 additions & 2 deletions charts/mint/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -236,8 +236,12 @@ components:
image:
# -- Docker image repository for Hasura
repository: ghcr.io/mintproject/graphql-engine
# -- Docker image tag for Hasura
tag: latest
# -- Docker image tag for Hasura.
# A commit SHA, not `latest`: the graphql_engine workflow publishes only
# `:main` and `:<full-sha>`, so `:latest` is a stale image it never
# republishes. Migrations are baked into this image, so the schema a
# deployment can reach is exactly the one this tag carries.
tag: 06492bdedd05ca3534b943739f7ffffe877851da
# -- Image pull policy for Hasura
pullPolicy: Always
# -- Resource specifications for Hasura
Expand Down
Loading