@leverege/build-tools 2.121.0 → 2.223.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +7 -6
- package/src/build-cnpg-image.mjs +27 -6
- package/src/close-dependabot-prs.mjs +148 -0
- package/src/dashboard/json/pitcrew/pitcrew-ui-service.json +637 -0
- package/src/dashboard/json/tpi/tpi-ply-tolerancing.json +2968 -0
- package/src/github-actions-it.mjs +7 -0
- package/src/helm-charts/cnpg-db-tsdb-basic/cluster.yaml.ovh +23 -0
- package/src/helm-charts/prom-operator/prometheus-stack.yaml.ovh +1 -1
|
@@ -25,9 +25,16 @@ const DEFAULT_COVERAGE_THRESHOLD = 70
|
|
|
25
25
|
const DEFAULT_CACHE_CONFIG = '{"type":"inMemory"}'
|
|
26
26
|
|
|
27
27
|
const DEPENDABOT_CONTENT = `version: 2
|
|
28
|
+
registries:
|
|
29
|
+
npm-leverege:
|
|
30
|
+
type: npm-registry
|
|
31
|
+
url: https://registry.npmjs.org
|
|
32
|
+
token: \${{secrets.LEVEREGE_NPM_TOKEN}}
|
|
28
33
|
updates:
|
|
29
34
|
- package-ecosystem: "npm"
|
|
30
35
|
directory: "/"
|
|
36
|
+
registries:
|
|
37
|
+
- npm-leverege
|
|
31
38
|
schedule:
|
|
32
39
|
interval: "weekly"
|
|
33
40
|
open-pull-requests-limit: 10
|
|
@@ -140,3 +140,26 @@ spec:
|
|
|
140
140
|
log_disconnections: "0"
|
|
141
141
|
monitoring:
|
|
142
142
|
enablePodMonitor: true
|
|
143
|
+
---
|
|
144
|
+
apiVersion: postgresql.cnpg.io/v1
|
|
145
|
+
kind: Pooler
|
|
146
|
+
metadata:
|
|
147
|
+
name: cnpg-db-tsdb-basic-pool-r
|
|
148
|
+
namespace: cnpg-operands
|
|
149
|
+
spec:
|
|
150
|
+
cluster:
|
|
151
|
+
name: cnpg-db-tsdb-basic
|
|
152
|
+
|
|
153
|
+
instances: 2
|
|
154
|
+
type: r
|
|
155
|
+
pgbouncer:
|
|
156
|
+
poolMode: transaction
|
|
157
|
+
parameters:
|
|
158
|
+
# https://www.pgbouncer.org/config.html#generic-settings
|
|
159
|
+
max_client_conn: "500"
|
|
160
|
+
default_pool_size: "5"
|
|
161
|
+
# https://www.pgbouncer.org/config.html#log-settings
|
|
162
|
+
log_connections: "0"
|
|
163
|
+
log_disconnections: "0"
|
|
164
|
+
monitoring:
|
|
165
|
+
enablePodMonitor: true
|
|
@@ -160,7 +160,7 @@ grafana:
|
|
|
160
160
|
GF_AUTH_GOOGLE_SCOPES: "https://www.googleapis.com/auth/userinfo.profile https://www.googleapis.com/auth/userinfo.email"
|
|
161
161
|
GF_AUTH_GOOGLE_AUTH_URL: "https://accounts.google.com/o/oauth2/auth"
|
|
162
162
|
GF_AUTH_GOOGLE_TOKEN_URL: "https://accounts.google.com/o/oauth2/token"
|
|
163
|
-
GF_AUTH_GOOGLE_ALLOWED_DOMAINS: "leverege.com"
|
|
163
|
+
GF_AUTH_GOOGLE_ALLOWED_DOMAINS: "leverege.com,contractor.leverege.com"
|
|
164
164
|
GF_AUTH_GOOGLE_ALLOW_SIGN_UP: "true"
|
|
165
165
|
GF_USERS_AUTO_ASSIGN_ORG_ROLE: "Editor"
|
|
166
166
|
extraObjects:
|