Helm Chart delete CPU limits

Hi people! I am trying to delete the CPU limits on the zeebe-gateway and zeebe, but I always have a response error and the HelmRelease never install good.

I tryed to set like:
limits:
cpu: null

limits:
cpu: “null”

limits:
cpu: “”

limits:
cpu: 0

limits:
{delete the line} but finally install with the default value

Can someone help me ??

I am using this version of the char:

chart:
spec:
chart: camunda-platform
version: 10.0.2
sourceRef:
kind: HelmRepository
name: camunda

Hi @LuisoBKM - I believe you can provide a set of empty curly braces as the value:

limits: {}

Hi! But I only want to delete the limit on the CPU section, this can be posiblle ?

Hi @LuisoBKM . Here is a sample values.yaml you can try for vesrion 10.0.2:

zeebe:
  resources:
    limits:
      cpu: ""

zeebeGateway:
  resources:
    limits:
      cpu: ""

This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.