You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
|`image.tag`| Specific tag for the Memgraph Docker image. Overrides the image tag whose default is chart version. |`""` (Defaults to chart's app version) |
|`memgraphOrganizationName`| Organization name for Memgraph Enterprise License |`""`|
43
59
|`statefulSetAnnotations`| Annotations to add to the stateful set |`{}`|
44
60
|`podAnnotations`| Annotations to add to the pod |`{}`|
45
-
|`resources`| CPU/Memory resource requests/limits. Left empty by default. |`{}`(See note on uncommenting)|
61
+
|`resources`| CPU/Memory resource requests/limits. Left empty by default. |`{}`|
46
62
|`serviceAccount.create`| Specifies whether a service account should be created |`true`|
47
63
|`serviceAccount.annotations`| Annotations to add to the service account |`{}`|
48
64
|`serviceAccount.name`| The name of the service account to use. If not set and create is true, a name is generated. |`""`|
65
+
|`container.terminationGracePeriodSeconds`| Grace period for pod termination |`1800`|
66
+
|`probes.liveliness.initialDelaySeconds`| Initial delay for liveliness probe |`10`|
67
+
|`probes.liveliness.periodSeconds`| Period seconds for liveliness probe |`60`|
68
+
|`probes.liveliness.failureThreshold`| Failure threshold for liveliness probe |`3`|
69
+
|`probes.readiness.initialDelaySeconds`| Initial delay for readiness probe |`10`|
70
+
|`probes.readiness.periodSeconds`| Period seconds for readiness probe |`30`|
71
+
|`probes.readiness.failureThreshold`| Failure threshold for readiness probe |`3`|
72
+
|`probes.startup.initialDelaySeconds`| Initial delay for startup probe |`10`|
73
+
|`probes.startup.periodSeconds`| Period seconds for startup probe |`10`|
74
+
|`probes.startup.failureThreshold`| Failure threshold for startup probe |`30`|
49
75
50
76
**Note:** It's often recommended not to specify default resources and leave it as a conscious choice for the user. If you want to specify resources, uncomment the following lines in your `values.yaml`, adjust them as necessary:
51
77
@@ -66,5 +92,7 @@ The `memgraphConfig` parameter should be a list of strings defining the values o
66
92
memgraphConfig:
67
93
- "--also-log-to-stderr=true"
68
94
- "--log-level=TRACE"
95
+
- "--log-file=''"
96
+
69
97
```
70
98
For all available database settings, refer to the [Configuration settings reference guide](https://memgraph.com/docs/memgraph/reference-guide/configuration).
0 commit comments