Skip to content

Commit

Permalink
Merge pull request #136 from roytman/true
Browse files Browse the repository at this point in the history
small fix
  • Loading branch information
roytman authored May 16, 2024
2 parents adbd3ad + ad310fb commit 7e51570
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
4 changes: 2 additions & 2 deletions kind/hack/tools/install_kubeflow.sh
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,8 @@ wait(){
}

delete(){
kubectl delete -k "github.com/kubeflow/pipelines/manifests/kustomize/env/dev?ref=$PIPELINE_VERSION" --ignore-not-found || True
kubectl delete -k "github.com/kubeflow/pipelines/manifests/kustomize/cluster-scoped-resources?ref=$PIPELINE_VERSION" --ignore-not-found || True
kubectl delete -k "github.com/kubeflow/pipelines/manifests/kustomize/env/dev?ref=$PIPELINE_VERSION" --ignore-not-found || true
kubectl delete -k "github.com/kubeflow/pipelines/manifests/kustomize/cluster-scoped-resources?ref=$PIPELINE_VERSION" --ignore-not-found || true
kubectl delete --ignore-not-found clusterrolebinding pipeline-runner-extend
}

Expand Down
5 changes: 2 additions & 3 deletions kind/hack/tools/install_kuberay.sh
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,8 @@ wait(){
}

delete(){
helm uninstall kuberay-operator -n kuberay || True
helm uninstall kuberay-apiserver -n kuberay || True
helm uninstall kuberay-apiserver -n kuberay || True
helm uninstall kuberay-operator -n kuberay || true
helm uninstall kuberay-apiserver -n kuberay || true
}

usage(){
Expand Down

0 comments on commit 7e51570

Please sign in to comment.