Skip to content

Instantly share code, notes, and snippets.

@joshjohanning
Forked from whatupfoo/1-orgs-archetype.md
Created July 19, 2023 18:34
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save joshjohanning/f3df54ddea5562f717e6f54f15714a23 to your computer and use it in GitHub Desktop.
Save joshjohanning/f3df54ddea5562f717e6f54f15714a23 to your computer and use it in GitHub Desktop.
Orgs and Teams Best Practices

Organization archetypes

The intention of this document is to provide some guidance and suggestions to customers who are wondering how they should structure organizations and teams in their GitHub Enterprise environment. The idea isn't to give hard and fast rules on which approach is better than the other, but to give examples of when one approach might be preferable to another depending on the use case.

1. A single organization with direct organization membership for repository access (not teams)

          ________________
          |     Org      |
          |    ______    |
          |   |      |\  |
          |   | Repo | \ |
          |   |______|  \|
          |              |
          |    ______    |\
          |   |      |   | \
          |   | Repo |---|-- All users
          |   |______|   |/
          |              |
          |    ______   /|
          |   |      | / |
          |   | Repo |/  |
          |   |______|   |
          |              |
          |______________|

Summary: In this case there would be a single organization on the GitHub Enterprise environment to which all users belong. All users added to the organization are granted write access by setting the organization base permission to "Write". In this case teams are used to organize users, not for granting them access to repositories.

Scenarios where this makes sense:

  • Works best in small companies
    • where everyone works on everything (so they all need the same access to all repos)
    • startup model
    • high trust
  • Can work in medium sized companies as well
    • where trust is high

Scenarios where this doesn't make sense:

  • Companies with siloed business divisions
  • Companies with strict security constraints

Benefit:

  • All members and teams can be @mentioned to get their input on all projects
  • Faciliates InnerSource projects

Drawback:

  • Loose organization

Note: This is pretty much how GitHub operates although technically everyone has access to all repositories because we are in @github/employees.

Examples: GitHub

2. A single organization with multiple teams to manage repository access

                ________________
                |     Org      |
                |    ______    |
                |   |      |\  |
    Team A------|---| Repo | \ |
                |   |______|  \|
                |              |
                |    ______    |\
                |   |      |   | \
                |   | Repo |---|-- Team B
                |   |______|   |
                |              |
                |    ______    |
                |   |      |   |
    Team C------|---| Repo |   |
                |   |______|   |
                |              |
                |______________|

Summary: Similar to the scenario above, except that teams are used to control repository access with more granularity.

Scenarios where this makes sense:

  • Works in small companies with strict development roles, or lower trust
  • Medium sized companies

Scenarios where this doesn't make sense:

  • Small startups: administrating teams may take more time that it is worth in a 10 or 20 seat company where everyone works on, or at least is aware of, everything
  • Large companies where no single owner should have access to all repositories

Benefit:

  • All teams are able to @mention each other since they are in the same organization
  • Faciliates InnerSource projects and collaboration across business units

Drawback:

  • Can become unwieldy at a company with many teams at a large scale

3. Multiple organizations divided per business unit with direct organization membership

                  ________________         ________________    
                  |     Org      |         |     Org      |
                  |    ______    |         |    ______    |
                  |   |      |   |         |   |      |   |
                  |   | Repo |   |         |   | Repo |   |
                  |   |______|   |         |   |______|   |
                  |              |         |              |
  Business        |    ______    |         |    ______    |       Business
   Unit A  -----  |   |      |   |         |   |      |   | ------ Unit B
                  |   | Repo |   |         |   | Repo |   |
                  |   |______|   |         |   |______|   |
                  |              |         |              |
                  |    ______    |         |    ______    |
                  |   |      |   |         |   |      |   |
                  |   | Repo |   |         |   | Repo |   |
                  |   |______|   |         |   |______|   |
                  |              |         |              |
                  |______________|         |______________|

Summary: In this scenario organizations map to business units, products, or some other silo and are largely separate. Similar to the first scenario, all users have write access to organizational repositories granted by the organization base permission. Some users may be members of multiple organizations. Over time organizations may merge together and access via teams may be required.

Scenarios where this makes sense:

  • Works well when there are many repositories per business unit
  • Works very well if there are strict access policies and for larger companies
  • Work in companies that are large enough to have groups that don't need to work together
  • Works well in companies with requirements for segregation of duties and access restrictions
  • Large companies where no single owner should have access to all repositories

Scenarios where this may not make sense:

  • If contribution across business units is important
  • If there is a need to @mention teams from different organizations

Benefit:

  • Manage access without team administration

Drawback:

  • May hinder collaboration or happenstance of developers discovering projects they are interested in
  • Reduces searchability of resources within the company

4. Multiple organizations with multiple teams to manage repository access

            ________________            ________________    
            |     Org      |            |     Org      |
            |    ______    |            |    ______    |
            |   |      |\  |            |   |      |   |
Team A------|   | Repo | \ |            |   | Repo |   |------Team D
            |   |______|  \|            |   |______|   |
            |              |            |              |
            |    ______    |\           |    ______    |
            |   |      |   | \          |   |      |   |
            |   | Repo |---|--Team B    |   | Repo |---|--Team E
            |   |______|   | /          |   |______|   | /
            |              |/           |              |/
            |    ______    |            |    ______    |
            |   |      |  /|            |   |      |  /|
Team C------|   | Repo | / |            |   | Repo | / |
            |   |______|/  |            |   |______|/  |
            |              |            |              |
            |______________|            |______________|

Summary: This is similar to the second scenario but at a larger scale, in large companies that have multiple, large business units that each need a granular level of control over repository access.

Scenarios where this makes sense:

  • Works well there are many repositories per business unit
  • Works very well if there are strict access policies and for larger companies
  • Work in companies that are large enough to have groups that don't need to work together
  • Works well in companies with requirements for segregation of duties and access restrictions
  • Large companies where no single owner should have access to all repositories

Scenarios where this may not make sense:

  • If contribution across business units is important
  • If there is a need to @mention teams from a different organization

Benefit:

  • High level of separation and access control required in large companies

Drawback:

  • May hinder collaboration or happenstance of developers discovering projects they are interested in
  • Reduces searchability of resources within the company

Organizations and Teams - Best Practices

Scenario

One way to handle organizational segregation without losing collaboration would be to utilize different strategies for teams as described in this GitHub blog posting. For example, consider the following:

  • We have a Product Family called Mobile
  • Within the Mobile product family, we have multiple Product Lines
  • Within each of the product lines, we have dozens of repositories
  • We have teams that will work on multiple products across multiple product families
    • We want groupings of repositories according to their Product Lines, and we want groupings of the Product Lines in their respective Product Families
    • We want teams to see only the relevant repositories and not have to sift through thousands
    • We don't want to have to search for repositories to find them
    • We don't want to rely on the enforcement of Tags, as bad practices can easily break this organizational benefit

Using Orgs

If we take the approach that we will utilize Orgs within GitHub to segregate our Product Families then we can certainly achieve the goal of limiting the overwhelming sea of repositories our developers will see when they login. This, however, presents us with a few challenges that will ultimately make the management of GitHub overwhelmingly difficult, and lead to a significant disconnect in software development and our SDLC workflow.

Challenges

  • Settings, webhooks, permissions, teams and more, all have to be duplicated across each organization and maintained. This will present a challenge if anything is enforced across the company.
  • Integrations with CI/CD platforms becomes manual and tedious to keep things integrated. One significant example is that a Deploy Key cannot be re-used, even in different organizations, which means that a Jenkins server might need dozens of keys, manually maintained, to integrate and automate workflows.
  • Collaboration across teams, if they are in different organizations, becomes very limited and cumbersome, which promotes working in silos and not working together.
  • Duplication of data and efforts becomes very prevalent, as users and teams will not have visibility into what other teams are developing. Even if they have access, they will not have visibility or searchability across multiple organizations at once. This is costly for companies in time, effort and quality.

Benefits of having less organizations

We recommend always to start with the minimum number of organizations possible, and increase it if needed. Some reasons in favor of minimizing the number of organizations;

  • Being able to leverage innersource using the search functionality in a single org (same as we do internally in GitHub)
  • With teams (and nested teams) you can manage all the permissions with less administrative overhead
  • Teams allow you to @ mention entire groups which helps to get notifications sorted out and notify the right people
  • Permission strategy in a single org allows the team to configure policies that will be replicated for all the repositories and make that easier to manage
  • Multiple organizations with multiple teams to manage can be useful for parts of the company that are productized or maintain an open source nature
  • Automations (Github apps and OAuth apps) can be set on the organization level and help to keep secure policies across the org (or add default actions such us the all-employees read access)
  • You can have an "all employees" team to promote openness
  • You can create teams with expertises (data-science, javascript...). Use cc/ @mention to mention a group of people with experience on the matter
  • Add topics to find the repositories within the organization
  • Deploy Keys cannot be re-used between orgs. Use the deploy keys for deployments in your organization

Consider multiple organizations if;

  • There is a full separation between two parts of the company, where one has one SSO and another has a different one. It's not allowed to have multiple configurations on SAML at the same time for 1 organization.
  • Part of the company is 1+ products, with public-facing, open source contributions and multiple projects related
  • If you have a full ecosystem around an internal product that makes sense to be completely separated from the rest (Github inside microsoft as an example)
  • If a unified policy for the organization doesn't work and you want a completely different policy for another organization (with the risk of maintaining it as well). You need to be really careful with this reasoning as can be abused to create orgs.

Security recommendations

  • Enable 2-factor authentication
  • Enable SAML SSO to the organization
  • Require SAML authentication to access the org content
  • Do not allow people to change the visibility of the repos
  • Set policies on the enterprise level so it applies to all possible organizations
  • Add automations around security for the repositories (such as branch protection and permission mapping)

Additional resources

Using Teams

The concept of Teams in GitHub allows for greater flexibility for collaboration and integration, as well as separation of repositories and permissions. With nested teams we can create a hierarchy for our applications, create communities of practice, invoke logical groupings of functional areas, as well as manage our teams of people effectively. If we take a step back and look at Teams as being more than simply HR groupings of people we can see many ways to effectively organize our software.

Uses for Teams

  • Teams can be used to logically separate Product Families
  • Teams can be used to logically separate Products
  • Teams can be used to logically correlate areas of expertise
  • Teams can be used to logically correlate Product Features
  • Teams can be used to logically group areas of responsibility
  • Teams can be nested, which provides logical groupings for these teams' areas of ownership

Product and People teams

team-org

We have a Product Family Team underneath that Org. Within that Product Family Team, we can have multiple Product Teams. We want to make sure that people working on Product A are able to see only the repositories belonging to it.

If we have all 3 Products (Product-A, Product-B and Product-C) created as Teams, and have each of these Teams as a children of the Product Family Team, then we can see all repos from the Product Family or just the repos belonging to the Product in the teams view (https://github.com/orgs/:org/teams/:teamName/repositories). We can then add these teams to the repositories for them to get access.

Once we have logically organized our Product Family and Product Teams, we can organize our developers with People Teams, and add those People Teams into the repositories as necessary. In the image, some people from devGroupA also belong to org/SQL and org/security and each of those groups can be added to repositories as needed to provide the right access.

Another example: In the image below, we see that we have Client Apps as the Product Family and Atom as the Product. The only repositories visible from this team's view are those that belong to the Atom product team.

github-teams-8

How to configure the structure

  •  Plan the Product families and Product teams that you want to have
  •  Plan the Developer teams that you want to have
  •  You can go to https://github.com/orgs/:org/teams and:
    • Create the Product families
    • Create the Product teams and assign their parent as the corresponding Product family
    • Add the Product teams access to the repositories they need to have access to
    • Create an Everyone team. This team is useful for wide company announcements without hosting a webinar to explain something. Try not to abuse this @all pings.
    • Create the People teams and assign Everyone team as the parent
    • Add the People teams to the repositories as needed

⚠️ To add teams as children of other teams they cannot be secret teams.

Team interests

Additionally you can create teams for interests/technology in order to help with PR review processes or issue discussions (javascript, go, data science...). People can join these teams through their own interest to help on certain projects if their support is needed.

Creating a process within the company to create new team interests teams is recommended.

Team sync enablement

If you use a SAML provider that supports team synchronization, you may want to enable it for the People teams and not for the Product teams. Team sync can only be enabled on leafs (groups with no children teams), so people teams are the best option.

You can make the People teams structure match your SAML provider structure if needed and then create the parents as logical structures.

Additional resources

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment