Fix naming of bootstrap service for oddly named listener #11016
Merged
+12
−17
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Type of change
Description
When using a
type: internal
listener with the nameexternal
and port9094
, the backward compatibility naming will use themy-cluster-kafka-external-bootstrap
as the service name for it. This name is wrong and should be used only for listeners namedexternal
with port9094
that are nottype: internal
. This service is never created, but the incorrect name is used in the Kafka CR.status
section.This PR also simplifies some other methods that provide some backward compatible naming to really distinguish the backward compatible cases only where needed and simply the conditions where it is not needed.
Checklist