Skip to content

Commit

Permalink
Merge pull request #157 from Calcagiara/digitalhub0.9.1
Browse files Browse the repository at this point in the history
bump(digitalhub): upgraded platform to version 0.9.1
  • Loading branch information
ffais authored Feb 11, 2025
2 parents 2f71259 + 2f03be2 commit 9d98c0b
Show file tree
Hide file tree
Showing 5 changed files with 37 additions and 12 deletions.
6 changes: 3 additions & 3 deletions charts/digitalhub/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ maintainers:
url: https://github.com/ffais
- name: calcagiara
url: https://github.com/Calcagiara
version: "0.9.0"
appVersion: "0.9.0"
version: "0.9.1"
appVersion: "0.9.1"
dependencies:
- name: argo-workflows
version: "0.45.1"
Expand All @@ -23,7 +23,7 @@ dependencies:
repository: https://helm.coder.com/v2
condition: coder.enabled
- name: core
version: "0.3.1"
version: "0.3.2"
repository: https://scc-digitalhub.github.io/digitalhub/
condition: core.enabled
- name: kubernetes-resource-manager
Expand Down
4 changes: 4 additions & 0 deletions charts/digitalhub/confs/tests/python-test/s1-etl.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,11 @@ def main():
proj.run('pipeline', action="build", wait=True)
workflow_run = proj.run('pipeline', action="pipeline", parameters={"url": di.key}, wait=True)
if(workflow_run.status.state == "COMPLETED"):
{{- if .Values.platformTests.deleteOnCompletion }}
dh.delete_project(proj.name)
{{- else }}
sys.exit(0)
{{- end }}
else:
sys.exit(1)

Expand Down
4 changes: 4 additions & 0 deletions charts/digitalhub/confs/tests/python-test/s2-dbt.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,11 @@ def main():
proj.run('pipeline_dbt', action="build", wait=True)
workflow_run = proj.run('pipeline_dbt', action="pipeline", parameters={"di": di_url.key}, wait=True)
if(workflow_run.status.state == "COMPLETED"):
{{- if .Values.platformTests.deleteOnCompletion }}
dh.delete_project(proj.name)
{{- else }}
sys.exit(0)
{{- end }}
else:
sys.exit(1)

Expand Down
4 changes: 4 additions & 0 deletions charts/digitalhub/confs/tests/python-test/s3-scikit-learn.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,11 @@ def main():
proj.run('pipeline_ml', action="build", wait=True)
workflow_run = proj.run('pipeline_ml', action="pipeline", wait=True)
if(workflow_run.status.state == "COMPLETED"):
{{- if .Values.platformTests.deleteOnCompletion }}
dh.delete_project(proj.name)
{{- else }}
sys.exit(0)
{{- end }}
else:
sys.exit(1)

Expand Down
31 changes: 22 additions & 9 deletions charts/digitalhub/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -79,9 +79,9 @@ coder:
- name: jupyter
nodePort: "30040"
iconUrl: https://upload.wikimedia.org/wikipedia/commons/thumb/3/38/Jupyter_logo.svg/1200px-Jupyter_logo.svg.png
image: "ghcr.io/scc-digitalhub/jupyter-3-10:0.9.0"
image39: "ghcr.io/scc-digitalhub/jupyter-3-9:0.9.0"
image311: "ghcr.io/scc-digitalhub/jupyter-3-11:0.9.0"
image: "ghcr.io/scc-digitalhub/jupyter-3-10:0.9.1"
image39: "ghcr.io/scc-digitalhub/jupyter-3-9:0.9.1"
image311: "ghcr.io/scc-digitalhub/jupyter-3-11:0.9.1"
privileged: false
- name: dremio
nodePort: "30120"
Expand Down Expand Up @@ -393,6 +393,18 @@ solr:
enabled: true
replicas: 1
fullnameOverride: *solrFullNameOverride
dataStorage:
# Either persistent or ephemeral
type: "ephemeral"
capacity: "10Gi"
# Options for persistent storage. Only used if type = "persistent"
persistent:
reclaimPolicy: "Delete"
pvc:
name: ""
labels: {}
annotations: {}
storageClassName: ""
# WARNING: the following feature is currently bugged, waiting for a Solr official fix!
# Uncomment the following options to use solr with the unprivileged solr user and a randomly generated password
# Be sure to also set core.solr.collection.initialize to true in this values file.
Expand Down Expand Up @@ -484,21 +496,22 @@ minio-operator:

platformTests:
preRelease: false ## Used for installing pre release packages
deleteOnCompletion: false
image: ""
tag: ""
packages:
- name: "digitalhub[full]"
tag: "0.9.0"
tag: "0.9.2"
- name: "digitalhub-runtime-python"
tag: "0.9.0"
tag: "0.9.1"
- name: "digitalhub-runtime-container"
tag: "0.9.0"
tag: "0.9.3"
- name: "digitalhub-runtime-dbt"
tag: "0.9.0"
tag: "0.9.1"
- name: "digitalhub-runtime-kfp"
tag: "0.9.0"
tag: "0.9.1"
- name: "digitalhub-runtime-modelserve"
tag: "0.9.0"
tag: "0.9.1"

argo-workflows:
enabled: true
Expand Down

0 comments on commit 9d98c0b

Please sign in to comment.