notebooks/components/tensorboard-controller
Mathew Wicks 5f191bc6a8
chore: add area labels in owners files (#594)
Signed-off-by: Mathew Wicks <5735406+thesuperzapper@users.noreply.github.com>
2025-09-16 14:23:36 +00:00
..
api/v1alpha1 Upgrade API version of `Tensorboard` CRD to `v1` (kubeflow/kubeflow#6406) 2022-06-17 09:20:10 +00:00
config chore: migrate docker images to ghcr (kubeflow/kubeflow#7706) 2025-03-18 02:12:20 +00:00
controllers feat: allow setting `ISTIO_HOST` in notebook/tensorboard controller for Istio VirtualServices (kubeflow/kubeflow#6902) 2024-05-24 00:11:27 +00:00
hack Upgrade API version of `Tensorboard` CRD to `v1` (kubeflow/kubeflow#6406) 2022-06-17 09:20:10 +00:00
.dockerignore Upgrade API version of `Tensorboard` CRD to `v1` (kubeflow/kubeflow#6406) 2022-06-17 09:20:10 +00:00
.gitignore Upgrade API version of `Tensorboard` CRD to `v1` (kubeflow/kubeflow#6406) 2022-06-17 09:20:10 +00:00
Dockerfile updated compatible base images & removed arch dependencies in different components for multiple arch support (kubeflow/kubeflow#6650) 2022-11-23 13:42:42 +00:00
Makefile chore: migrate docker images to ghcr (kubeflow/kubeflow#7706) 2025-03-18 02:12:20 +00:00
OWNERS chore: add area labels in owners files (#594) 2025-09-16 14:23:36 +00:00
PROJECT Upgrade API version of `Tensorboard` CRD to `v1` (kubeflow/kubeflow#6406) 2022-06-17 09:20:10 +00:00
README.md Add RWO_PVC_SCHEDULING env var to the Tensorboard Controller deployment (kubeflow/kubeflow#5266) 2020-08-31 08:12:21 -07:00
go.mod build(deps): bump golang.org/x/net from 0.0.0-20210825183410-e898025ed96a to 0.17.0 in /components/tensorboard-controller (kubeflow/kubeflow#7329) 2024-01-27 17:13:16 +00:00
go.sum build(deps): bump golang.org/x/net from 0.0.0-20210825183410-e898025ed96a to 0.17.0 in /components/tensorboard-controller (kubeflow/kubeflow#7329) 2024-01-27 17:13:16 +00:00
main.go Upgrade API version of `Tensorboard` CRD to `v1` (kubeflow/kubeflow#6406) 2022-06-17 09:20:10 +00:00
skaffold.yaml Fix docker builds of notebook and tensorboard controller (kubeflow/kubeflow#4664) 2020-01-21 17:54:34 -08:00

README.md

GSoC 2020 - TENSORBOARD CONTROLLER

Prequisites to build and run the controller:

  1. GO

  2. Docker

  3. kustomize

  4. kubectl

RUN TENSORBOARD CONTROLLER LOCALLY

Steps:

  1. Clone the repository

  2. Change directories to components/tensorboard-controller

  3. Generate and install manifests and build the controller: make install

  4. Run the controller locally: make run

If you want to enable the scheduling functionality for Tensorboard servers that use ReadWriteOnce PVCs as log storages, then set the RWO_PVC_SCHEDULING to true and run: RWO_PVC_SCHEDULING="true" make run

BUILD TENSORBOARD CONTROLLER IMAGE AND DEPLOY TO CLUSTER

  1. Clone the repository

  2. Change directories to components/tensorboard-controller

  3. Generate and install manifests and build the controller: make manifests

  4. Build and push the docker image: make docker-build docker-push IMG=YOUR_IMAGE_NAME

  5. Deploy the Tensorboard controller: make deploy IMG=YOUR_IMAGE_NAME

If you want to enable the scheduling functionality for Tensorboard servers that use ReadWriteOnce PVCs as log storages, then:

  1. Change directories to components/tensorboard-controller/config/manager

  2. Modify the manager.yaml file by navigating to the deployment.spec.template.spec field and manually setting the value of the RWO_PVC_SCHEDULING env var to "true" in the manager container.

  3. Run: make deploy IMG=YOUR_IMAGE_NAME