Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Devel #223

Merged
merged 3 commits into from
Dec 12, 2024
Merged

Devel #223

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
7 changes: 7 additions & 0 deletions artifacts/kubeflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,13 @@
remote_src: true
when: VERSION == "v1.8.0"

- name: Install kustomize 5.2.1
unarchive:
src: https://github.com/kubernetes-sigs/kustomize/releases/download/kustomize%2Fv5.2.1/kustomize_v5.2.1_linux_amd64.tar.gz
dest: /opt/
remote_src: true
when: VERSION == "v1.9.1"

- name: Build kubeflow yaml
shell: /opt/kustomize build example | awk '!/well-defined/' > kubeflow.yaml
args:
Expand Down
10 changes: 5 additions & 5 deletions templates/kubeflow.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ imports:
description: Deploy Kubeflow on top of a Kubernetes Virtual Cluster

metadata:
template_version: "1.1.0"
template_version: "1.2.0"
template_name: Kubeflow
display_name: Deploy Kubeflow on top of a Kubernetes Virtual Cluster
icon: images/kubeflow.png
Expand All @@ -29,9 +29,9 @@ topology_template:
kubeflow_manifests_version:
type: string
description: Kubeflow Manifests version
default: "v1.8.0"
default: "v1.9.1"
constraints:
- valid_values: [ "v1.8.0", "v1.7.0", "v1.6.1" ]
- valid_values: [ "v1.9.1", "v1.8.0", "v1.7.0", "v1.6.1" ]
kubeflow_mlflow:
type: boolean
description: Deploy embedded MLFlow in Kubeflow instance
Expand All @@ -44,9 +44,9 @@ topology_template:
kube_version:
type: string
description: Version of Kubernetes to install
default: "1.26.8"
default: "1.29.12"
constraints:
- valid_values: [ "1.26.8", "1.25.14", "1.24.17" ]
- valid_values: [ "1.29.12", "1.26.15", "1.25.16", "1.24.17" ]

wn_num:
type: integer
Expand Down
6 changes: 3 additions & 3 deletions templates/kubernetes.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ description: Deploy a Kubernetes Virtual Cluster.

metadata:
template_name: Kubernetes
template_version: "1.2.0"
template_version: "1.2.1"
display_name: Deploy a Kubernetes Virtual Cluster
icon: images/kubernetes.png
order: 3
Expand Down Expand Up @@ -143,9 +143,9 @@ topology_template:
kube_version:
type: string
description: Version of Kubernetes to install
default: "1.30.6"
default: "1.30.8"
constraints:
- valid_values: [ "1.30.6", "1.31.2", "1.29.10", "1.28.15", "1.27.16", "1.26.15", "1.25.15", "1.24.17" ]
- valid_values: [ "1.30.8", "1.31.4", "1.32.0", "1.29.12", "1.28.15", "1.27.16", "1.26.15", "1.25.15", "1.24.17" ]
kube_cri_runtime:
type: string
description: CRI Runtime to use with Kubernetes
Expand Down
Loading