-
Notifications
You must be signed in to change notification settings - Fork 96
Expand file tree
/
Copy pathapp-config.yaml
More file actions
226 lines (208 loc) · 7.42 KB
/
app-config.yaml
File metadata and controls
226 lines (208 loc) · 7.42 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
213
214
215
216
217
218
219
220
221
222
223
224
225
226
app:
title: Scaffolded Backstage App
baseUrl: http://localhost:3000
packages: all
extensions:
- api:app/app-language:
config:
availableLanguages: ['en', 'de', 'fr', 'it', 'es', 'ja']
defaultLanguage: 'en'
- api:home/visits: true
- app-root-element:home/visit-listener: true
- page:home:
config:
path: /
# Scorecard tab: entity shows tab if it matches any filter below.
- entity-content:catalog/entity-content-scorecard:
config:
allowedFilters:
- kind: component # e.g. Component with spec.type: website
type: website
- kind: api # e.g. any API entity
- type: service # e.g. Component or System with spec.type: service
- home-page-layout:home/dynamic-homepage-layout:
config:
customizable: true
widgetLayout:
AggregatedCardWithDeprecatedMetricId:
priority: 410
breakpoints:
xl: { w: 4, h: 6 }
lg: { w: 4, h: 6 }
md: { w: 4, h: 6 }
sm: { w: 4, h: 6 }
xs: { w: 4, h: 6 }
xxs: { w: 4, h: 6 }
AggregatedCardWithDefaultAggregation:
priority: 420
breakpoints:
xl: { w: 4, h: 6, x: 4 }
lg: { w: 4, h: 6, x: 4 }
md: { w: 4, h: 6, x: 4 }
sm: { w: 4, h: 6, x: 4 }
xs: { w: 4, h: 6, x: 4 }
xxs: { w: 4, h: 6, x: 4 }
AggregatedCardWithJiraOpenIssues:
priority: 430
breakpoints:
xl: { w: 4, h: 6 }
lg: { w: 4, h: 6 }
md: { w: 4, h: 6 }
sm: { w: 4, h: 6 }
xs: { w: 4, h: 6 }
xxs: { w: 4, h: 6 }
AggregatedCardWithGithubOpenPrs:
priority: 440
breakpoints:
xl: { w: 4, h: 6, x: 4 }
lg: { w: 4, h: 6, x: 4 }
md: { w: 4, h: 6, x: 4 }
sm: { w: 4, h: 6, x: 4 }
xs: { w: 4, h: 6, x: 4 }
xxs: { w: 4, h: 6, x: 4 }
organization:
name: My Company
backend:
# Used for enabling authentication, secret is shared by all backend plugins
# See https://backstage.io/docs/auth/service-to-service-auth for
# information on the format
# auth:
# keys:
# - secret: ${BACKEND_SECRET}
baseUrl: http://localhost:7007
listen:
port: 7007
# Uncomment the following host directive to bind to specific interfaces
# host: 127.0.0.1
csp:
connect-src: ["'self'", 'http:', 'https:']
# Content-Security-Policy directives follow the Helmet format: https://helmetjs.github.io/#reference
# Default Helmet Content-Security-Policy values can be removed by setting the key to false
cors:
origin: http://localhost:3000
methods: [GET, HEAD, PATCH, POST, PUT, DELETE]
credentials: true
# This is for local development only, it is not recommended to use this in production
# The production database configuration is stored in app-config.production.yaml
database:
client: better-sqlite3
connection: ':memory:'
# workingDirectory: /tmp # Use this to configure a working directory for the scaffolder, defaults to the OS temp-dir
integrations:
github:
- host: github.com
# This is a Personal Access Token or PAT from GitHub. You can find out how to generate this token, and more information
# about setting up the GitHub integration here: https://backstage.io/docs/integrations/github/locations#configuration
token: ${GITHUB_TOKEN}
### Example for how to add your GitHub Enterprise instance using the API:
# - host: ghe.example.net
# apiBaseUrl: https://ghe.example.net/api/v3
# token: ${GHE_TOKEN}
proxy:
'/jira/api':
target: ${JIRA_URL}
headers:
Authorization: ${JIRA_TOKEN}
Accept: 'application/json'
Content-Type: 'application/json'
X-Atlassian-Token: 'nocheck'
User-Agent: 'MY-UA-STRING'
# Jira plugin and scorecard configuration
jira:
# Proxy Jira configuration
# Supported products: `cloud` or `datacenter`
# product: cloud
# proxyPath: /jira/api
# Direct Jira configuration
# Supported products: `cloud` or `datacenter`
product: cloud
baseUrl: ${JIRA_URL}
token: ${JIRA_TOKEN}
# Reference documentation http://backstage.io/docs/features/techdocs/configuration
# Note: After experimenting with basic setup, use CI/CD to generate docs
# and an external cloud storage when deploying TechDocs for production use-case.
# https://backstage.io/docs/features/techdocs/how-to-guides#how-to-migrate-from-techdocs-basic-to-recommended-deployment-approach
techdocs:
builder: 'local' # Alternatives - 'external'
generator:
runIn: 'docker' # Alternatives - 'local'
publisher:
type: 'local' # Alternatives - 'googleGcs' or 'awsS3'. Read documentation for using alternatives.
auth:
# see https://backstage.io/docs/auth/ to learn about auth providers
providers:
# See https://backstage.io/docs/auth/guest/provider
guest: {}
scaffolder:
# see https://backstage.io/docs/features/software-templates/configuration for software template options
catalog:
import:
entityFilename: catalog-info.yaml
pullRequestBranchName: backstage-integration
rules:
- allow: [Component, System, Group, Resource, Location, Template, API]
locations:
- type: file
target: ../../examples/all-scorecards-location.yaml
rules:
- allow: [Component]
- type: file
target: ../../examples/orgs/guest.yaml
rules:
- allow: [User, Group]
- type: url
target: https://github.com/redhat-developer/rhdh/blob/main/catalog-entities/components/showcase.yaml
kubernetes:
# see https://backstage.io/docs/features/kubernetes/configuration for kubernetes configuration options
# see https://backstage.io/docs/permissions/getting-started for more on the permission framework
permission:
# setting this to `false` will disable permissions
enabled: true
rbac:
pluginsWithPermission:
- catalog
- permission
- scaffolder
- scorecard
admin:
users:
- name: user:development/guest
# Scorecard development configuration
scorecard:
aggregationKPIs:
openPrsKpi:
title: GitHub Open PRs KPI
type: statusGrouped
description: This KPI is provide information about GitHub open PRs grouped by status.
metricId: github.open_prs
openIssuesKpi:
title: Jira Open Issues KPI
type: statusGrouped
description: This KPI is provide information about Jira open issues grouped by status.
metricId: jira.open_issues
licenseFileExistsKpi:
title: License File Exists KPI
type: statusGrouped
description: This KPI is provide information about whether the license file exists in the repository.
metricId: github.files_check.license
plugins:
jira:
open_issues:
schedule:
frequency: { minutes: 5 }
timeout: { minutes: 10 }
initialDelay: { seconds: 5 }
github:
open_prs:
schedule:
frequency: { minutes: 5 }
timeout: { minutes: 10 }
initialDelay: { seconds: 5 }
files_check:
files:
- license: 'LICENSE'
- codeowners: 'CODEOWNERS'
schedule:
frequency: { minutes: 5 }
timeout: { minutes: 10 }
initialDelay: { seconds: 5 }