* Introduce intergration test workflow for notebook-controller Signed-off-by: Apostolos Gerakaris <apoger@arrikto.com> * Publish Docker image only when PR is merged Signed-off-by: Apostolos Gerakaris <apoger@arrikto.com> * Remove kind & manifest gh-action workflows Signed-off-by: Apostolos Gerakaris <apoger@arrikto.com> * Update tag in manifests to v1.6.0 This change is required as images with v1.5.0 do not exist in Dockerhub. Signed-off-by: Apostolos Gerakaris <apoger@arrikto.com> Signed-off-by: Apostolos Gerakaris <apoger@arrikto.com> |
||
|---|---|---|
| .. | ||
| base | ||
| crd | ||
| default | ||
| manager | ||
| overlays | ||
| rbac | ||
| samples | ||
| README.md | ||
| testing-file | ||
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: Installsnotebook-controlleras part of Kubeflow. The resulting manifests should be the same as the result of the deprecatedbase_v3from kubeflow/manifests. At a glance, it makes the following changes:- Use namespace
kubeflow. - Remove namespace resource.
- Add KFAM container.
- Add KFAM Service and VirtualService.
- Use namespace
overlays/standalone: Installnotebook-controllerin 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