File tree Expand file tree Collapse file tree 3 files changed +32
-4
lines changed Expand file tree Collapse file tree 3 files changed +32
-4
lines changed Original file line number Diff line number Diff line change @@ -51,6 +51,12 @@ backend:
51
51
credentials : true
52
52
csp :
53
53
upgrade-insecure-requests : false
54
+ # CSP for Quay Images
55
+ img-src :
56
+ - " 'self'"
57
+ - " data:"
58
+ - " https://quay.io"
59
+ - " https://*.quay.io"
54
60
55
61
# comment out the following 'database' section to use the PostgreSQL database
56
62
database :
@@ -90,3 +96,23 @@ techdocs:
90
96
type : local
91
97
local :
92
98
publishDirectory : /tmp/techdocs
99
+
100
+
101
+ proxy :
102
+ endpoints :
103
+ ' /quay/api ' :
104
+ target : ' https://quay.io'
105
+ credentials : require
106
+ headers :
107
+ X-Requested-With : ' XMLHttpRequest'
108
+ # Uncomment and use the Authorization header below to access a private Quay
109
+ # Repository using a token. Refer to the "Applications and Tokens" section
110
+ # at https://docs.quay.io/api/ to find the instructions to generate a token
111
+ # Authorization: 'Bearer <YOUR TOKEN>'
112
+ changeOrigin : true
113
+ # Change to "false" in case of using self hosted quay instance with a self-signed certificate
114
+ secure : true
115
+
116
+ quay :
117
+ # The UI url for Quay, used to generate the link to Quay
118
+ uiUrl : ' https://quay.io'
Original file line number Diff line number Diff line change 21
21
# owner: CNCF
22
22
# lifecycle: experimental
23
23
24
- # ---
25
-
26
24
# ##############################
27
25
# SYSTEMS
28
26
# ##############################
76
74
type : product
77
75
lifecycle : production
78
76
profile :
79
- displayName : RHDH Local
77
+ displayName : RHDH Local
Original file line number Diff line number Diff line change @@ -3,7 +3,11 @@ includes:
3
3
- dynamic-plugins.default.yaml
4
4
5
5
plugins :
6
- # Tech Radar frontend plugin
6
+ # Tech Radar frontend plugin
7
7
- package : ./dynamic-plugins/dist/backstage-community-plugin-tech-radar
8
8
disabled : false
9
+
10
+ # Quay plugin
11
+ - package : ./dynamic-plugins/dist/backstage-community-plugin-quay
12
+ disabled : false
9
13
You can’t perform that action at this time.
0 commit comments