dynamic-rbac-operator

command module
v0.0.0-...-54334e8 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Sep 27, 2020 License: Apache-2.0 Imports: 10 Imported by: 0

README


Dynamic RBAC Operator

Flexible definitions of Kubernetes RBAC rules

Table of Contents

About The Project

Writing Kubernetes RBAC definitions by hand can be a pain. This operator allows you to define "Dynamic" RBAC rules that change based on the state of your cluster, so you can spend your time writing the RBAC patterns that you'd like to deploy, rather than traditional, fully enumerated RBAC rules.

Built With

Getting Started

Definitely still have to write this section...

Installation

This will probably just be a Helm chart.

Usage

Once the operator is installed, you can begin using DynamicRole and DynamicClusterRole resources within your cluster.

For example, the DynamicClusterRole:

apiVersion: rbac.jacobsee.com/v1alpha1
kind: DynamicClusterRole
metadata:
  name: admin-without-users
spec:
  inherit:
    name: cluster-admin
    kind: ClusterRole
  deny:
  - apiGroups:
    - 'user.openshift.io'
    resources:
    - 'users'
    verbs:
    - '*'

will cause the operator to use the cluster's resource discovery API to enumerate all of the individual permissions of the cluster-admin user, and then remove access to user.openshift.io/users resources.

You can then create a RoleBinding or ClusterRoleBinding to admin-without-users (as a ClusterRole) as normal, and permissions will work as expected!

Roadmap

See the open issues for a list of proposed features (and known issues).

Contributing

Contributions are what make the open source community such an amazing place to be learn, inspire, and create. Any contributions you make are greatly appreciated.

  1. Fork the Project
  2. Create your Feature Branch (git checkout -b feature/AmazingFeature)
  3. Commit your Changes (git commit -m 'Add some AmazingFeature')
  4. Push to the Branch (git push origin feature/AmazingFeature)
  5. Open a Pull Request

License

Distributed under the Apache License 2.0. See LICENSE for more information.

Contact

Your Name - @jacobsee

Project Link: https://github.com/jacobsee/dynamic-rbac-operator

Documentation

The Go Gopher

There is no documentation for this package.

Directories

Path Synopsis
api
v1alpha1
Package v1alpha1 contains API Schema definitions for the rbac v1alpha1 API group +kubebuilder:object:generate=true +groupName=rbac.jacobsee.com
Package v1alpha1 contains API Schema definitions for the rbac v1alpha1 API group +kubebuilder:object:generate=true +groupName=rbac.jacobsee.com

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL