Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: use latest version of TB and TB node client #1181

Merged
merged 12 commits into from
Mar 14, 2023
Merged
4 changes: 2 additions & 2 deletions infrastructure/helm/tigerbeetle/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,10 @@ statefulset:
clusterId: "0"

image:
repository: ghcr.io/tigerbeetledb/tigerbeetle@sha256
repository: ghcr.io/tigerbeetledb/tigerbeetle
pullPolicy: IfNotPresent
# Overrides the image tag whose default is the chart appVersion.
tag: "621268959801084246679f25416a9451f553fe3697dd4f618f39503322079433"
tag: "latest"
sabineschaller marked this conversation as resolved.
Show resolved Hide resolved

proxyImage:
repository: nginx
Expand Down
2 changes: 1 addition & 1 deletion infrastructure/local/database_docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ services:
POSTGRES_PASSWORD: password
POSTGRES_USER: postgres
tigerbeetle:
image: ghcr.io/tigerbeetledb/tigerbeetle@sha256:621268959801084246679f25416a9451f553fe3697dd4f618f39503322079433
image: ghcr.io/tigerbeetledb/tigerbeetle:latest
restart: unless-stopped
privileged: true
volumes:
Expand Down
2 changes: 1 addition & 1 deletion infrastructure/local/tigerbeetle_docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
version: '3'
services:
tigerbeetle:
image: ghcr.io/tigerbeetledb/tigerbeetle@sha256:621268959801084246679f25416a9451f553fe3697dd4f618f39503322079433
image: ghcr.io/tigerbeetledb/tigerbeetle:latest
restart: unless-stopped
privileged: true
volumes:
Expand Down
2 changes: 1 addition & 1 deletion packages/backend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@
"pino": "^8.11.0",
"pino-pretty": "^9.4.0",
"raw-body": "^2.5.2",
"tigerbeetle-node": "^0.11.12",
"tigerbeetle-node": "^0.12.0",
"token-introspection": "workspace:*",
"uuid": "^9.0.0"
}
Expand Down
4 changes: 2 additions & 2 deletions packages/backend/src/tests/tigerbeetle.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ export async function startTigerbeetleContainer(clusterId?: number): Promise<{
const tigerbeetleFile = `cluster_${tigerbeetleClusterId}_replica_0_test.tigerbeetle`

const tbContFormat = await new GenericContainer(
'ghcr.io/tigerbeetledb/tigerbeetle@sha256:621268959801084246679f25416a9451f553fe3697dd4f618f39503322079433'
'ghcr.io/tigerbeetledb/tigerbeetle:latest'
)
.withExposedPorts(TIGERBEETLE_PORT)
.withBindMounts([
Expand Down Expand Up @@ -49,7 +49,7 @@ export async function startTigerbeetleContainer(clusterId?: number): Promise<{
}

const tbContStart = await new GenericContainer(
'ghcr.io/tigerbeetledb/tigerbeetle@sha256:621268959801084246679f25416a9451f553fe3697dd4f618f39503322079433'
'ghcr.io/tigerbeetledb/tigerbeetle:latest'
)
.withExposedPorts(TIGERBEETLE_PORT)
.withBindMounts([
Expand Down
Loading