-
Notifications
You must be signed in to change notification settings - Fork 84
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
Parameterise tolerations and securityContext #306
Parameterise tolerations and securityContext #306
Conversation
|
Welcome @BrunoChauvet! |
Hi @BrunoChauvet. Thanks for your PR. I'm waiting for a kubernetes-sigs 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/test-infra repository. |
[APPROVALNOTIFIER] This PR is NOT APPROVED This pull-request has been approved by: BrunoChauvet The full list of commands accepted by this bot can be found here.
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
You also intend parameterising topologyspreadconstraints? |
/ok-to-test |
@BrunoChauvet: The following test failed, say
Full PR test history. Your PR dashboard. Please help us cut down on flakes by linking to an open issue when you hit one in your PR. 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/test-infra repository. I understand the commands that are listed here. |
Can this be squashed into one PR prior to merging? Once you've squashed it I'll rerun the testing |
also please increase the helm image version to 1.5.2 in the Chart.yaml & update the changelog, which will automatically release a new helm chart (and thus allow you to use the new helm chart). Here's an example of a recent PR I did: 433d653 |
PR needs rebase. 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/test-infra repository. |
Tolerations were parametrized in this PR: #311. We don't currently support topology, please open a new PR to 1) add topology support or 2) parameterize securityContext. Thanks! |
/close |
@jacobwolfaws: Closed this PR. In response to this:
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/test-infra repository. |
Is this a bug fix or adding new feature?
Better control of
tolerations
is required when all nodes in a cluster have taints with effectNoExecute
.Fixes #305
What is this PR about? / Why do we need it?
This PR gives better control over
tolerations
so they can be entirely replaced with custom ones.The same level of customisation is applied to
securityContext
.Note that this follows the same conventions as
aws-ebs-csi-driver
Controller: https://github.com/kubernetes-sigs/aws-ebs-csi-driver/blob/master/charts/aws-ebs-csi-driver/templates/controller.yaml#L43
Daemonset: https://github.com/kubernetes-sigs/aws-ebs-csi-driver/blob/master/charts/aws-ebs-csi-driver/templates/node.yaml#L39
What testing is done?