From 716021189c60e46504a85e0ecc5978493fb160b4 Mon Sep 17 00:00:00 2001 From: Krzysztof Romanowski Date: Fri, 22 Mar 2024 14:43:54 +0000 Subject: [PATCH] use raw.githubusercontent.com for values and argocd manifests --- charts/kubeflow/Chart.yaml | 2 +- example/helm/app.kubeflow.yaml | 2 +- example/helm/quickstart.apps-of-apps.sh | 4 ++-- example/helm/quickstart.argocd.sh | 24 ++++++++++++------------ example/helm/quickstart.helm.eks.sh | 1 + example/helm/quickstart.helm.sh | 22 ++++++++++++---------- 6 files changed, 29 insertions(+), 26 deletions(-) diff --git a/charts/kubeflow/Chart.yaml b/charts/kubeflow/Chart.yaml index 7a6e18981a..4eae54d55f 100644 --- a/charts/kubeflow/Chart.yaml +++ b/charts/kubeflow/Chart.yaml @@ -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: 0.1.2 +version: 0.1.3 # 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 diff --git a/example/helm/app.kubeflow.yaml b/example/helm/app.kubeflow.yaml index 182a3e62a5..b8f9d01be0 100644 --- a/example/helm/app.kubeflow.yaml +++ b/example/helm/app.kubeflow.yaml @@ -15,7 +15,7 @@ spec: source: chart: kubeflow repoURL: https://kromanow94.github.io/kubeflow-manifests - targetRevision: 0.1.2 + targetRevision: 0.1.3 ignoreDifferences: - group: rbac.authorization.k8s.io kind: ClusterRole diff --git a/example/helm/quickstart.apps-of-apps.sh b/example/helm/quickstart.apps-of-apps.sh index 091fc81925..afe4d3ee18 100755 --- a/example/helm/quickstart.apps-of-apps.sh +++ b/example/helm/quickstart.apps-of-apps.sh @@ -7,7 +7,7 @@ required for using sync-waves for ArgoCD Apps and deploy App of Apps manifest for kubeflow and it's dependencies. If you only want to apply the App of Apps manifest, cancel this script and execute: -$ kubectl apply -f https://raw.githubusercontent.com/kromanow94/kubeflow-manifests/kubeflow-0.1.2/example/helm/app.app-of-apps.yaml +$ kubectl apply -f https://raw.githubusercontent.com/kromanow94/kubeflow-manifests/kubeflow-0.1.3/example/helm/app.app-of-apps.yaml Press 'Ctrl'+'C' to cancel. Waiting 10 seconds... @@ -42,4 +42,4 @@ data: kubectl wait pods --namespace argocd --all --for=condition=Ready --timeout 300s -kubectl apply -f app.app-of-apps.yaml +kubectl apply -f https://raw.githubusercontent.com/kromanow94/kubeflow-manifests/kubeflow-0.1.3/example/helm/app.app-of-apps.yaml diff --git a/example/helm/quickstart.argocd.sh b/example/helm/quickstart.argocd.sh index 9b5c292928..d1f6b583ec 100755 --- a/example/helm/quickstart.argocd.sh +++ b/example/helm/quickstart.argocd.sh @@ -25,13 +25,13 @@ else fi set -x -kubectl apply -f app.mysql.yaml -kubectl apply -f app.minio.yaml -kubectl apply -f app.cert-manager.yaml -kubectl apply -f app.dex.yaml -kubectl apply -f app.istio-base.yaml -kubectl apply -f app.istiod.yaml -kubectl apply -f app.metacontroller.yaml +kubectl apply -f https://raw.githubusercontent.com/kromanow94/kubeflow-manifests/kubeflow-0.1.3/example/helm/app.mysql.yaml +kubectl apply -f https://raw.githubusercontent.com/kromanow94/kubeflow-manifests/kubeflow-0.1.3/example/helm/app.minio.yaml +kubectl apply -f https://raw.githubusercontent.com/kromanow94/kubeflow-manifests/kubeflow-0.1.3/example/helm/app.cert-manager.yaml +kubectl apply -f https://raw.githubusercontent.com/kromanow94/kubeflow-manifests/kubeflow-0.1.3/example/helm/app.dex.yaml +kubectl apply -f https://raw.githubusercontent.com/kromanow94/kubeflow-manifests/kubeflow-0.1.3/example/helm/app.istio-base.yaml +kubectl apply -f https://raw.githubusercontent.com/kromanow94/kubeflow-manifests/kubeflow-0.1.3/example/helm/app.istiod.yaml +kubectl apply -f https://raw.githubusercontent.com/kromanow94/kubeflow-manifests/kubeflow-0.1.3/example/helm/app.metacontroller.yaml set +x # Wait until pods are created. This is not required since ArgoCD will be @@ -41,9 +41,9 @@ sleep 30 kubectl wait pods --all -n kubeflow --for=condition=Ready --timeout 300s set -x -kubectl apply -f app.argo-workflows.yaml -kubectl apply -f app.istio-ingressgateway.yaml -kubectl apply -f app.kubeflow.yaml +kubectl apply -f https://raw.githubusercontent.com/kromanow94/kubeflow-manifests/kubeflow-0.1.3/example/helm/app.argo-workflows.yaml +kubectl apply -f https://raw.githubusercontent.com/kromanow94/kubeflow-manifests/kubeflow-0.1.3/example/helm/app.istio-ingressgateway.yaml +kubectl apply -f https://raw.githubusercontent.com/kromanow94/kubeflow-manifests/kubeflow-0.1.3/example/helm/app.kubeflow.yaml set +x # Wait until pods are created. This is not required since ArgoCD will be @@ -53,7 +53,7 @@ sleep 10 kubectl wait pods --all --namespace kubeflow --for=condition=Ready --timeout 300s set -x -kubectl apply -f app.profile-kubeflow-user-example-com.yaml +kubectl apply -f https://raw.githubusercontent.com/kromanow94/kubeflow-manifests/kubeflow-0.1.3/example/helm/app.profile-kubeflow-user-example-com.yaml set +x # When deployed with in-cluster self-signed OIDC Issuer (kind, vcluster, @@ -61,7 +61,7 @@ set +x # Discovery endpoint from anonymous user. This is condifured by kubeflow helm # chart. set -x -kubectl apply -f app.oauth2-proxy.yaml +kubectl apply -f https://raw.githubusercontent.com/kromanow94/kubeflow-manifests/kubeflow-0.1.3/example/helm/app.oauth2-proxy.yaml set +x # Wait until pods are created. This is not required since ArgoCD will be diff --git a/example/helm/quickstart.helm.eks.sh b/example/helm/quickstart.helm.eks.sh index 47b134e527..00f077369a 100755 --- a/example/helm/quickstart.helm.eks.sh +++ b/example/helm/quickstart.helm.eks.sh @@ -3,6 +3,7 @@ set -e cat <