You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
I am using argo-cd to deploy on openshift using these helm charts. The issue I have is the backend admin service port is 7750 which the pulsar-manager-service.yaml template doesn't expose. I am trying to follow the instructions here: set-administrator-account-and-password from a node in the cluster but it doesn't work. When I go into openshift and manually add the 7750 port to the service I can then set the superuser info.
Describe the solution you'd like
I would like the pulsar-manager-service.yaml file to be updated from: ports: - name: server port: {{ .Values.pulsar_manager.service.port }} targetPort: {{ .Values.pulsar_manager.service.targetPort }} protocol: TCP
to: ports: - name: server port: {{ .Values.pulsar_manager.service.port }} targetPort: {{ .Values.pulsar_manager.service.targetPort }} protocol: TCP {{- if .Values.pulsar_manager.service.admin_port }} - name: {{ .Values.pulsar_manager.service.admin_port.name }} port: {{ .Values.pulsar_manager.service.admin_port.port }} targetPort: {{ .Values.pulsar_manager.service.admin_port.targetPort }} protocol: TCP {{- end }}
Describe alternatives you've considered
The only other options I have are:
Create and maintain my own helm charts (which long term isn't viable)
Do this manually (which doesn't allow it to be automated like I need)
Additional context
Even if you want to hardcode it instead of making it virialized that would be fine also.
The text was updated successfully, but these errors were encountered:
bsheltonihs
changed the title
Update pulsar-manager-service template to allow from admins to open multiple ports
Update pulsar-manager-service template to allow for admins to open multiple ports
Feb 21, 2022
Is your feature request related to a problem? Please describe.
I am using argo-cd to deploy on openshift using these helm charts. The issue I have is the backend admin service port is
7750
which thepulsar-manager-service.yaml
template doesn't expose. I am trying to follow the instructions here: set-administrator-account-and-password from a node in the cluster but it doesn't work. When I go into openshift and manually add the7750
port to the service I can then set the superuser info.Describe the solution you'd like
I would like the
pulsar-manager-service.yaml
file to be updated from:ports: - name: server port: {{ .Values.pulsar_manager.service.port }} targetPort: {{ .Values.pulsar_manager.service.targetPort }} protocol: TCP
to:
ports: - name: server port: {{ .Values.pulsar_manager.service.port }} targetPort: {{ .Values.pulsar_manager.service.targetPort }} protocol: TCP {{- if .Values.pulsar_manager.service.admin_port }} - name: {{ .Values.pulsar_manager.service.admin_port.name }} port: {{ .Values.pulsar_manager.service.admin_port.port }} targetPort: {{ .Values.pulsar_manager.service.admin_port.targetPort }} protocol: TCP {{- end }}
Describe alternatives you've considered
The only other options I have are:
Additional context
Even if you want to hardcode it instead of making it virialized that would be fine also.
The text was updated successfully, but these errors were encountered: