-
Notifications
You must be signed in to change notification settings - Fork 999
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
docs(contributing): Add section for building custom image #7250
base: main
Are you sure you want to change the base?
Conversation
There didn't exist any documentation on how to build images with changes made in https://github.com/kubernetes-sigs/karpenter. This adds explicit documentation on how to update the `go.mod` file and produce an image with changes made to the karpenter project.
✅ Deploy Preview for karpenter-docs-prod ready!
To edit notification comments on pull requests, go to your Netlify site configuration. |
*Note: that this will produce a build with the latest version of https://github.com/kubernetes-sigs/karpenter. | ||
|
||
```bash | ||
export $ |
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.
Did you mean to leave something here? Or does this do something I'm not aware of
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.
Ah yeah, I was debating if I wanted to explicitly add setting $KO_DOCKER_REPO
but that's already called out earlier. Let me update it and remove
|
||
```bash | ||
export $ | ||
make image # build and push the karpenter images |
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.
This is automatically done by make apply
. Was there a reason you wanted to specifically include this as a separate step ?
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.
Same as my comment below. My company is a heavy GitOps shop and I don't deploy karpenter via helm. make apply
is not relevant to my experience and would actually cause more problems.
go mod edit -replace sign.k8s.io/karpenter=$PATH_TO_KUBERNETES_SIGS_KARPENTER | ||
``` | ||
|
||
*Note: you need to commit the go.mod changes before running `make image` |
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.
you shouldn't need to git commit
it. If you run make apply
, it runs the verify
target, which should run go mod tidy for you
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.
Got it. I didn't use make apply
when building the images and deploying. I deploy my changes via flux and so that entire part of the process didn't apply to me. Do you prefer I remove this bit, or make a call out that you need to do this only if you're trying to build the images?
```bash | ||
make image # build and push the karpenter images | ||
``` |
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 think you can probably remove these lines now that you've added more detail above
Co-authored-by: Nick Tran <[email protected]>
Co-authored-by: Nick Tran <[email protected]>
Co-authored-by: Nick Tran <[email protected]>
This PR has been inactive for 14 days. StaleBot will close this stale PR after 14 more days of inactivity. |
This PR has been inactive for 14 days. StaleBot will close this stale PR after 14 more days of inactivity. |
This PR has been inactive for 14 days. StaleBot will close this stale PR after 14 more days of inactivity. |
This PR has been inactive for 14 days. StaleBot will close this stale PR after 14 more days of inactivity. |
|
||
```bash | ||
make image # build and push the karpenter images | ||
``` | ||
|
||
*Note: that this will produce a build with the version of https://github.com/kubernetes-sigs/karpenter in your local filesystem. |
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 we make these changes to all the doc version? https://github.com/aws/karpenter-provider-aws/tree/main/website/content/en
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.
@engedaam my understanding was that the changes start in preview, then automatically get moved over. It's been quite some time since I submitted the Pr, so let me take a peak at the docs again 😅
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.
No, that only happens when we release a new version of the docs. We just need to copy these change to the reset of the docs
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.
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.
Yeah, we just want to add it to those section
Fixes #N/A
Description
There didn't exist any documentation on how to build images with changes made in https://github.com/kubernetes-sigs/karpenter.
This adds explicit documentation on how to update the
go.mod
file and produce an image with changes made to the karpenter project.How was this change tested?
By viewing the generated documenation.
Does this change impact docs?
By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.