Kubeflow Install (v1.9.1)
# cd && git clone https://github.com/kubeflow/manifests.git
# Kubeflow 1.9.1 배포
mkdir -p /root/files/kubeflow
curl -L https://github.com/kubeflow/manifests/archive/refs/tags/v1.9.1.tar.gz -o /root/files/kubeflow/v1.9.1.tar.gz
tar -zxvf /root/files/kubeflow/v1.9.1.tar.gz -C /root/files/kubeflow/
mv /root/files/kubeflow/manifests-1.9.1 /root/manifests
cd ~/manifests
while ! kustomize build example | kubectl apply --server-side --force-conflicts -f -; do echo "Retrying to apply resources"; sleep 20; done