gdezse commented on issue #1999:
URL: https://github.com/apache/activemq/issues/1999#issuecomment-4623900494
I just encountered this issue.
The problem is that the liveness probe is hard wired to use the `httpGet`
type that cannot be changed because the helm values merging and the way the
template is configured.
The problem does not occur when authentication is disabled, which is also
not that directly configurable, but the default behavior is auth on so it
doesn't work out of the box.
A new solution should allow to turn probes on and off.
I also managed to do a workaround by providing a http authorization header
with the correct value, which is the username and password from the broker
config:
```yaml
livenessProbe:
httpGet:
httpHeaders:
- name: Authorization
value: "Basic <base64 encode of 'admin:admin'>"
```
But this seems like too much effort just to get the chart working with
default settings
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]
For further information, visit: https://activemq.apache.org/contact