Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion helm/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ caPath: '/usr/local/share/ca-certificates'
caKey: 'ca.crt'

image:
repository: retiler
repository: retiler-new
# If commented, appVersion will be taken. See: _helpers.tpl
# tag: 'latest'
pullPolicy: IfNotPresent
Expand Down
7,174 changes: 4,335 additions & 2,839 deletions package-lock.json

Large diffs are not rendered by default.

7 changes: 4 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,13 +39,14 @@
"@map-colonies/js-logger": "^5.0.0",
"@map-colonies/read-pkg": "^2.0.0",
"@map-colonies/schemas": "^1.21.0",
"@map-colonies/telemetry": "^10.0.1",
"@map-colonies/tracing": "^1.0.0",
"@map-colonies/prometheus": "^1.0.0",
"@map-colonies/tracing-utils": "^1.0.0",
"@map-colonies/tile-calc": "^0.1.5",
"@opentelemetry/api": "^1.9.1",
"@opentelemetry/resources": "^1.30.1",
"@opentelemetry/sdk-node": "^0.57.2",
"@opentelemetry/sdk-metrics": "^1.30.1",
"ajv": "^8.17.1",
"@opentelemetry/sdk-node": "^0.57.2",
"axios": "^1.10.0",
"compression": "^1.8.1",
"express": "^4.21.2",
Expand Down
4 changes: 2 additions & 2 deletions src/common/tracing.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import type { TracingOptions } from '@map-colonies/telemetry';
import { Tracing } from '@map-colonies/telemetry';
import type { TracingOptions } from '@map-colonies/tracing';
import { Tracing } from '@map-colonies/tracing';
import { IGNORED_INCOMING_TRACE_ROUTES, IGNORED_OUTGOING_TRACE_ROUTES } from './constants';

let tracing: Tracing | undefined;
Expand Down
25 changes: 0 additions & 25 deletions src/common/validation.ts

This file was deleted.

2 changes: 1 addition & 1 deletion src/containerConfig.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import type { DependencyContainer } from 'tsyringe';
import { Lifecycle, instancePerContainerCachingFactory } from 'tsyringe';
import type { Logger } from '@map-colonies/js-logger';
import { jsLogger } from '@map-colonies/js-logger';
import { getOtelMixin } from '@map-colonies/telemetry';
import { getOtelMixin } from '@map-colonies/tracing-utils';
import type { HealthCheck } from '@godaddy/terminus';
import axios from 'axios';
import { Registry } from 'prom-client';
Expand Down
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import type { Registry } from 'prom-client';
import type { Logger } from '@map-colonies/js-logger';
import type { DependencyContainer } from 'tsyringe';
import type { CleanupRegistry } from '@map-colonies/cleanup-registry';
import { collectMetricsExpressMiddleware } from '@map-colonies/telemetry/prom-metrics';
import { collectMetricsExpressMiddleware } from '@map-colonies/prometheus';
import type { HealthCheck } from '@godaddy/terminus';
import { createTerminus } from '@godaddy/terminus';
import { CONSUME_AND_PROCESS_FACTORY, ExitCodes, HEALTHCHECK, METRICS_REGISTRY, ON_SIGNAL, SERVICES } from './common/constants';
Expand Down
32 changes: 0 additions & 32 deletions src/retiler/tilesStorageProvider/validation.ts

This file was deleted.

Loading