I am trying to integrate Kubeflow notebook with Gitlab (download the gitlab repo into notebook and run models by setting parameters). Currently we are doing it by importing the .tar.gz version of the gitlab repo as a first cell in the kubeflow notebook. The disadvantage here is we have to give the private token.
# %%bash
# wget -O kf.tar.gz https://gitlab.ikarem.io/projects/archive?sha=$$$$$$$$ --header='PRIVATE-TOKEN: $$$$$$$$'
# tar -zxvf kf.tar.gz
# mv kf-* kf
# rm -rf kf.tar.gz
Has anyone tried any other ways to integrate Kubeflow notebooks with Gitlab? Has Qubole helped here? I would really appreciate a detailed explanation on this. Thanks in advance for the time. :)