Authors: Kimonas Sotirchos [email protected]
The motivation behind this proposal is to fully document expectations and
requirements that components under /contrib
should satisfy. This will make it
more clear how to use a component, how it integrates with Kubeflow, the problems
it tries to solve as well as dependency versions.
- Document requirements that components under
/contrib
should satisfy - Introduce a process for deprecating unmaintained components
- Get into the discussion of which components are considered "Kubeflow" components
- The assumption until now is that components under the Kubeflow GitHub Org live
under the
/apps
dir, and all others under/contrib
- The assumption until now is that components under the Kubeflow GitHub Org live
under the
- Provide a migration plan for components to move out from
/contrib
- Modify the
example/kustomization.yaml
with new components
Components living under /contrib
should satisfy some strict requirements to
ensure they are always usable by end-users and contain complementary documentation.
These are the requirements for all components under /contrib
:
- There must be a
README.md
file that documents:- Instructions on how someone can install the component in a Kubeflow cluster
- Since Kubeflow manifests have standardized on Kustomize we expect all manifests to be a kustomize packages
- How to use the component as part of Kubeflow (examples)
- The problems it tries to solve and the value it brings
- Links to the official documentation of the component
- Instructions on how someone can install the component in a Kubeflow cluster
- There must be an OWNERS file with at least 2 users
- The component must work with the latest version of Kubeflow, and its dependencies
- There must be an
UPGRADE.md
file that documents any instructions users need to follow when applying manifests of a newer version - There needs to be sufficient work on testing
- There must be a script file [python, bash etc] that vefiries the component is working as expected. This can be something very simple, like submitting a CustomResource and waiting for it to become Ready
- The maintainers will need to work with the leads of Manifests WG to ensure there's some basic automation in place that will be running the above script(s)
- All pods must run with the baseline PSS set
- [stretch goal] All pods must run according to the offical Kubernetes podsecuritystandards restricted set. This means explicitly no root containers and dropping all capabilities in your pods securitycontexts.
- [stretch goal] Running with Istio sidecars
- [stretch goal] Namespace isolation
At this point we don't want to provide too much of a strict structure for the README. Developers are free to expose any other information in the README that they find fit, as long as the above info is exposed.
The proposed criteria for deciding that a component should be deprecated are:
- The component can not be installed in the minimum K8s version supported by Kubeflow
- The manifests are not working as expected and result in undeployable Pods
- The documented examples do not work as expected
If a component meets all the above criteria then it will initially be marked as UNMAINTAINED/OUT-OF-DATE, in the component's README. Then if a whole Kubeflow release cycle concludes and the component is still in UNMAINTAINED/OUT-OF-DATE phase and without any feedback from the OWNERS, it will be removed.