-
Notifications
You must be signed in to change notification settings - Fork 1
/
org.yaml
39 lines (39 loc) · 1.09 KB
/
org.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
apiVersion: backstage.io/v1alpha1
kind: Group
metadata:
name: rhdh
description: Red Hat Developer Hub
spec:
type: team
profile:
# Intentional no displayName for testing
email: [email protected]
picture: https://avatars.dicebear.com/api/identicon/[email protected]?background=%23fff&margin=25
children: []
{% for index in range(0, gitlab_user_count | int, 1) %}
---
apiVersion: backstage.io/v1alpha1
kind: Group
metadata:
name: user{{ index + 1 }}
description: user{{ index + 1 }} group
spec:
type: team
profile:
# Intentional no displayName for testing
email: user{{ index + 1 }}@opentlc.com
picture: https://avatars.dicebear.com/api/identicon/[email protected]?background=%23fff&margin=25
parent: rhdh
children: []
---
apiVersion: backstage.io/v1alpha1
kind: User
metadata:
name: user{{ index + 1 }}
spec:
profile:
# Intentional no displayName for testing
email: user{{ index + 1 }}@opentlc.com
picture: https://avatars.dicebear.com/api/avataaars/[email protected]?background=%23fff
memberOf: [user{{ index + 1 }}]
{% endfor %}