From 1e2735a36ce1ef1a16e8d549d66523ae900a1e38 Mon Sep 17 00:00:00 2001 From: Dudi Zimberknopf Date: Thu, 16 Jan 2025 09:26:35 +0200 Subject: [PATCH 1/2] set tag to latest fix binary path --- operations/k8s_support.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/operations/k8s_support.md b/operations/k8s_support.md index d07bc98..f25bd67 100644 --- a/operations/k8s_support.md +++ b/operations/k8s_support.md @@ -28,15 +28,15 @@ Create a values.yaml file with the following content: image: registry: docker.io repository: falkordb/falkordb - tag: "4.0" + tag: "latest" master: extraFlags: - - "--loadmodule /FalkorDB/bin/linux-x64-release/src/falkordb.so" + - "--loadmodule /FalkorDB/bin/src/falkordb.so" replica: extraFlags: - - "--loadmodule /FalkorDB/bin/linux-x64-release/src/falkordb.so" + - "--loadmodule /FalkorDB/bin/src/falkordb.so" ``` This file specify the FalkorDB image(you can choose different tags) From 98c092b82b2edfe556eb4785c23be912d672631b Mon Sep 17 00:00:00 2001 From: Dudi Zimberknopf Date: Thu, 16 Jan 2025 09:29:13 +0200 Subject: [PATCH 2/2] add allowInsecureImages: true --- operations/k8s_support.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/operations/k8s_support.md b/operations/k8s_support.md index f25bd67..28c98cc 100644 --- a/operations/k8s_support.md +++ b/operations/k8s_support.md @@ -25,6 +25,11 @@ And follow these steps: Create a values.yaml file with the following content: ```yaml +global: + security: + # Required to be able to run the FalkorDB image + allowInsecureImages: true + image: registry: docker.io repository: falkordb/falkordb