Skip to content

Instantly share code, notes, and snippets.

@AmbroseNTK
Created June 5, 2021 13:51
Show Gist options
  • Save AmbroseNTK/23cda9f5f872f5eff487202b801943cc to your computer and use it in GitHub Desktop.
Save AmbroseNTK/23cda9f5f872f5eff487202b801943cc to your computer and use it in GitHub Desktop.
Install Kubeflow
MANIFEST_BRANCH=${MANIFEST_BRANCH:-v1.3-branch}
export MANIFEST_BRANCH
MANIFEST_VERSION=${MANIFEST_VERSION:-v1.3.0}
export MANIFEST_VERSION
KF_PROJECT_NAME=${KF_PROJECT_NAME:-hello-kf-${PLATFORM}}
export KF_PROJECT_NAME
mkdir "${KF_PROJECT_NAME}"
pushd "${KF_PROJECT_NAME}"
manifest_root=https://raw.githubusercontent.com/kubeflow/manifests/
FILE_NAME=kfctl_k8s_istio.${MANIFEST_VERSION}.yaml
KFDEF=${manifest_root}${MANIFEST_BRANCH}/kfdef/${FILE_NAME}
kfctl apply -f $KFDEF -V
echo $?
popd
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment