-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
CIAINFRA-890 operator v1: remove obsolete additional container ports
prior to this patch, a container pod was added to pod spec for every broker that exists. the initial idea was to do this for AWS PrivateLink or GCP PrivateServiceConnect. however, this was never used, and is not required: the original container port - that is the same for every pod - is used. the problem with these ports: they are part of Pod Spec, and therefore added to every pod. Scaling up adds a pod, so adds another container port, and therefore rolls all Pods. This is undesired behavior, and causes unwanted restarts. in addition, advertised port and kafka/proxy port had same names in additionalProperties (pl-proxy for example), and did override each other. the port actually used in AWS PL @ redpanda cloud was never added, only the advertised one (which is obsolete). it did not matter really, because ports work, even if not added to container ports.
- Loading branch information
Showing
2 changed files
with
59 additions
and
55 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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