Question:how to change the default login account and password
I‘m a newer of Pulsar,so as the pulsar-manger, I deploy my pulsar server on the K8S, But I don't want to use the default pulsar-manger login account:pulsar and the password pulsar, I saw the doc like this:
https://github.com/apache/pulsar-manager/blob/master/src/main/resources/application.properties
So how could I change the default login password and account?
sorry about my english
You can try this image https://hub.docker.com/layers/streamnative/pulsar-manager/0.3.0/images/sha256-56fd8cd6fb5fcc3db4e50c216216b1fbb50533339ea20db6d2048eae98b6ee69?context=explore and use this command to initialize the account and password after deployment.
curl
-H "Content-Type: application/json" \
-X PUT http://backend-service:7750/pulsar-manager/users/superuser \
-d '{"name": "admin", "password": "apachepulsar", "description": "test", "email": "[email protected]"}'
Reference: https://github.com/apache/pulsar-manager#access-pusar-manager
@Andreby42
thank u . I will try it
This port is the port of that service
This port is the port of that service
Do U mean which service does the port belongs to?
we need a better way(besides running curl) to set default use and password.
For this issue you can deploy a pulsar-manager-batch-job.yaml file which will fix or change the login access in backend-service in this link
After this batch job, you can access your pulsar-manager via dashboard. Thank you.