Quick navigation
Memory configuration
::: RUN_MODE has been deprecated. We now rely on container CGroups limits and use up to 80% of the container memory limit for JVM max heap size. :::
-XX:+UseContainerSupport -XX:MaxRAMPercentage=80
You now only need to care about the limits that you set on your container.
- Console Helm
- Kubernetes
- Docker Compose
# Values.yaml
...
platform:
resources:
limits:
memory: 8Gi
...
# deployment.yaml
apiVersion: apps/v1
kind: Deployment
...
template:
spec:
containers:
- name: console
image: conduktor/conduktor-console
resources:
limits:
memory: 8G
...
# docker-compose.yaml
...
conduktor-console:
image: conduktor/conduktor-console
deploy:
resources:
limits:
memory: 8G
...