Uploaded image for project: 'ONAP Operations Manager'
  1. ONAP Operations Manager
  2. OOM-3033

Nodeport definition for KafkaBroker 2 missing in Strimzi

XMLWordPrintable

    • Hide

      In https://git.onap.org/oom/tree/kubernetes/strimzi/templates/strimzi-kafka.yaml
      only for broker 0 and 1 the Nodeports are reserved, not for broker 2.
      This leads during installation to a randomly reserved nodeport, which can be in confict with other component reservations.

      Fix should be anadditional line for broker 2 (but check, if port 30494 is free):

                brokers:
                  - broker: 0
                    nodePort: {{ .Values.global.nodePortPrefixExt }}92
                  - broker: 1
                    nodePort: {{ .Values.global.nodePortPrefixExt }}93 
                  - broker: 2
                    nodePort: {{ .Values.global.nodePortPrefixExt }}94 
      Show
      In https://git.onap.org/oom/tree/kubernetes/strimzi/templates/strimzi-kafka.yaml only for broker 0 and 1 the Nodeports are reserved, not for broker 2. This leads during installation to a randomly reserved nodeport, which can be in confict with other component reservations. Fix should be anadditional line for broker 2 (but check, if port 30494 is free): brokers: - broker: 0 nodePort: {{ .Values.global.nodePortPrefixExt }}92 - broker: 1 nodePort: {{ .Values.global.nodePortPrefixExt }}93 - broker: 2 nodePort: {{ .Values.global.nodePortPrefixExt }}94

          andreasgeissler Andreas Geissler
          andreasgeissler Andreas Geissler
          Votes:
          0 Vote for this issue
          Watchers:
          1 Start watching this issue

            Created:
            Updated:
            Resolved: