Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
  # kafkaTopics -- kafka topics and configuration to create for Kfuse
  kafkaTopics:
    - name: kf_commands
      partitions: 1
      replicationFactor: 1
    - name: kf_recorder_data
      partitions: 1
      replicationFactor: 1

Add a recorder section with the same affinity and tolerations values as the ingester. If empty, don’t add recorder section

Code Block
recorder: 
  # affinity -- affinity settings.
  affinity:
    nodeAffinity:
      requiredDuringSchedulingIgnoredDuringExecution:
        nodeSelectorTerms:
        - matchExpressions:
          - key: ng_label
            operator: In
            values:
            - 1mg-test

  # tolerations -- Global tolerations settings.
  # Ref: https://kubernetes.io/docs/concepts/configuration/taint-and-toleration/amrut
  tolerations:
  - key: "ng_taint"
    operator: "Equal"
    value: "1mg-testamrut"
    effect: "NoSchedule"

Now upgrade the stack with the upgrade command

...