-
Notifications
You must be signed in to change notification settings - Fork 111
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
msp-operator has no rest url set #1076
Labels
NEW
New issue
Comments
Hi @kvaps, is the rest service NodePort created? AFAICT that environment variable should be set by the kubelet but it's not ideal as the node port must be created before the pod. We should probably change this to use the dns name instead ( |
I fixed this by replacing this by using hostname already - args:
- -e http://rest:8081
- --interval=30s |
tiagolobocastro
added a commit
to openebs/mayastor-control-plane
that referenced
this issue
Feb 1, 2022
Using the host name creates a race as rest must start ahead. Instead, simply use the dns name, which will be updated whenever rest is ready. Resolves: openebs/mayastor#1076
tiagolobocastro
added a commit
to openebs/mayastor-control-plane
that referenced
this issue
Feb 1, 2022
Using the host name creates a race as rest's node port must start ahead of its consumers. Instead, simply use the dns name, which will be updated whenever rest is ready. Resolves: openebs/mayastor#1076 Resolves: CAS-1288
tiagolobocastro
added a commit
to openebs/mayastor-control-plane
that referenced
this issue
Jun 7, 2022
Using the host name creates a race as rest's node port must start ahead of its consumers. Instead, simply use the dns name, which will be updated whenever rest is ready. Resolves: openebs/mayastor#1076 Resolves: CAS-1288
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Describe the bug
msp-operator trying to
GET http://$(rest_service_host):8081/
but this variable is not set:https://github.com/openebs/mayastor-control-plane/blob/5f33aedc99dfca9f706cd23211d408539b7a3edf/deploy/msp-deployment.yaml#L49-L58
To Reproduce
https://mayastor.gitbook.io/introduction/quickstart/deploy-mayastor
MayastorPool
Expected behavior
MayastorPool has created
Screenshots
** OS info (please complete the following information):**
Additional context
Add any other context about the problem here.
The text was updated successfully, but these errors were encountered: