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
If you see an error like "Max virtual memory areas vm.max_map_count 65530 is too low", this is fixed in the latest deployment configuration with an init container.
90
+
If you see an error like "Max virtual memory areas vm.max_map_count 65530 is too low" or a `SysctlForbidden` error message with "forbidden sysctl: vm.max_map_count", this can be fixed in two ways:
91
+
92
+
1.**AKS Cluster Level Fix (Preferred)**:
93
+
The AKS cluster should be configured with proper sysctl permissions in its Terraform configuration:
94
+
```tf
95
+
default_node_pool {
96
+
# Other settings...
97
+
linux_os_config {
98
+
sysctl_config {
99
+
vm_max_map_count = 262144
100
+
}
101
+
}
102
+
}
103
+
```
104
+
105
+
2.**Pod Level Fix**:
106
+
The Memgraph pod configuration includes both:
107
+
- securityContext with sysctls to request the setting
108
+
- An init container that attempts to set the value if privileged mode is allowed
109
+
110
+
If you're still seeing this issue, check that your AKS cluster's security policies allow sysctls.
0 commit comments