-
Notifications
You must be signed in to change notification settings - Fork 228
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
chage the pulsar-manager port #156
Comments
I provided an answer to this issue here: apache/pulsar#11909 (comment). It is not possible to configure the node port to 8100, as node ports must be in the range from 30000 to 32767. @chlyzzo - are you still looking to configure the node port? If so, you could do this by modifying the service templates. Would you like to contribute this feature? |
Zookeeper has a yaml `zookeeper-metadata.yaml` that contains multiline string fields. You will see something like this in that file ```yaml args: - > bin/pulsar initialize-cluster-metadata \ ``` The problem with this is that the main library in Go for parsing yaml contains a [bug](go-yaml/yaml#827) and it is not able to generate the yaml files correctly. I'm using [Kustomize](https://kustomize.io/) to deploy my helm charts (which uses that yaml library) and that is breaking the deployment. Yaml also has another syntax for multiline string that works just fine ```yaml args: - | bin/pulsar initialize-cluster-metadata \ ``` kafkaesque-io/pulsar-helm-chart#92
Closing issue since there's no feedback from reporter. pulsar-manager integration was improved in #457 |
Is your feature request related to a problem? Please describe.
in k8s, helm install pulsar, and gei services, like :
pulsar-spatio-pulsar-manager NodePort 10.233.46.47 9527:31335/TCP 100m
and the port 31335 can random change, when uninstall pulsar-spatio then install again,
Describe the solution you'd like
so ,how can set port in values.yaml, can get a define port to pulsar-spatio-pulsar-manager.
for example, in values.yaml i set a parameter(now i do not know which parameter),then install puslar, can get
pulsar-spatio-pulsar-manager NodePort 10.233.46.47 9527:8100/TCP 100m
Describe alternatives you've considered
A clear and concise description of any alternative solutions or features you've considered.
Additional context
Add any other context or screenshots about the feature request here.
The text was updated successfully, but these errors were encountered: