Skip to content

Commit 19af0fb

Browse files
committed
docker: Update LAVA to 2026.07
Just a version bump for fixes and so on, though due to new checks in Django we do need to update the default HTTP FQDN to include the protocol. Signed-off-by: Mark Brown <broonie@kernel.org>
1 parent a1d011c commit 19af0fb

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

lava-master/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM lavasoftware/lava-server:2026.01
1+
FROM lavasoftware/lava-server:2026.07
22

33
RUN if [ -e /etc/apt/sources.list.d/debian.sources ] ;then sed -i 's,.*bullseye-backports,#,' /etc/apt/sources.list.d/debian.sources ; fi
44
RUN if [ -e /etc/apt/sources.list.d/backports.list ] ;then sed -i 's,.*bullseye-backports,#,' /etc/apt/sources.list.d/backports.list ; fi

lava-slave/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM lavasoftware/lava-dispatcher:2026.01
1+
FROM lavasoftware/lava-dispatcher:2026.07
22

33
RUN if [ -e /etc/apt/sources.list.d/debian.sources ] ;then sed -i 's,.*bullseye-backports,#,' /etc/apt/sources.list.d/debian.sources ; fi
44
RUN if [ -e /etc/apt/sources.list.d/backports.list ] ;then sed -i 's,.*bullseye-backports,#,' /etc/apt/sources.list.d/backports.list ; fi

lavalab-gen.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -231,7 +231,7 @@ def main():
231231
lava_http_fqdn = worker["http_fqdn"]
232232
allowed_hosts_list.append('"%s"' % lava_http_fqdn)
233233
else:
234-
lava_http_fqdn = "127.0.0.1"
234+
lava_http_fqdn = "http://127.0.0.1"
235235
allowed_hosts_list.append('"%s"' % name)
236236
if "allowed_hosts" in worker:
237237
for allow_host in worker["allowed_hosts"]:

0 commit comments

Comments
 (0)