-
Notifications
You must be signed in to change notification settings - Fork 66
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
Update hawkBit to Application Version 0.5.0 #549
Update hawkBit to Application Version 0.5.0 #549
Conversation
fix readiness probes fix default jdbc driver Signed-off-by: Lukas Harzenetter <[email protected]>
@lharzenetter The CI checks are currently failing here because of a failing
instead lets the test succeed. @strailov @avgustinmm Could you have a look at this PR? |
Using admin credentials you could call: curl -X 'GET' \
'http://localhost:8080/rest/v1/userinfo' \
-H 'accept: application/json' \
-H 'Authorization: Basic ...' This shall return info about the tenant and user, e.g.: {
"tenant": "DEFAULT",
"username": "admin"
} This could be a useful liveness/readiness probe since it indicates that the management API is ready to be called up. |
I agree. |
Do you have any comments on the code? Could you please merge it? Cheers |
It looks good for me. Could be merged. |
In the current version, the helm chart does not support the latest version of hawkBit that is 0.5.0.
Because of the removal of the vaadin UI, the readyness and liveness probes are broken.
Additionally, by default, the version 0.5.0 uses the MariaDB Connector instead of the MySQL Connector.
Thus, I updated the readiness and liveness probes to use the Swagger-UI and the MariaDB connection string by default.