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.0
version: 3.0.1-alpha.1
# 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/templates/ensemble-manager-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,8 @@ data:


{{- with .Values.components.ensemble_manager }}
{{- if eq .execution_engine.type "localex" }}
"execution_engine": "localex",
{{- if .execution_engine.type }}
"execution_engine": {{ .execution_engine.type | quote }},
"{{ .execution_engine.type }}":
{{ .execution_engine.config | toRawJson | nindent 12}},
{{- end }}
Expand Down
6 changes: 0 additions & 6 deletions examples/custom-domain-no-ssl.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ components:
paths:
- path: /
pathType: ImplementationSpecific
tls: []
mic_api:
ingress:
enabled: true
Expand All @@ -24,7 +23,6 @@ components:
paths:
- path: /
pathType: ImplementationSpecific
tls: []
data_catalog:
ingress:
enabled: true
Expand All @@ -33,7 +31,6 @@ components:
paths:
- path: /
pathType: ImplementationSpecific
tls: []
model_catalog_endpoint:
ingress:
enabled: true
Expand All @@ -42,7 +39,6 @@ components:
paths:
- path: /
pathType: ImplementationSpecific
tls: []
hasura:
ingress:
enabled: true
Expand Down Expand Up @@ -70,7 +66,6 @@ components:
paths:
- path: /
pathType: ImplementationSpecific
tls: []
ui:
ingress:
enabled: true
Expand All @@ -88,4 +83,3 @@ components:
paths:
- path: /
pathType: ImplementationSpecific
tls: []
12 changes: 12 additions & 0 deletions examples/custom-execution-manager.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
components:
ensemble_manager:
enabled: true
execution_engine:
type: tapis
config:
codedir: /home/node/app/data/code
datadir: /home/node/app/data/data
tempdir: /home/node/app/data/temp
logdir: /home/node/app/data/logs
dataurl: http://localhost:30010/data
parallelism: 1