Created
May 10, 2021 08:23
-
-
Save iammuho/d54bafd52dbca99929ab6dca2a3564a5 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
apiVersion: backstage.io/v1alpha1 | |
kind: Group | |
metadata: | |
name: tribe-a | |
namespace: company | |
description: This is tribe-a tribe of company | |
spec: | |
type: tribe | |
profile: | |
displayName: Tribe A | |
children: | |
- group:tribe-a/squad-a | |
--- | |
apiVersion: backstage.io/v1alpha1 | |
kind: Group | |
metadata: | |
name: squad-a | |
namespace: tribe-a | |
description: This is squad-a tribe of company/tribe-a | |
spec: | |
type: squad | |
profile: | |
displayName: Squad A | |
parent: tribe-a | |
children: | |
- group:squad-a/project-a | |
--- | |
--- | |
apiVersion: backstage.io/v1alpha1 | |
kind: Component | |
metadata: | |
name: project-a | |
namespace: squad-a | |
description: This is project-a tribe of company/tribe-a/squad-a | |
spec: | |
type: squad | |
profile: | |
displayName: Project A | |
parent: squad-a |
benjdlambert
commented
May 10, 2021
•
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment