diff --git a/Dockerfile b/Dockerfile
index acf87328a92e59d2587c67a5dac56d6d12223df7..008df6608e9140679770f9b071c066d8466feb78 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -8,7 +8,7 @@ ENV TAIKO_SKIP_CHROMIUM_DOWNLOAD=true
 ENV TAIKO_BROWSER_PATH=/usr/bin/chromium-browser
 ENV TAIKO_BROWSER_ARGS=--no-sandbox,--start-maximized,--disable-dev-shm-usage,--ignore-certificate-errors
 
-ADD https://github.com/fluxcd/flux2/releases/download/v0.16.1/flux_0.16.1_linux_amd64.tar.gz /tmp/
+ADD https://github.com/fluxcd/flux2/releases/download/v0.17.0/flux_0.17.0_linux_amd64.tar.gz /tmp/
 # Download kubectl until it's packaged in alpine > 3.14
 ADD https://dl.k8s.io/release/v1.21.0/bin/linux/amd64/kubectl /usr/local/bin/
 COPY ./test/pytest/le-staging-bundle.pem /usr/local/share/ca-certificates/le-staging-bundle.pem
diff --git a/ansible/group_vars/all/oas.yml b/ansible/group_vars/all/oas.yml
index 0d3e123a1f524bbae5c9128bf0401ff66734312a..cfda507df9efe8097ad8462f8e0df11af235d833 100644
--- a/ansible/group_vars/all/oas.yml
+++ b/ansible/group_vars/all/oas.yml
@@ -9,7 +9,7 @@ ansible_python_interpreter: "/usr/bin/env python3"
 # Application versions
 flux:
   # https://github.com/fluxcd/flux2/releases
-  version: 0.16.1
+  version: 0.17.0
 
 k3s:
   # https://github.com/k3s-io/k3s/releases
diff --git a/install/flux-version-check.sh b/install/flux-version-check.sh
index 91c66dbd4548491f6113dfc7f717795b148033b9..88300644492a7300be24a7a160512206bf545096 100644
--- a/install/flux-version-check.sh
+++ b/install/flux-version-check.sh
@@ -1,4 +1,4 @@
-if [ "$(flux --version)" != "flux version 0.16.1" ]; then
-    echo "The OpenAppStack installation only works with Flux version 0.16.1"
+if [ "$(flux --version)" != "flux version 0.17.0" ]; then
+    echo "The OpenAppStack installation only works with Flux version 0.17.0"
     exit 1;
 fi