notebooks/components/notebook-controller/config
Eder Ignatowicz f1f441c89b chore: migrate docker images to ghcr (kubeflow/kubeflow#7706)
* chore: migrate docker images to ghcr

Signed-off-by: Eder Ignatowicz <ignatowicz@gmail.com>

* adding dash for central dashboard

Signed-off-by: Eder Ignatowicz <ignatowicz@gmail.com>

* update the spawner images

Signed-off-by: Eder Ignatowicz <ignatowicz@gmail.com>

* try to fix qemu

Signed-off-by: Eder Ignatowicz <ignatowicz@gmail.com>

* fix notebook-servers GHCR image path

Signed-off-by: Mathew Wicks <5735406+thesuperzapper@users.noreply.github.com>

* update example-notebook-servers README

Signed-off-by: Mathew Wicks <5735406+thesuperzapper@users.noreply.github.com>

* fix missed `IMG` updates

Signed-off-by: Mathew Wicks <5735406+thesuperzapper@users.noreply.github.com>

* remove remaining cases of `kubeflownotebookswg`

Signed-off-by: Mathew Wicks <5735406+thesuperzapper@users.noreply.github.com>

* fix typos

Signed-off-by: Mathew Wicks <5735406+thesuperzapper@users.noreply.github.com>

* remove `DOCKER_USER` env-var from workflows

Signed-off-by: Mathew Wicks <5735406+thesuperzapper@users.noreply.github.com>

---------

Signed-off-by: Eder Ignatowicz <ignatowicz@gmail.com>
Signed-off-by: Mathew Wicks <5735406+thesuperzapper@users.noreply.github.com>
Co-authored-by: Mathew Wicks <5735406+thesuperzapper@users.noreply.github.com>
2025-03-18 02:12:20 +00:00
..
base chore: migrate docker images to ghcr (kubeflow/kubeflow#7706) 2025-03-18 02:12:20 +00:00
crd fix(notebooks): add CRD validation for empty image and container (kubeflow/kubeflow#7495) 2024-05-24 00:22:27 +00:00
default fix: stop using gcr.io registry for kube-rbac-proxy (kubeflow/kubeflow#7678) 2025-02-07 20:32:42 +00:00
manager chore: migrate docker images to ghcr (kubeflow/kubeflow#7706) 2025-03-18 02:12:20 +00:00
overlays Notebook Controller: Consolidate manifests (kubeflow/kubeflow#5723) 2021-03-19 10:22:16 -07:00
rbac notebooks: Allow notebook controller to patch events (kubeflow/kubeflow#6523) 2022-06-20 12:25:37 +00:00
samples chore: migrate docker images to ghcr (kubeflow/kubeflow#7706) 2025-03-18 02:12:20 +00:00
README.md Notebook Controller: Consolidate manifests (kubeflow/kubeflow#5723) 2021-03-19 10:22:16 -07:00

README.md

Manifests

This folder contains manifests for installing notebook-controller. The structure is the following:

.
├── crd
├── default
├── manager
├── rbac
├── samples
├── base
├── overlays
│   ├── kubeflow
│   └── standalone

The breakdown is the following:

  • crd, default, manager, rbac, samples: Kubebuilder-generated structure. We keep this in order to be compatible with kubebuilder workflows. This is not meant for the consumer of the manifests.
  • base, overlays: Kustomizations meant for consumption by the user:
    • overlays/kubeflow: Installs notebook-controller as part of Kubeflow. The resulting manifests should be the same as the result of the deprecated base_v3 from kubeflow/manifests. At a glance, it makes the following changes:
      • Use namespace kubeflow.
      • Remove namespace resource.
      • Add KFAM container.
      • Add KFAM Service and VirtualService.
    • overlays/standalone: Install notebook-controller in its own namespace. Useful for testing or for users that prefer to install just the controller.

CRD Issue

We patch the kubebuilder-generated CRD with an older version. That's because the validation was more relaxed in a previous version and now we ended up with some clients and resources in a state that fails more detailed validation, but works correctly. For more information, see: https://github.com/kubeflow/kubeflow/issues/5722