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.0.1-alpha.1
version: 3.0.1-alpha.2
# 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
9 changes: 1 addition & 8 deletions charts/mint/templates/ui-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,7 @@ data:
window.REACT_APP_MODEL_CATALOG_DEFAULT_USER= {{ .Values.default_user | quote }};
{{- end }}
// Mint Services
{{- if eq .Values.service.type "NodePort" }}
window.REACT_APP_CROMO_URL = "http://{{ .Values.hostname }}:{{ include "helm.cromo_node_port" . }}";
window.REACT_APP_DATA_CATALOG_API = "http://{{ .Values.hostname}}:{{ include "helm.data_catalog_node_port" . }}";
window.REACT_APP_MODEL_CATALOG_API = "http://{{ .Values.hostname }}:{{ include "helm.model_catalog_api_node_port" . }}/{{ .Values.components.model_catalog_api.api_version }}";
window.REACT_APP_ENSEMBLE_MANAGER_API = "http://{{ .Values.hostname }}:{{ include "helm.ensemble_manager_node_port" . }}/{{ .Values.components.ensemble_manager.api_version }}";
window.REACT_APP_GRAPHQL_ENDPOINT = "{{ .Values.hostname }}:{{ include "helm.hasura_node_port" . }}/v1/graphql";
window.REACT_APP_GRAPHQL_ENABLE_SSL = false;
{{ else if eq .Values.service.type "ClusterIP" }}
{{ if eq .Values.service.type "ClusterIP" }}
{{ with .Values.components.cromo }}
{{ if .enabled }}
window.REACT_APP_CROMO_URL = "http{{ if .ingress.tls }}s{{ end }}://{{ with (first .ingress.hosts ) }}{{ .host }}{{ end }}";
Expand Down
2 changes: 1 addition & 1 deletion charts/mint/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,7 @@ components:
api_version: v1
image:
repository: mintproject/ensemble-manager
tag: c896416306d26847dade5b87688391e4a5b740de
tag: 4f9831855f6e6f3cd140871e574566427e061e77
pullPolicy: IfNotPresent
environment:
data_dir: /var/mint
Expand Down
Loading