We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents efcceee + 98c092b commit f571c15Copy full SHA for f571c15
operations/k8s_support.md
@@ -25,18 +25,23 @@ And follow these steps:
25
Create a values.yaml file with the following content:
26
27
```yaml
28
+global:
29
+ security:
30
+ # Required to be able to run the FalkorDB image
31
+ allowInsecureImages: true
32
+
33
image:
34
registry: docker.io
35
repository: falkordb/falkordb
- tag: "4.0"
36
+ tag: "latest"
37
38
master:
39
extraFlags:
- - "--loadmodule /FalkorDB/bin/linux-x64-release/src/falkordb.so"
40
+ - "--loadmodule /FalkorDB/bin/src/falkordb.so"
41
42
replica:
43
44
45
```
46
47
This file specify the FalkorDB image(you can choose different tags)
0 commit comments