Skip to content

Commit f1cc079

Browse files
committed
chore(docker): upgrade images to new config
1 parent a26c16b commit f1cc079

File tree

8 files changed

+34
-38
lines changed

8 files changed

+34
-38
lines changed

docker-compose/config/common.libsonnet

Lines changed: 8 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -2,34 +2,32 @@
22
blobstore: {
33
contentAddressableStorage: {
44
sharding: {
5-
hashInitialization: 11946695773637837490,
6-
shards: [
7-
{
5+
shards: {
6+
"0": {
87
backend: { grpc: { address: 'storage-0:8981' } },
98
weight: 1,
109
},
11-
{
10+
"1": {
1211
backend: { grpc: { address: 'storage-1:8981' } },
1312
weight: 1,
1413
},
15-
],
14+
},
1615
},
1716
},
1817
actionCache: {
1918
completenessChecking: {
2019
backend: {
2120
sharding: {
22-
hashInitialization: 14897363947481274433,
23-
shards: [
24-
{
21+
shards: {
22+
"0": {
2523
backend: { grpc: { address: 'storage-0:8981' } },
2624
weight: 1,
2725
},
28-
{
26+
"1": {
2927
backend: { grpc: { address: 'storage-1:8981' } },
3028
weight: 1,
3129
},
32-
],
30+
},
3331
},
3432
},
3533
maximumTotalTreeSizeBytes: 64 * 1024 * 1024,

docker-compose/docker-compose.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
version: '3'
22
services:
33
frontend:
4-
image: ghcr.io/buildbarn/bb-storage:20250213T085125Z-2600f22
4+
image: ghcr.io/buildbarn/bb-storage:20250408t112116z-1d733a3
55
command:
66
- /config/frontend.jsonnet
77
expose:
@@ -12,7 +12,7 @@ services:
1212
- ./config:/config
1313

1414
storage-0:
15-
image: ghcr.io/buildbarn/bb-storage:20250213T085125Z-2600f22
15+
image: ghcr.io/buildbarn/bb-storage:20250408t112116z-1d733a3
1616
command:
1717
- /config/storage.jsonnet
1818
expose:
@@ -24,7 +24,7 @@ services:
2424
- ./volumes/storage-cas-0:/storage-cas
2525

2626
storage-1:
27-
image: ghcr.io/buildbarn/bb-storage:20250213T085125Z-2600f22
27+
image: ghcr.io/buildbarn/bb-storage:20250408t112116z-1d733a3
2828
command:
2929
- /config/storage.jsonnet
3030
expose:
@@ -36,7 +36,7 @@ services:
3636
- ./volumes/storage-cas-1:/storage-cas
3737

3838
scheduler:
39-
image: ghcr.io/buildbarn/bb-scheduler:20250201T092335Z-31d23d1
39+
image: ghcr.io/buildbarn/bb-scheduler:20250411t124310z-1c726bd
4040
command:
4141
- /config/scheduler.jsonnet
4242
expose:
@@ -52,7 +52,7 @@ services:
5252
- ./config:/config
5353

5454
browser:
55-
image: ghcr.io/buildbarn/bb-browser:20250212T055122Z-9c1714b
55+
image: ghcr.io/buildbarn/bb-browser:20250414t180739z-9b44996
5656
command:
5757
- /config/browser.jsonnet
5858
expose:
@@ -63,13 +63,13 @@ services:
6363
- ./config:/config
6464

6565
runner-installer:
66-
image: ghcr.io/buildbarn/bb-runner-installer:20250201T092335Z-31d23d1
66+
image: ghcr.io/buildbarn/bb-runner-installer:20250411t124310z-1c726bd
6767
volumes:
6868
- ./volumes/bb:/bb
6969

7070
# The FUSE worker is the most efficient configuration.
7171
worker-fuse-ubuntu22-04:
72-
image: ghcr.io/buildbarn/bb-worker:20250201T092335Z-31d23d1
72+
image: ghcr.io/buildbarn/bb-worker:20250411t124310z-1c726bd
7373
command:
7474
- /config/worker-fuse-ubuntu22-04.jsonnet
7575
# Need to be privileged for the FUSE mounting to work.
@@ -105,7 +105,7 @@ services:
105105
# For situations where the more efficient FUSE worker is not supported,
106106
# the classic hardlinking example is shown here.
107107
worker-hardlinking-ubuntu22-04:
108-
image: ghcr.io/buildbarn/bb-worker:20250201T092335Z-31d23d1
108+
image: ghcr.io/buildbarn/bb-worker:20250411t124310z-1c726bd
109109
command:
110110
- /config/worker-hardlinking-ubuntu22-04.jsonnet
111111
privileged: false

kubernetes/browser.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ spec:
1414
app: browser
1515
spec:
1616
containers:
17-
- image: ghcr.io/buildbarn/bb-browser:20250212T055122Z-9c1714b
17+
- image: ghcr.io/buildbarn/bb-browser:20250414t180739z-9b44996
1818
args:
1919
- /config/browser.jsonnet
2020
name: browser

kubernetes/config/common.libsonnet

Lines changed: 12 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -2,34 +2,32 @@
22
blobstore: {
33
contentAddressableStorage: {
44
sharding: {
5-
hashInitialization: 11946695773637837490,
6-
shards: [
7-
{
8-
backend: { grpc: { address: 'storage-0.storage.buildbarn:8981' } },
5+
shards: {
6+
"0": {
7+
backend: { grpc: { address: 'storage-0:8981' } },
98
weight: 1,
109
},
11-
{
12-
backend: { grpc: { address: 'storage-1.storage.buildbarn:8981' } },
10+
"1": {
11+
backend: { grpc: { address: 'storage-1:8981' } },
1312
weight: 1,
1413
},
15-
],
14+
},
1615
},
1716
},
1817
actionCache: {
1918
completenessChecking: {
2019
backend: {
2120
sharding: {
22-
hashInitialization: 14897363947481274433,
23-
shards: [
24-
{
25-
backend: { grpc: { address: 'storage-0.storage.buildbarn:8981' } },
21+
shards: {
22+
"0": {
23+
backend: { grpc: { address: 'storage-0:8981' } },
2624
weight: 1,
2725
},
28-
{
29-
backend: { grpc: { address: 'storage-1.storage.buildbarn:8981' } },
26+
"1": {
27+
backend: { grpc: { address: 'storage-1:8981' } },
3028
weight: 1,
3129
},
32-
],
30+
},
3331
},
3432
},
3533
maximumTotalTreeSizeBytes: 64 * 1024 * 1024,

kubernetes/frontend.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ spec:
1616
containers:
1717
- args:
1818
- /config/frontend.jsonnet
19-
image: ghcr.io/buildbarn/bb-storage:20250213T085125Z-2600f22
19+
image: ghcr.io/buildbarn/bb-storage:20250408t112116z-1d733a3
2020
name: storage
2121
ports:
2222
- containerPort: 8980

kubernetes/scheduler.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ spec:
1818
containers:
1919
- args:
2020
- /config/scheduler.jsonnet
21-
image: ghcr.io/buildbarn/bb-scheduler:20250201T092335Z-31d23d1
21+
image: ghcr.io/buildbarn/bb-scheduler:20250411t124310z-1c726bd
2222
name: scheduler
2323
ports:
2424
- containerPort: 8982

kubernetes/storage.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ spec:
1717
containers:
1818
- args:
1919
- /config/storage.jsonnet
20-
image: ghcr.io/buildbarn/bb-storage:20250213T085125Z-2600f22
20+
image: ghcr.io/buildbarn/bb-storage:20250408t112116z-1d733a3
2121
name: storage
2222
ports:
2323
- containerPort: 8981

kubernetes/worker-ubuntu22-04.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ spec:
2121
containers:
2222
- args:
2323
- /config/worker-ubuntu22-04.jsonnet
24-
image: ghcr.io/buildbarn/bb-worker:20250201T092335Z-31d23d1
24+
image: ghcr.io/buildbarn/bb-worker:20250411t124310z-1c726bd
2525
name: worker
2626
volumeMounts:
2727
- mountPath: /config/
@@ -55,7 +55,7 @@ spec:
5555
readOnly: true
5656
initContainers:
5757
- name: bb-runner-installer
58-
image: ghcr.io/buildbarn/bb-runner-installer:20250201T092335Z-31d23d1
58+
image: ghcr.io/buildbarn/bb-runner-installer:20250411t124310z-1c726bd
5959
volumeMounts:
6060
- mountPath: /bb/
6161
name: empty

0 commit comments

Comments
 (0)