Choose the deployment option that best fits your needs:
kubeflow-monitoring
: Full Kubeflow deployment with all components.kubeflow
: Full Kubeflow deployment without monitoring components (prometheus, grafana).standalone-kfp-monitoring
: Standalone KFP deployment.standalone-kfp
: Standalone KFP deployment without monitoring components (prometheus, grafana).standalone-kfp-kserve-monitoring
: Standalone KFP and Kserve deployment.standalone-kfp-kserve
: Standalone KFP and Kserve deployment without monitoring components (prometheus, grafana).
export DEPLOYMENT_OPTION=kubeflow-monitoring
Deploy to your kubernetes cluster with the following command:
while ! kustomize build "deployment/envs/$DEPLOYMENT_OPTION" | kubectl apply -f -; do echo "Retrying to apply resources"; sleep 10; done