Giter Club home page Giter Club logo

Comments (7)

kfox1111 avatar kfox1111 commented on May 30, 2024 1

They let you per namespace:
set a default set of tolerations / nodeSelectors to always add to pods if not already there. This lets you easily target pods automatically to pools of nodes. (Mutating webhook style)
Set an allowed set of tolerations / nodeSelectors that can be used. If others are used, they are denied. This prevents a user from using pools of nodes they don't have permissions to. (validating webhook style)

Both are listed here:
https://kubernetes.io/docs/reference/access-authn-authz/admission-controllers/

from gatekeeper-library.

maxsmythe avatar maxsmythe commented on May 30, 2024

What alpha admission controller are you referencing? Can you expand on what PodTolerationRestriction and PodNodeSelector do/did?

from gatekeeper-library.

kfox1111 avatar kfox1111 commented on May 30, 2024

The mutating webhooks in gatekeeper don't seem to have the nice librarization that the validating ones do. So for each pool, you'd need a complicated set of rules to make it work.

Probably need to add some kind of liberalization for mutating webhooks as well.

from gatekeeper-library.

kfox1111 avatar kfox1111 commented on May 30, 2024

As a workaround, until librarization of mutating webhooks is possible, using a RuntimeClass for that seems to work ok:

apiVersion: node.k8s.io/v1
kind: RuntimeClass
metadata:
  name: foo
handler: default
scheduling:
  nodeSelector:
    pool: foo
  tolerations:
  - key: "pool"
    operator: "Equal"
    value: "foo"
    effect: "NoSchedule"
---
apiVersion: mutations.gatekeeper.sh/v1alpha1
kind: Assign
metadata:
  name: foo-pool-assignment
spec:
  match:
    scope: Namespaced
    kinds:
    - apiGroups: ["*"]
      kinds: ["Pod"]
    namespaceSelector:
      matchExpressions:
      - key: pool
        operator: In
        values: [foo]
  applyTo:
  - groups: [""]
    kinds: ["Pod"]
    versions: ["v1"]
  location: "spec.runtimeClassName"
  parameters:
    assign:
      value: userv1

Then you label nodes as pool=foo and namespaces as pool=foo

Still need a way to limit which nodeSelectors and tolerations are valid.

from gatekeeper-library.

chaitushiva avatar chaitushiva commented on May 30, 2024

We are trying to achieve something that can remove the nodeSelector itself to have more scope for the pod placement based on the existing nodes(resources)

from gatekeeper-library.

maxsmythe avatar maxsmythe commented on May 30, 2024

Sorry, been a while since I've responded, so this will be in response to a few posts...

Set an allowed set of tolerations / nodeSelectors that can be used. If others are used, they are denied. This prevents a user from using pools of nodes they don't have permissions to. (validating webhook style)

Still need a way to limit which nodeSelectors and tolerations are valid.

Anything where there is a "deny if this happens" behavior should be done via validation/constraints, per:

https://kubernetes.io/docs/reference/access-authn-authz/extensible-admission-controllers/#guaranteeing-the-final-state-of-the-object-is-seen

so a constraint template would need to be written for that.

set a default set of tolerations / nodeSelectors to always add to pods if not already there. This lets you easily target pods automatically to pools of nodes. (Mutating webhook style)

Setting node selectors should be possible. Defaulting can be done via pathTests to run the check "only apply the nodeSelector mutator if nodeSelector is undefined". Or, you can set individual selectors within the node selector itself.

tolerations is harder because it is a non-keyed list. The ModifySet mutator, which is added in open-policy-agent/gatekeeper#1508 should be able to handle the addition/removal of tolerations.

We are trying to achieve something that can remove the nodeSelector itself to have more scope for the pod placement based on the existing nodes(resources)

What happens if you use the Assign mutator to assign an empty object {} to spec.nodeSelector?

from gatekeeper-library.

stale avatar stale commented on May 30, 2024

This issue/PR has been automatically marked as stale because it has not had recent activity. It will be closed in 14 days if no further activity occurs. Thank you for your contributions.

from gatekeeper-library.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.