Skip to content

Commit 19c8713

Browse files
committed
chore: update openvsx-server to v0.19.0
Signed-off-by: Valeriy Svydenko <[email protected]>
1 parent 2b30abb commit 19c8713

File tree

3 files changed

+77
-4
lines changed

3 files changed

+77
-4
lines changed

dependencies/che-plugin-registry/build/dockerfiles/Dockerfile

+2
Original file line numberDiff line numberDiff line change
@@ -116,9 +116,11 @@ RUN \
116116
echo "======================"
117117

118118
RUN chmod 777 /var/run/postgresql && \
119+
mkdir -p /tmp/extensions && \
119120
initdb && \
120121
/usr/local/bin/import_vsix.sh && \
121122
chmod -R 777 /tmp/file && \
123+
chmod -R 777 /tmp/extensions && \
122124
rm /var/lib/pgsql/15/data/database/postmaster.pid && \
123125
rm /var/run/postgresql/.s.PGSQL* && \
124126
rm /tmp/.s.PGSQL* && \

dependencies/che-plugin-registry/build/dockerfiles/application.yaml

+72-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
1+
logging:
2+
pattern:
3+
level: '%5p [${spring.application.name:},%X{traceId:-},%X{spanId:-}]'
4+
15
server:
26
port: 9000
7+
jetty:
8+
threads:
9+
max-queue-capacity: 100
310

411
spring:
512
profiles:
@@ -43,12 +50,76 @@ management:
4350
health:
4451
probes:
4552
enabled: true
53+
endpoints:
54+
web:
55+
exposure:
56+
include:
57+
- health
58+
- metrics
59+
- prometheus
60+
org:
61+
jobrunr:
62+
job-scheduler:
63+
enabled: true
64+
background-job-server:
65+
enabled: true
66+
worker-count: 2
67+
dashboard:
68+
enabled: false
69+
database:
70+
type: sql
71+
miscellaneous:
72+
allow-anonymous-data-usage: false
73+
74+
bucket4j:
75+
enabled: true
76+
filters:
77+
- cache-name: buckets
78+
url: '/api/-/(namespace/create|publish)'
79+
http-response-headers:
80+
Access-Control-Allow-Origin: '*'
81+
Access-Control-Expose-Headers: X-Rate-Limit-Retry-After-Seconds, X-Rate-Limit-Remaining
82+
rate-limits:
83+
- cache-key: getParameter("token")
84+
bandwidths:
85+
- capacity: 15
86+
time: 1
87+
unit: seconds
88+
- cache-name: buckets
89+
url: '/vscode/asset/.*/.*/.*/Microsoft.VisualStudio.Services.Icons.Default'
90+
http-response-headers:
91+
Access-Control-Allow-Origin: '*'
92+
Access-Control-Expose-Headers: X-Rate-Limit-Retry-After-Seconds, X-Rate-Limit-Remaining
93+
rate-limits:
94+
- cache-key: getRemoteAddr()
95+
bandwidths:
96+
- capacity: 75
97+
time: 1
98+
unit: seconds
99+
- cache-name: buckets
100+
url: '/vscode/(?!asset/.*/.*/.*/Microsoft.VisualStudio.Services.Icons.Default).*|/api/(?!(.*/.*/review(/delete)?)|(-/(namespace/create|publish))).*'
101+
http-response-headers:
102+
Access-Control-Allow-Origin: '*'
103+
Access-Control-Expose-Headers: X-Rate-Limit-Retry-After-Seconds, X-Rate-Limit-Remaining
104+
rate-limits:
105+
- cache-key: getRemoteAddr()
106+
bandwidths:
107+
- capacity: 15
108+
time: 1
109+
unit: seconds
46110

47111
ovsx:
48112
elasticsearch:
49113
enabled: false
50114
clear-on-start: true
115+
extension-control:
116+
update-on-start: true
117+
integrity:
118+
key-pair: create # create, renew, delete, 'undefined'
51119
databasesearch:
52120
enabled: true
53121
registry:
54-
version: 'v0.15.8'
122+
version: 'v0.19.0'
123+
storage:
124+
local:
125+
directory: /tmp/extensions

dependencies/job-config.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -562,9 +562,9 @@
562562
},
563563
"CHE_OPENVSX_TAG": {
564564
"3.17": "che-openvsx-v0.15.8",
565-
"3.18": "che-openvsx-v0.15.8",
566-
"3.19": "che-openvsx-v0.15.8",
567-
"3.x": "che-openvsx-v0.15.8"
565+
"3.18": "che-openvsx-v0.19.0",
566+
"3.19": "che-openvsx-v0.19.0",
567+
"3.x": "che-openvsx-v0.19.0"
568568
},
569569
"OPENSHIFT_VERSIONS_SUPPORTED": {
570570
"3.17": [

0 commit comments

Comments
 (0)