{"id":13563141,"url":"https://github.com/sighupio/permission-manager","last_synced_at":"2025-04-07T23:13:30.026Z","repository":{"id":37999114,"uuid":"216046390","full_name":"sighupio/permission-manager","owner":"sighupio","description":"Permission Manager is a project that brings sanity to Kubernetes RBAC and Users management, Web UI FTW","archived":false,"fork":false,"pushed_at":"2024-05-12T17:36:11.000Z","size":76245,"stargazers_count":1304,"open_issues_count":33,"forks_count":172,"subscribers_count":28,"default_branch":"main","last_synced_at":"2024-10-29T18:05:28.370Z","etag":null,"topics":["admin","dashboard","hacktoberfest","k8s","kubeconfig","kubernetes","namespace","oss","rbac","sighup","user-management"],"latest_commit_sha":null,"homepage":"https://sighup.io/","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"bsd-3-clause","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/sighupio.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2019-10-18T14:48:29.000Z","updated_at":"2024-10-29T15:13:17.000Z","dependencies_parsed_at":"2024-01-13T12:53:11.620Z","dependency_job_id":"b8f1b780-1c9d-4c61-bdef-9a1e4fb65935","html_url":"https://github.com/sighupio/permission-manager","commit_stats":{"total_commits":466,"total_committers":28,"mean_commits":"16.642857142857142","dds":0.7446351931330473,"last_synced_commit":"fb6f65e161ac792ab290ffe680d6420caf834a43"},"previous_names":[],"tags_count":11,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sighupio%2Fpermission-manager","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sighupio%2Fpermission-manager/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sighupio%2Fpermission-manager/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sighupio%2Fpermission-manager/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/sighupio","download_url":"https://codeload.github.com/sighupio/permission-manager/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247744335,"owners_count":20988783,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["admin","dashboard","hacktoberfest","k8s","kubeconfig","kubernetes","namespace","oss","rbac","sighup","user-management"],"created_at":"2024-08-01T13:01:15.578Z","updated_at":"2025-04-07T23:13:30.000Z","avatar_url":"https://github.com/sighupio.png","language":"TypeScript","funding_links":[],"categories":["Security","TypeScript","Tools and Libraries"],"sub_categories":["Security and Compliance"],"readme":"# Permission manager\n\n![flow](./docs/assets/flow.gif)\n\nWelcome to the **Permission Manager**! :tada: :tada:\n\n[![Build Status](https://ci.sighup.io/api/badges/sighupio/permission-manager/status.svg)](https://ci.sighup.io/sighupio/permission-manager)\n![Release](https://img.shields.io/github/v/release/sighupio/permission-manager?label=PM)\n![Slack](https://img.shields.io/badge/slack-@kubernetes/fury-yellow.svg?logo=slack)\n![License](https://img.shields.io/github/license/sighupio/permission-manager)\n\nPermission Manager is an application developed by [SIGHUP](https://sighup.io) that enables a super-easy and user-friendly **RBAC management for Kubernetes**. If you are looking for a simple and intuitive way of managing your users within a Kubernetes cluster, this is the right place.\n\nWith Permission Manager, you can create users, assign namespaces/permissions, and distribute Kubeconfig YAML files via a nice\u0026easy web UI.\n\n## Screenshots\n\n### First Page\n\n![First Page](docs/assets/first-page.png)\n\n### Creating a user\n\n![Creating a user](docs/assets/create-user.png)\n\n### Creating a user - Summary\n\n![Create user Sumary](docs/assets/create-user-summary.png)\n\n### User's Kubeconfig\n\n![User's Kubeconfig](docs/assets/users-kubeconfig.png)\n\n### Deleting a user\n\n![Deleting a user](docs/assets/delete-user.png)\n\n## Installation\n\nTo deploy and run the Permission Manager on your cluster, follow the [installation guide](docs/installation.md)\n\n## Development Setup\n\nWe love contributions from the community :heart:.\nLearn [how-to-contribute](docs/how-to-contribute.md)\n\n## FAQ\n\n### How it works\n\nThe application allows us to define and select permission standard templates (those defining who can do what, within a namespace or globally) and associate them with all the users you might want to create.\n\nThe template system is an abstraction over Cluster-Roles, RoleBinding, and ClusterRolesBindigs.\n\n### What is a template\n\nA template is a ClusterRole with a prefix\n\n`template-namespaced-resources___`\n\nfor example\n`template-namespaced-resources___developer`\n\n#### Why a template is not a CRD\n\nWhen we started the development of this project, a template was one-to-one to a `clusterrole`, the usage of a CRD looked overkill. This will obviously change in future to avoid polluting `clusterroles` and will allow us to have a more precise encapsulation of what is owned by the permission manager.\n\n### How to add a new template\n\nCreate a clusterrole starting with `template-namespaced-resources___` and apply it.\n\n#### Default templates\n\n`developer` and `operation` default templates are located at deployments/kubernetes/seeds/seed.yml\n\n### What is a user\n\nA user is a custom resource of kind `permissionmanagerusers.permissionmanager.user`\n\n## Commercial \u0026 Enterprise Support\n\nAre you using Permission Manager in your clusters and looking for commercial support? Let us know and [get in touch](mailto:sales@sighup.io)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsighupio%2Fpermission-manager","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsighupio%2Fpermission-manager","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsighupio%2Fpermission-manager/lists"}