operator/chart: Create services per per in kubernetes cluster mesh setup#1298
Open
RafalKorepta wants to merge 1 commit intomainfrom
Open
operator/chart: Create services per per in kubernetes cluster mesh setup#1298RafalKorepta wants to merge 1 commit intomainfrom
RafalKorepta wants to merge 1 commit intomainfrom
Conversation
084e8b4 to
ded56ba
Compare
hidalgopl
reviewed
Mar 12, 2026
626ecdd to
5c324ef
Compare
To create Raft group among operators running in multiple distinct Kubernetes clusters each operator need to have routable address. With this change when multicluster flag is enabled Kubernetes services are created per peer name. Addidional labels and selector overwrite is crucial to expose services in cluster mesh setup and point to correct operator Pod. Example configuraiton: ```yaml multicluster: enabled: true name: first apiServerExternalAddress: "https://34.42.207.87" peers: - name: first address: first-redpanda-operator-nightly-raft-service additionalAnnotation: service.cilium.io/global: "true" selectorOverwrite: app.kubernetes.io/instance: first - name: second address: second-redpanda-operator-nightly-raft-service additionalAnnotation: service.cilium.io/global: "true" selectorOverwrite: app.kubernetes.io/instance: second - name: third address: third-redpanda-operator-nightly-raft-service additionalAnnotation: service.cilium.io/global: "true" selectorOverwrite: app.kubernetes.io/instance: third ```
5c324ef to
9f21c1c
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
To create Raft group among operators running in multiple distinct Kubernetes clusters each operator need to have routable address. With this change when multicluster flag is enabled Kubernetes services are created per peer name. Addidional labels and selector overwrite is crucial to expose services in cluster mesh setup and point to correct operator Pod.
Example configuraiton:
Closes K8S-792