Using HTTP Endpoint for security.config-file Results in File Does Not Exist #19811
Replies: 1 comment
-
Ack, was actually using an older image that was overwriting from the parent umbrella chart I was using. Works fine now. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
According to the documentation, you can utilize the following configuration
to provide the system level access controls file. I've create an http service which returns the rules in the required json format hosted at that url in my k8s cluster. However, when it starts up it logs a
I've tested the service endpoint from the coordinator pod and it returns fine and there are no requests received in the access logs of the service from the coordinator on startup. I did notice the log message only returns http:/ instead of http:// even though the access-control.properties file looks exactly like what I've posted. I've also noticed theres an isHttp method in the FileBasedAccessControlConfig class that is probably triggering the error. I think the double slash is getting replaced somewhere by a single slash causing the match against "http://" to fail however other than that I haven't any other leads as to why I am receiving this error.
I am using the latest trinodb/charts helm chart.
Beta Was this translation helpful? Give feedback.
All reactions