Skip to content
Open
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
4 changes: 4 additions & 0 deletions .github/workflows/helm-kustomize-comparison.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,10 @@ jobs:
rm get_helm.sh
- name: Install Kustomize
run: ./tests/kustomize_install.sh
- name: Build Helm dependencies for pipelines
run: |
cd experimental/helm/charts/pipelines
helm dependency build
- name: Run all scenarios comparison
env:
VERBOSE: "true"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ data:
{{- if .Values.kubeflow.enabled }}
USERID_HEADER: {{ .Values.kubeflow.config.useridHeader | quote }}
APP_PREFIX: {{ .Values.kubeflow.config.appPrefix | quote }}
USERID_PREFIX: {{ .Values.kubeflow.config.useridPrefix | quote }}
{{- else }}
APP_DISABLE_AUTH: "True"
{{- end }}
Expand Down
1 change: 1 addition & 0 deletions experimental/helm/charts/kserve-models-web-app/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -236,6 +236,7 @@ kubeflow:
disableAuth: false
useridHeader: "kubeflow-userid"
appPrefix: "/kserve-endpoints"
useridPrefix: ""

# Monitoring configuration
monitoring:
Expand Down
37 changes: 37 additions & 0 deletions experimental/helm/charts/pipelines/Chart.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
apiVersion: v2

name: kubeflow-pipelines

description: A Helm chart for Kubeflow Pipelines - ML Workflows on Kubernetes

version: 2.14.3

appVersion: 2.14.3

home: https://github.com/kubeflow/pipelines

icon: https://github.com/kubeflow/website/blob/master/assets/icons/logo.svg

sources:
- https://github.com/kubeflow/pipelines
- https://github.com/kubeflow/kubeflow
dependencies:
- name: argo-workflows
version: "~0.40.0"
condition: argo.enabled
repository: "https://argoproj.github.io/argo-helm"
- name: minio
version: "~5.0.0"
condition: minio.enabled
repository: "https://charts.min.io/"
- name: mysql
version: "~14.0.0"
condition: mysql.enabled
repository: "https://charts.bitnami.com/bitnami"
- name: postgresql
version: "~16.0.0"
condition: postgresql.enabled
repository: "https://charts.bitnami.com/bitnami"
annotations:
category: Machine Learning
licenses: Apache-2.0
3 changes: 3 additions & 0 deletions experimental/helm/charts/pipelines/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# Kubeflow Pipelines Helm Chart

This Helm chart deploys Kubeflow Pipelines on a Kubernetes cluster using the Helm package manager.
Loading
Loading