-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcreate-catalog-yamls.sh
More file actions
executable file
·212 lines (199 loc) · 5.04 KB
/
Copy pathcreate-catalog-yamls.sh
File metadata and controls
executable file
·212 lines (199 loc) · 5.04 KB
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
#!/bin/bash
set -e
# Create apis
function apis() {
local n=$1
for i in $(seq 1 "$n"); do
cat <<EOF
apiVersion: backstage.io/v1alpha1
kind: API
metadata:
name: api-$i
title: API $i
description: The place to be, for great artists
annotations:
backstage.io/techdocs-ref: url:https://github.com/christoph-jerolimov/rhdh-loadtests/tree/main/techdocs
spec:
type: grpc
lifecycle: experimental
owner: guests
system: examples
definition: |
syntax = "proto3";
service Exampler {
rpc Example (ExampleMessage) returns (ExampleMessage) {};
}
message ExampleMessage {
string example = 1;
};
---
EOF
done
}
# Example from https://backstage.io/docs/features/software-catalog/descriptor-format/
function components() {
local n=$1
for i in $(seq 1 "$n"); do
cat <<EOF
apiVersion: backstage.io/v1alpha1
kind: Component
metadata:
name: component-$i
title: Component $i
description: The place to be, for great artists
labels:
example.com/custom: custom_label_value
annotations:
backstage.io/techdocs-ref: url:https://github.com/christoph-jerolimov/rhdh-loadtests/tree/main/techdocs
example.com/service-discovery: artistweb
tags:
- java
links:
- url: https://admin.example-org.com
title: Admin Dashboard
icon: dashboard
type: admin-dashboard
spec:
type: website
lifecycle: production
owner: group-$i
system: system-$i
subcomponentOf: component-$((i - 1))
---
EOF
done
}
# Create groups
function groups() {
local n=$1
for i in $(seq 1 "$n"); do
cat <<EOF
apiVersion: backstage.io/v1alpha1
kind: Group
metadata:
name: group-$i
title: Group $i
description: The place to be, for great artists
annotations:
backstage.io/techdocs-ref: url:https://github.com/christoph-jerolimov/rhdh-loadtests/tree/main/techdocs
spec:
type: team
children: []
parent: group-$((i - 1))
---
EOF
done
}
# Create systems
function systems() {
local n=$1
for i in $(seq 1 "$n"); do
cat <<EOF
apiVersion: backstage.io/v1alpha1
kind: System
metadata:
name: system-$i
title: System $i
description: The place to be, for great artists
annotations:
backstage.io/techdocs-ref: url:https://github.com/christoph-jerolimov/rhdh-loadtests/tree/main/techdocs
spec:
owner: group-$i
---
EOF
done
}
# Create templates
function templates() {
local n=$1
for i in $(seq 1 "$n"); do
cat <<EOF
apiVersion: scaffolder.backstage.io/v1beta3
kind: Template
metadata:
name: template-$i
title: Template $i
description: An example template
annotations:
backstage.io/techdocs-ref: url:https://github.com/christoph-jerolimov/rhdh-loadtests/tree/main/techdocs
spec:
owner: group-$i
type: service
parameters:
- title: Fill in some steps
required:
- message
properties:
message:
title: Message
type: string
description: A message to be displayed
ui:autofocus: true
steps:
- id: notify
name: Notify
action: notification:send
input:
recipients: entity
entityRefs:
- user:development/guest
title: \${{ parameters.message }}
---
EOF
done
}
for n in 10 100 1000 10000; do
echo -n "Creating catalog with $n apis ..."
apis $n > "catalog/apis-$n.yaml"
# get only the file size only in human readable format
echo -n " done."
echo -n -e "\tFile size: $(wc -l < "catalog/apis-$n.yaml" | numfmt --to=iec) "
# print loc
echo -n -e "\tLines of code: $(wc -l < "catalog/apis-$n.yaml")"
echo
done
echo
for n in 10 100 1000 10000; do
echo -n "Creating catalog with $n components ..."
components $n > "catalog/components-$n.yaml"
# get only the file size only in human readable format
echo -n " done."
echo -n -e "\tFile size: $(wc -l < "catalog/components-$n.yaml" | numfmt --to=iec) "
# print loc
echo -n -e "\tLines of code: $(wc -l < "catalog/components-$n.yaml")"
echo
done
echo
for n in 10 100 1000 10000; do
echo -n "Creating catalog with $n groups ..."
groups $n > "catalog/groups-$n.yaml"
# get only the file size only in human readable format
echo -n " done."
echo -n -e "\tFile size: $(wc -l < "catalog/groups-$n.yaml" | numfmt --to=iec) "
# print loc
echo -n -e "\tLines of code: $(wc -l < "catalog/groups-$n.yaml")"
echo
done
echo
for n in 10 100 1000 10000; do
echo -n "Creating catalog with $n systems ..."
systems $n > "catalog/systems-$n.yaml"
# get only the file size only in human readable format
echo -n " done."
echo -n -e "\tFile size: $(wc -l < "catalog/systems-$n.yaml" | numfmt --to=iec) "
# print loc
echo -n -e "\tLines of code: $(wc -l < "catalog/systems-$n.yaml")"
echo
done
echo
for n in 10 100 1000 10000; do
echo -n "Creating catalog with $n templates ..."
templates $n > "catalog/templates-$n.yaml"
# get only the file size only in human readable format
echo -n " done."
echo -n -e "\tFile size: $(wc -l < "catalog/templates-$n.yaml" | numfmt --to=iec) "
# print loc
echo -n -e "\tLines of code: $(wc -l < "catalog/templates-$n.yaml")"
echo
done
echo