-
Notifications
You must be signed in to change notification settings - Fork 1.6k
✨ (helm/v2-alpha) add tolerations, nodeselector and affinity #5247
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
base: master
Are you sure you want to change the base?
✨ (helm/v2-alpha) add tolerations, nodeselector and affinity #5247
Conversation
|
|
|
Hi @robinlioret. Thanks for your PR. I'm waiting for a github.com member to verify that this patch is reasonable to test. If it is, they should reply with Once the patch is verified, the new status will be reflected by the I understand the commands that are listed here. Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes-sigs/prow repository. |
57ce1af to
895231c
Compare
|
/ok-to-test |
pkg/plugins/common/kustomize/v2/scaffolds/internal/templates/config/manager/config.go
Outdated
Show resolved
Hide resolved
pkg/plugins/common/kustomize/v2/scaffolds/internal/templates/config/manager/config.go
Show resolved
Hide resolved
c3b3709 to
8a3d353
Compare
c5d400e to
92d1019
Compare
b4e70f4 to
401f109
Compare
docs/book/src/cronjob-tutorial/testdata/project/config/manager/manager.yaml
Outdated
Show resolved
Hide resolved
|
The PR looks ready to be merged. |
1457d0a to
6152c4d
Compare
6152c4d to
6240baa
Compare
|
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: camilamacedo86, robinlioret 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 |
|
Thanks for approving the PR. I see two failing tests though.
Fails while fetching https://github.com/anchore/syft/releases/latest (ERR 503)
Fails like nothing was listening on the metric port. Is it a bug in the installation file ? Shouldn't it expose the 8443 port as well ? |
6240baa to
a417039
Compare
|
New changes are detected. LGTM label has been removed. |
| - key: kubernetes.io/os | ||
| operator: In | ||
| values: | ||
| - linux |
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 must be defined by who maintain the project and not who consume the project
If the image is not built for those then allowing who consume the solution via HelmChart add those will just end up in issues.
We should only expose values in the HelmCharts that make sense for who consume the solution.
|
Hi @robinlioret, Thanks for the contribution. We can’t accept this change. The Helm chart is only used to package and distribute a project. Things like:
are decisions made by the project maintainers, based on how the If we expose these as Helm values, end users could deploy the controller If a project needs specific scheduling rules, they must be defined by For this reason, we don’t expose these options in the generated Helm chart. Thanks again for the proposal. /hold |
we cannot move forward with those one.
See: #5246 (comment)
Adds nodeSelector, affinity and tolerations to the manager deployment template and values of the helm chart (v2-alpha).
Related issue: #4835