Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/project-codeflare/codeflare-operator
Operator for installation and lifecycle management of CodeFlare distributed workload stack
https://github.com/project-codeflare/codeflare-operator
Last synced: about 1 month ago
JSON representation
Operator for installation and lifecycle management of CodeFlare distributed workload stack
- Host: GitHub
- URL: https://github.com/project-codeflare/codeflare-operator
- Owner: project-codeflare
- License: apache-2.0
- Created: 2023-01-31T19:59:21.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-10-17T14:49:40.000Z (2 months ago)
- Last Synced: 2024-11-01T04:52:20.427Z (about 2 months ago)
- Language: Go
- Homepage:
- Size: 1.17 MB
- Stars: 7
- Watchers: 14
- Forks: 43
- Open Issues: 35
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
# codeflare-operator
Operator for installation and lifecycle management of CodeFlare distributed workload stack.
CodeFlare Stack Compatibility Matrix
| Component | Version |
|------------------------------|---------------------------------------------------------------------------------------------------|
| CodeFlare Operator | [v1.11.0](https://github.com/project-codeflare/codeflare-operator/releases/tag/v1.11.0) |
| CodeFlare-SDK | [v0.23.1](https://github.com/project-codeflare/codeflare-sdk/releases/tag/v0.23.1) |
| AppWrapper | [v0.27.0](https://github.com/project-codeflare/appwrapper/releases/tag/v0.27.0) |
| KubeRay | [v1.1.0](https://github.com/opendatahub-io/kuberay/releases/tag/v1.1.0) |
| Kueue | [v0.8.3](https://github.com/opendatahub-io/kueue/releases/tag/v0.8.3) |## Development
Requirements:
- GNU sed - sed is used in several Makefile command. Using macOS default sed is incompatible, so GNU sed is needed for correct execution of these commands.
When you have a version of the GNU sed installed on a macOS you may specify the binary using
```bash
# brew install gnu-sed
make install -e SED=/usr/local/bin/gsed
```### Testing
The e2e tests can be executed locally by running the following commands:
1. Use an existing cluster, or set up a test cluster, e.g.:
```bash
# Create a KinD cluster
make kind-e2e
# Install the CRDs
make install
```[!NOTE]
Some e2e tests cover the access to services via Ingresses, as end-users would do, which requires access to the Ingress controller load balancer by its IP.
For it to work on macOS, this requires installing [docker-mac-net-connect](https://github.com/chipmk/docker-mac-net-connect).2. Setup the rest of the CodeFlare stack.
```bash
make setup-e2e
```[!NOTE]
Kueue will only activate its Ray integration if KubeRay is installed before Kueue (as done by this make target).[!NOTE]
In OpenShift the KubeRay operator pod gets random user assigned. This user is then used to run Ray cluster.
However the random user assigned by OpenShift doesn't have rights to store dataset downloaded as part of test execution, causing tests to fail.
To prevent this failure on OpenShift user should enforce user 1000 for KubeRay and Ray cluster by creating this SCC in KubeRay operator namespace (replace the namespace placeholder):```yaml
kind: SecurityContextConstraints
apiVersion: security.openshift.io/v1
metadata:
name: run-as-ray-user
seLinuxContext:
type: MustRunAs
runAsUser:
type: MustRunAs
uid: 1000
users:
- 'system:serviceaccount:$(namespace):kuberay-operator'
```3. Start the operator locally:
```bash
NAMESPACE=default make run
```Alternatively, You can run the operator from your IDE / debugger.
4. In a separate terminal, set your output directory for test files, and run the e2e suite:
```bash
export CODEFLARE_TEST_OUTPUT_DIR=
``````bash
make test-e2e
```Alternatively, You can run the e2e test(s) from your IDE / debugger.
#### Testing on disconnected cluster
To properly run e2e tests on disconnected cluster user has to provide additional environment variables to properly configure testing environment:
- `CODEFLARE_TEST_PYTORCH_IMAGE` - image tag for image used to run training job
- `CODEFLARE_TEST_RAY_IMAGE` - image tag for Ray cluster image
- `MNIST_DATASET_URL` - URL where MNIST dataset is available
- `PIP_INDEX_URL` - URL where PyPI server with needed dependencies is running
- `PIP_TRUSTED_HOST` - PyPI server hostnameFor ODH tests additional environment variables are needed:
- `NOTEBOOK_IMAGE_STREAM_NAME` - name of the ODH Notebook ImageStream to be used
- `ODH_NAMESPACE` - namespace where ODH is installed## Release
1. Invoke [project-codeflare-release.yaml](https://github.com/project-codeflare/codeflare-operator/actions/workflows/project-codeflare-release.yml)
2. Once all jobs within the action are completed, verify that compatibility matrix in [README](https://github.com/project-codeflare/codeflare-operator/blob/main/README.md) was properly updated.
3. Verify that opened pull request to [OpenShift community operators repository](https://github.com/redhat-openshift-ecosystem/community-operators-prod) has proper content.
4. Once PR is merged, announce the new release in slack and mail lists, if any.
5. Release automation should auto-merge changes to [ODH CodeFlare operator repo](https://github.com/opendatahub-io/codeflare-operator). Verify the [workflow](https://github.com/project-codeflare/codeflare-operator/actions/workflows/project-codeflare-release.yml) ran successfully and review the new merge-commit and commit history. Same for the [Red Hat CodeFlare Operator repo](https://github.com/red-hat-data-services/codeflare-operator), while also ensuring changes are in the latest `rhoai` release branch. - If the auto-merge fails, conflicts must be resolved and force pushed manually to each downstream repository and release branch.
6. In ODH/CFO verify that the [Build and Push action](https://github.com/opendatahub-io/codeflare-operator/actions/workflows/build-and-push.yaml) was triggered and ran successfully.
7. Make sure that release automation created a PR updating CodeFlare SDK version in [ODH Notebooks repository](https://github.com/opendatahub-io/notebooks). Make sure the PR gets merged.### Releases involving part of the stack
There may be instances in which a new CodeFlare stack release requires releases of only a subset of the stack components. Examples could be hotfixes for a specific component. In these instances:
1. Build updated components as needed:
- Build and release [CodeFlare-SDK](https://github.com/project-codeflare/codeflare-sdk)2. Invoke [tag-and-build.yml](https://github.com/project-codeflare/codeflare-operator/actions/workflows/tag-and-build.yml) GitHub action, this action will create a repository tag, build and push operator image.
3. Check result of [tag-and-build.yml](https://github.com/project-codeflare/codeflare-operator/actions/workflows/tag-and-build.yml) GitHub action, it should pass.
4. Verify that compatibility matrix in [README](https://github.com/project-codeflare/codeflare-operator/blob/main/README.md) was properly updated.
5. Follow the steps 3-6 from the previous section.