Skip to content
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

Closed
chlyzzo opened this issue Sep 3, 2021 · 2 comments
Closed

chage the pulsar-manager port #156

chlyzzo opened this issue Sep 3, 2021 · 2 comments

Comments

@chlyzzo
Copy link

chlyzzo commented Sep 3, 2021

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.

@michaeljmarshall
Copy link
Member

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?

pgier pushed a commit to pgier/pulsar-helm-chart that referenced this issue Apr 22, 2022
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
@lhotari
Copy link
Member

lhotari commented Feb 15, 2024

Closing issue since there's no feedback from reporter. pulsar-manager integration was improved in #457

@lhotari lhotari closed this as completed Feb 15, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants