parameters

Schema version: 1

  • settings
    object
    • settings.builtInRulesList
      array of strings
      List of enabled default rules. You can specify an empty list [] to disable built-in rules.

      Default: [ "Fstec" ]

      Examples:


      builtInRulesList:
      - Fstec
      
      builtInRulesList: []
      
      • settings.builtInRulesList.Element of the array
        string

        Allowed values: Fstec

    • settings.debugLogging
      boolean
      If true, all events will be duplicated to stdout.
    • settings.resourcesRequests
      object

      Max amounts of CPU and memory resources that the pod can request when selecting a node.

      If the vertical-pod-autoscaler module is disabled, then these values become the default ones.

      Default: {}

      Examples:


      mode: VPA
      vpa:
        cpu:
          max: 2
          min: 50m
        memory:
          max: 2Gi
          min: 256Mi
        mode: Auto
      
      mode: VPA
      vpa:
        cpu:
          max: 3000m
          min: 1
        memory:
          max: 4096
          min: 1024
        mode: Initial
      
      mode: Static
      static:
        cpu: 55m
        memory: 256Ki
      
      • settings.resourcesRequests.mode
        string

        Required value

        Resource request management mode:

        • Static is a classic one. In it, you explicitly specify requests. The parameters of this mode are defined in the static parameter section;
        • VPA mode uses VPA. You can configure this mode by modifying parameters in the vpa parameter section.

        Default: VPA

        Allowed values: VPA, Static

      • settings.resourcesRequests.static
        object
        Resource request management options for the Static mode.

        Default: {}

        • settings.resourcesRequests.static.cpu

          Required value

          Configuring CPU requests.

          Default: 50m

        • settings.resourcesRequests.static.memory

          Required value

          Configuring memory requests.

          Default: 64Mi

      • settings.resourcesRequests.vpa
        object
        Resource request management options for the VPA mode.

        Default: {}

        • settings.resourcesRequests.vpa.cpu
          object

          Required value

          CPU-related parameters.

          Default: {}

          • settings.resourcesRequests.vpa.cpu.max
            The maximum value that the VPA can set for the CPU requests.

            Default: 4000m

          • settings.resourcesRequests.vpa.cpu.min
            The minimum value that the VPA can set for the CPU requests.

            Default: 50m

        • settings.resourcesRequests.vpa.memory
          object

          Required value

          The amount of memory requested.

          Default: {}

          • settings.resourcesRequests.vpa.memory.max
            The maximum memory requests the VPA can set.

            Default: 5Gi

          • settings.resourcesRequests.vpa.memory.min
            The minimum memory requests the VPA can set.

            Default: 64Mi

        • settings.resourcesRequests.vpa.mode
          string

          Required value

          The VPA usage mode.

          Default: Initial

          Allowed values: Initial, Auto