Skip to content
Open
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 federated-learning-controller/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -295,7 +295,7 @@ flwr run --insecure --run-config 'num-server-rounds=3' \

The reference [Flower PyTorch MNIST app](./examples/flower/app-torch/) is a
SuperExec-compatible Flower app — its `Dockerfile` uses
`flwr/superexec:1.26.1` as the base image and registers
`flwr/superexec:1.32.1` as the base image and registers
`ServerApp` / `ClientApp` via `[tool.flwr.app.components]` in
`pyproject.toml`. Dependencies are baked into the image at build time so pods
start without re-downloading PyTorch on every restart.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM flwr/superexec:1.26.1-py3.13-ubuntu24.04
FROM flwr/superexec:1.32.1-py3.13-ubuntu24.04

WORKDIR /app
COPY pyproject.toml .
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ version = "1.0.0"
description = "MNIST Image Classification with Federated Learning (FedAvg + CNN)"
license = "Apache-2.0"
dependencies = [
"flwr>=1.26.1,<2",
"flwr>=1.32.1,<2",
"flwr-datasets[vision]>=0.6.0",
"torch==2.10.0",
"torchvision==0.25.0",
Expand Down
4 changes: 2 additions & 2 deletions flower-addon/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ RELEASE_NAME ?= flower-addon
CHART_PATH ?= charts/flower-addon

# Image configuration (default: official Flower images)
SUPERLINK_IMAGE ?= flwr/superlink:1.26.1-py3.13-ubuntu24.04
SUPERNODE_IMAGE ?= flwr/supernode:1.26.1-py3.13-ubuntu24.04
SUPERLINK_IMAGE ?= flwr/superlink:1.32.1-py3.13-ubuntu24.04
SUPERNODE_IMAGE ?= flwr/supernode:1.32.1-py3.13-ubuntu24.04
APP_IMAGE ?= flower-app:1.0.0

.PHONY: all
Expand Down
2 changes: 1 addition & 1 deletion flower-addon/charts/flower-addon/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: flower-addon
description: Flower Federated Learning addon for Open Cluster Management
type: application
version: 0.1.0
appVersion: "1.26.1"
appVersion: "1.32.1"
keywords:
- federated-learning
- flower
Expand Down
4 changes: 2 additions & 2 deletions flower-addon/charts/flower-addon/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ superlink:
namespace: flower-system
image:
repository: flwr/superlink
tag: "1.26.1-py3.13-ubuntu24.04"
tag: "1.32.1-py3.13-ubuntu24.04"
pullPolicy: IfNotPresent
resources:
requests:
Expand Down Expand Up @@ -35,7 +35,7 @@ tls:
supernode:
image:
repository: flwr/supernode
tag: "1.26.1-py3.13-ubuntu24.04"
tag: "1.32.1-py3.13-ubuntu24.04"
pullPolicy: IfNotPresent
resources:
requests:
Expand Down
2 changes: 1 addition & 1 deletion flower-addon/cifar10/Containerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM flwr/superexec:1.26.1-py3.13-ubuntu24.04
FROM flwr/superexec:1.32.1-py3.13-ubuntu24.04

WORKDIR /app
COPY pyproject.toml .
Expand Down
2 changes: 1 addition & 1 deletion flower-addon/cifar10/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ version = "1.0.0"
description = "CIFAR-10 Image Classification with Federated Learning (FedAvg + CNN)"
license = "Apache-2.0"
dependencies = [
"flwr>=1.26.1",
"flwr>=1.32.1",
"flwr-datasets[vision]>=0.6.0",
"torch==2.10.0",
"torchvision==0.25.0",
Expand Down
Loading