Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adds the component_metadata.yaml to track KFP releases across DSP ones #772

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions config/component_metadata.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
releases:
- name: Kubeflow Pipelines
version: 2.2.0
repoUrl: https://github.com/kubeflow/pipelines
11 changes: 6 additions & 5 deletions docs/release/RELEASE.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,15 +38,16 @@ Steps on how to release `x.y+1`

1. Ensure `compatibility.yaml` is upto date, and generate a new `compatibility.md`
- Use [release-tools] to accomplish this
2. Cut branch `vx.y+1` from `main/master`
2. If the changes include a code rebase from KFP repo, ensure `config/component_metadata.yaml` is updated with the respective KFP version
3. Cut branch `vx.y+1` from `main/master`
- Do this for DSPO and DSP repos
3. Build images. Use the [build-tags] workflow, specifying the branches from above
4. Retrieve the sha images from the resulting workflow (check quay.io for the digests)
4. Build images. Use the [build-tags] workflow, specifying the branches from above
5. Retrieve the sha images from the resulting workflow (check quay.io for the digests)
- Using [release-tools] generate a `params.env` and submit a new pr to `vx.y+1` branch
- For images pulled from registry, ensure latest images are upto date
5. Perform any tests on the branch, confirm stability
6. Perform any tests on the branch, confirm stability
- If issues are found, they should be corrected in `main/master` and be cherry-picked into this branch.
6. Create a tag release (using the branches from above) for `x.y+1.0` in DSPO and DSP (e.g. `v1.3.0`)
7. Create a tag release (using the branches from above) for `x.y+1.0` in DSPO and DSP (e.g. `v1.3.0`)

## PATCH Releases

Expand Down
Loading