Versions Compared

Key

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

...

Edit the custom_values.yaml file and move the block under kafka to kafka-broker section as follwosfollows

Code Block
kafka:
  broker:
    <<previous kafka block>>

Add these topics to the kafka section

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

Now upgrade the stack with the upgrade command

...