From cee2ba28ed227f70cf7d97f7c26ea9e785f1156d Mon Sep 17 00:00:00 2001 From: Andi Skrgat Date: Mon, 10 Nov 2025 12:04:19 +0100 Subject: [PATCH 1/2] feat: Add support for secrets to memgraph-lab chart --- pages/getting-started/install-memgraph/kubernetes.mdx | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pages/getting-started/install-memgraph/kubernetes.mdx b/pages/getting-started/install-memgraph/kubernetes.mdx index 93c67e752..242915daa 100644 --- a/pages/getting-started/install-memgraph/kubernetes.mdx +++ b/pages/getting-started/install-memgraph/kubernetes.mdx @@ -839,6 +839,9 @@ and their default values. | `serviceAccount.create` | Specifies whether a service account should be created | `true` | | `serviceAccount.annotations` | Annotations to add to the service account | `{}` | | `serviceAccount.name` | The name of the service account to use. If not set and create is true, a name is generated. | `""` | +| `secrets.enabled` | Enable the use of Kubernetes secrets. Will be injected as env variables. | `false` | +| `secrets.name` | The name of the Kubernetes secret that will be used. | `memgraph-secrets` | +| `secrets.keys` | Keys from the `secrets.name` that will be stored as env variables inside the pod. | ``. | Memgraph Lab can be further configured with environment variables in your `values.yaml` file. From 060494e75d8e5003f940615a2f45f21c7d85f753 Mon Sep 17 00:00:00 2001 From: Andi Skrgat Date: Mon, 10 Nov 2025 14:52:28 +0100 Subject: [PATCH 2/2] fix: Typo --- pages/getting-started/install-memgraph/kubernetes.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/getting-started/install-memgraph/kubernetes.mdx b/pages/getting-started/install-memgraph/kubernetes.mdx index 242915daa..d6cd4081e 100644 --- a/pages/getting-started/install-memgraph/kubernetes.mdx +++ b/pages/getting-started/install-memgraph/kubernetes.mdx @@ -841,7 +841,7 @@ and their default values. | `serviceAccount.name` | The name of the service account to use. If not set and create is true, a name is generated. | `""` | | `secrets.enabled` | Enable the use of Kubernetes secrets. Will be injected as env variables. | `false` | | `secrets.name` | The name of the Kubernetes secret that will be used. | `memgraph-secrets` | -| `secrets.keys` | Keys from the `secrets.name` that will be stored as env variables inside the pod. | ``. | +| `secrets.keys` | Keys from the `secrets.name` that will be stored as env variables inside the pod. | `[]` | Memgraph Lab can be further configured with environment variables in your `values.yaml` file.