gitextract_cdatvxxx/ ├── .github/ │ ├── CODEOWNERS │ ├── PULL_REQUEST_TEMPLATE.md │ └── workflows/ │ ├── deploy.yml │ └── pull-request.yml ├── .gitignore ├── README.md ├── babel.config.js ├── community/ │ ├── community.md │ ├── contributors.md │ └── how-to-contribute.md ├── docs/ │ ├── api-deployment/ │ │ ├── _category_.json │ │ ├── seldon-children.md │ │ ├── seldon-fields.md │ │ ├── seldon-iris.md │ │ ├── seldon-mlflow.md │ │ ├── seldon-pg.md │ │ └── what-is-api-deployment.md │ ├── appendix/ │ │ ├── _category_.json │ │ ├── metallb.md │ │ └── pyenv.md │ ├── further-readings/ │ │ ├── _category_.json │ │ └── info.md │ ├── introduction/ │ │ ├── _category_.json │ │ ├── component.md │ │ ├── intro.md │ │ ├── levels.md │ │ └── why_kubernetes.md │ ├── kubeflow/ │ │ ├── _category_.json │ │ ├── advanced-component.md │ │ ├── advanced-environment.md │ │ ├── advanced-mlflow.md │ │ ├── advanced-pipeline.md │ │ ├── advanced-run.md │ │ ├── basic-component.md │ │ ├── basic-pipeline-upload.md │ │ ├── basic-pipeline.md │ │ ├── basic-requirements.md │ │ ├── basic-run.md │ │ ├── how-to-debug.md │ │ ├── kubeflow-concepts.md │ │ └── kubeflow-intro.md │ ├── kubeflow-dashboard-guide/ │ │ ├── _category_.json │ │ ├── experiments-and-others.md │ │ ├── experiments.md │ │ ├── intro.md │ │ ├── notebooks.md │ │ ├── tensorboards.md │ │ └── volumes.md │ ├── prerequisites/ │ │ ├── _category_.json │ │ └── docker/ │ │ ├── _category_.json │ │ ├── advanced.md │ │ ├── command.md │ │ ├── docker.md │ │ ├── images.md │ │ ├── install.md │ │ └── introduction.md │ ├── setup-components/ │ │ ├── _category_.json │ │ ├── install-components-kf.md │ │ ├── install-components-mlflow.md │ │ ├── install-components-pg.md │ │ └── install-components-seldon.md │ └── setup-kubernetes/ │ ├── _category_.json │ ├── install-kubernetes/ │ │ ├── _category_.json │ │ ├── kubernetes-with-k3s.md │ │ ├── kubernetes-with-kubeadm.md │ │ └── kubernetes-with-minikube.md │ ├── install-kubernetes-module.md │ ├── install-prerequisite.md │ ├── intro.md │ ├── kubernetes.md │ └── setup-nvidia-gpu.md ├── docusaurus.config.js ├── i18n/ │ ├── en/ │ │ ├── code.json │ │ ├── docusaurus-plugin-content-blog/ │ │ │ └── options.json │ │ ├── docusaurus-plugin-content-docs/ │ │ │ ├── current/ │ │ │ │ ├── api-deployment/ │ │ │ │ │ ├── _category_.json │ │ │ │ │ ├── seldon-children.md │ │ │ │ │ ├── seldon-fields.md │ │ │ │ │ ├── seldon-iris.md │ │ │ │ │ ├── seldon-mlflow.md │ │ │ │ │ ├── seldon-pg.md │ │ │ │ │ └── what-is-api-deployment.md │ │ │ │ ├── appendix/ │ │ │ │ │ ├── _category_.json │ │ │ │ │ ├── metallb.md │ │ │ │ │ └── pyenv.md │ │ │ │ ├── further-readings/ │ │ │ │ │ ├── _category_.json │ │ │ │ │ └── info.md │ │ │ │ ├── introduction/ │ │ │ │ │ ├── _category_.json │ │ │ │ │ ├── component.md │ │ │ │ │ ├── intro.md │ │ │ │ │ ├── levels.md │ │ │ │ │ └── why_kubernetes.md │ │ │ │ ├── kubeflow/ │ │ │ │ │ ├── _category_.json │ │ │ │ │ ├── advanced-component.md │ │ │ │ │ ├── advanced-environment.md │ │ │ │ │ ├── advanced-mlflow.md │ │ │ │ │ ├── advanced-pipeline.md │ │ │ │ │ ├── advanced-run.md │ │ │ │ │ ├── basic-component.md │ │ │ │ │ ├── basic-pipeline-upload.md │ │ │ │ │ ├── basic-pipeline.md │ │ │ │ │ ├── basic-requirements.md │ │ │ │ │ ├── basic-run.md │ │ │ │ │ ├── how-to-debug.md │ │ │ │ │ ├── kubeflow-concepts.md │ │ │ │ │ └── kubeflow-intro.md │ │ │ │ ├── kubeflow-dashboard-guide/ │ │ │ │ │ ├── _category_.json │ │ │ │ │ ├── experiments-and-others.md │ │ │ │ │ ├── experiments.md │ │ │ │ │ ├── intro.md │ │ │ │ │ ├── notebooks.md │ │ │ │ │ ├── tensorboards.md │ │ │ │ │ └── volumes.md │ │ │ │ ├── prerequisites/ │ │ │ │ │ ├── _category_.json │ │ │ │ │ └── docker/ │ │ │ │ │ ├── _category_.json │ │ │ │ │ ├── advanced.md │ │ │ │ │ ├── command.md │ │ │ │ │ ├── docker.md │ │ │ │ │ ├── images.md │ │ │ │ │ ├── install.md │ │ │ │ │ └── introduction.md │ │ │ │ ├── setup-components/ │ │ │ │ │ ├── _category_.json │ │ │ │ │ ├── install-components-kf.md │ │ │ │ │ ├── install-components-mlflow.md │ │ │ │ │ ├── install-components-pg.md │ │ │ │ │ └── install-components-seldon.md │ │ │ │ └── setup-kubernetes/ │ │ │ │ ├── _category_.json │ │ │ │ ├── install-kubernetes/ │ │ │ │ │ ├── _category_.json │ │ │ │ │ ├── kubernetes-with-k3s.md │ │ │ │ │ ├── kubernetes-with-kubeadm.md │ │ │ │ │ └── kubernetes-with-minikube.md │ │ │ │ ├── install-kubernetes-module.md │ │ │ │ ├── install-prerequisite.md │ │ │ │ ├── intro.md │ │ │ │ ├── kubernetes.md │ │ │ │ └── setup-nvidia-gpu.md │ │ │ ├── current.json │ │ │ ├── version-1.0/ │ │ │ │ ├── api-deployment/ │ │ │ │ │ ├── _category_.json │ │ │ │ │ ├── seldon-children.md │ │ │ │ │ ├── seldon-fields.md │ │ │ │ │ ├── seldon-iris.md │ │ │ │ │ ├── seldon-mlflow.md │ │ │ │ │ ├── seldon-pg.md │ │ │ │ │ └── what-is-api-deployment.md │ │ │ │ ├── appendix/ │ │ │ │ │ ├── _category_.json │ │ │ │ │ ├── metallb.md │ │ │ │ │ └── pyenv.md │ │ │ │ ├── further-readings/ │ │ │ │ │ ├── _category_.json │ │ │ │ │ └── info.md │ │ │ │ ├── introduction/ │ │ │ │ │ ├── _category_.json │ │ │ │ │ ├── component.md │ │ │ │ │ ├── intro.md │ │ │ │ │ ├── levels.md │ │ │ │ │ └── why_kubernetes.md │ │ │ │ ├── kubeflow/ │ │ │ │ │ ├── _category_.json │ │ │ │ │ ├── advanced-component.md │ │ │ │ │ ├── advanced-environment.md │ │ │ │ │ ├── advanced-mlflow.md │ │ │ │ │ ├── advanced-pipeline.md │ │ │ │ │ ├── advanced-run.md │ │ │ │ │ ├── basic-component.md │ │ │ │ │ ├── basic-pipeline-upload.md │ │ │ │ │ ├── basic-pipeline.md │ │ │ │ │ ├── basic-requirements.md │ │ │ │ │ ├── basic-run.md │ │ │ │ │ ├── how-to-debug.md │ │ │ │ │ ├── kubeflow-concepts.md │ │ │ │ │ └── kubeflow-intro.md │ │ │ │ ├── kubeflow-dashboard-guide/ │ │ │ │ │ ├── _category_.json │ │ │ │ │ ├── experiments-and-others.md │ │ │ │ │ ├── experiments.md │ │ │ │ │ ├── intro.md │ │ │ │ │ ├── notebooks.md │ │ │ │ │ ├── tensorboards.md │ │ │ │ │ └── volumes.md │ │ │ │ ├── prerequisites/ │ │ │ │ │ ├── _category_.json │ │ │ │ │ └── docker/ │ │ │ │ │ ├── _category_.json │ │ │ │ │ ├── advanced.md │ │ │ │ │ ├── command.md │ │ │ │ │ ├── docker.md │ │ │ │ │ ├── images.md │ │ │ │ │ ├── install.md │ │ │ │ │ └── introduction.md │ │ │ │ ├── setup-components/ │ │ │ │ │ ├── _category_.json │ │ │ │ │ ├── install-components-kf.md │ │ │ │ │ ├── install-components-mlflow.md │ │ │ │ │ ├── install-components-pg.md │ │ │ │ │ └── install-components-seldon.md │ │ │ │ └── setup-kubernetes/ │ │ │ │ ├── _category_.json │ │ │ │ ├── install-kubernetes/ │ │ │ │ │ ├── _category_.json │ │ │ │ │ ├── kubernetes-with-k3s.md │ │ │ │ │ ├── kubernetes-with-kubeadm.md │ │ │ │ │ └── kubernetes-with-minikube.md │ │ │ │ ├── install-kubernetes-module.md │ │ │ │ ├── install-prerequisite.md │ │ │ │ ├── intro.md │ │ │ │ ├── kubernetes.md │ │ │ │ └── setup-nvidia-gpu.md │ │ │ └── version-1.0.json │ │ ├── docusaurus-plugin-content-docs-community/ │ │ │ ├── current/ │ │ │ │ └── community/ │ │ │ │ ├── community.md │ │ │ │ ├── contributors.md │ │ │ │ └── how-to-contribute.md │ │ │ └── current.json │ │ └── docusaurus-theme-classic/ │ │ ├── footer.json │ │ └── navbar.json │ └── ko/ │ ├── code.json │ ├── docusaurus-plugin-content-blog/ │ │ └── options.json │ ├── docusaurus-plugin-content-docs/ │ │ ├── current.json │ │ └── version-1.0.json │ ├── docusaurus-plugin-content-docs-community/ │ │ └── current.json │ └── docusaurus-theme-classic/ │ ├── footer.json │ └── navbar.json ├── package.json ├── python/ │ ├── env/ │ │ └── .gitkeep │ ├── pyproject.toml │ └── translation/ │ └── main.py ├── sidebars.js ├── sidebarsCommunity.js ├── src/ │ ├── components/ │ │ ├── HomepageFeatures/ │ │ │ ├── index.tsx │ │ │ └── styles.module.css │ │ └── TeamProfileCards/ │ │ └── index.tsx │ ├── css/ │ │ └── custom.css │ └── pages/ │ ├── index.module.css │ ├── index.tsx │ └── markdown-page.md ├── static/ │ ├── .nojekyll │ ├── googlee5904fe980148e9b.html │ └── img/ │ └── site.webmanifest ├── tsconfig.json ├── versioned_docs/ │ └── version-1.0/ │ ├── api-deployment/ │ │ ├── _category_.json │ │ ├── seldon-children.md │ │ ├── seldon-fields.md │ │ ├── seldon-iris.md │ │ ├── seldon-mlflow.md │ │ ├── seldon-pg.md │ │ └── what-is-api-deployment.md │ ├── appendix/ │ │ ├── _category_.json │ │ ├── metallb.md │ │ └── pyenv.md │ ├── further-readings/ │ │ ├── _category_.json │ │ └── info.md │ ├── introduction/ │ │ ├── _category_.json │ │ ├── component.md │ │ ├── intro.md │ │ ├── levels.md │ │ └── why_kubernetes.md │ ├── kubeflow/ │ │ ├── _category_.json │ │ ├── advanced-component.md │ │ ├── advanced-environment.md │ │ ├── advanced-mlflow.md │ │ ├── advanced-pipeline.md │ │ ├── advanced-run.md │ │ ├── basic-component.md │ │ ├── basic-pipeline-upload.md │ │ ├── basic-pipeline.md │ │ ├── basic-requirements.md │ │ ├── basic-run.md │ │ ├── how-to-debug.md │ │ ├── kubeflow-concepts.md │ │ └── kubeflow-intro.md │ ├── kubeflow-dashboard-guide/ │ │ ├── _category_.json │ │ ├── experiments-and-others.md │ │ ├── experiments.md │ │ ├── intro.md │ │ ├── notebooks.md │ │ ├── tensorboards.md │ │ └── volumes.md │ ├── prerequisites/ │ │ ├── _category_.json │ │ └── docker/ │ │ ├── _category_.json │ │ ├── advanced.md │ │ ├── command.md │ │ ├── docker.md │ │ ├── images.md │ │ ├── install.md │ │ └── introduction.md │ ├── setup-components/ │ │ ├── _category_.json │ │ ├── install-components-kf.md │ │ ├── install-components-mlflow.md │ │ ├── install-components-pg.md │ │ └── install-components-seldon.md │ └── setup-kubernetes/ │ ├── _category_.json │ ├── install-kubernetes/ │ │ ├── _category_.json │ │ ├── kubernetes-with-k3s.md │ │ ├── kubernetes-with-kubeadm.md │ │ └── kubernetes-with-minikube.md │ ├── install-kubernetes-module.md │ ├── install-prerequisite.md │ ├── intro.md │ ├── kubernetes.md │ └── setup-nvidia-gpu.md ├── versioned_sidebars/ │ └── version-1.0-sidebars.json └── versions.json