-
Notifications
You must be signed in to change notification settings - Fork 55
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
Release setup #274
Release setup #274
Conversation
✅ Deploy Preview for gateway-api-inference-extension ready!
To edit notification comments on pull requests, go to your Netlify site configuration. |
233c73b
to
3ce9e38
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@ahg-g thanks for creating this PR. I have a few nits, otherwise /lgtm.
- [ ] Update things like README, deployment templates, docs, configuration, test/e2e flags. | ||
Submit a PR against the release branch. | ||
- [ ] A maintainer [prepares a draft release](https://github.com/kubernetes-sigs/gateway-api-inference-extension/releases) | ||
- [ ] Write the change log into the draft release. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Will this project follow the GW API approach to changelog management (xref)?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can you please suggest what the exact step that we should add here?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'll defer to @robscott since he understands how GW API performs changelog management.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'd recommend incorporating something like this: https://github.com/kubernetes-sigs/gateway-api/blob/main/RELEASE.md#writing-a-changelog
artifacts: kustomize | ||
if [ -d artifacts ]; then rm -rf artifacts; fi | ||
mkdir -p artifacts | ||
$(KUSTOMIZE) build config/crd -o artifacts/manifests.yaml | ||
@$(call clean-manifests) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
In addition to cutting the CRDs, we need to consider:
- How do we version the web docs?
- Assets such as the POC example need to be tuned when cutting a release (xref).
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Those will be in the release branch, and so already properly versioned, right?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@ahg-g not necessarily. For example, the vLLM image tag should be changed from latest
to a release tag when cutting a release. The imagePullPolicy should be changed from Always
to IfNotPresent
. This applies to all images and pull policies in the POC deployments. Neither are blockers for the v0.1 release but something we should consider b/c both are best practices that we should follow.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sounds good, lets follow up on that after the first release. I would like to move the manifests directory out of the pkg
and also move the guides into the site, I am not sure we will get to in the first release.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: ahg-g, danehans The full list of commands accepted by this bot can be found here. The pull request process is described here
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks @ahg-g!
/lgtm
make artifacts
rule to generate release artifactsFixes #263