-
Notifications
You must be signed in to change notification settings - Fork 179
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
URL handling for security.config-file on access-control.properties #195
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
|
@@ -91,8 +91,9 @@ accessControl: {} | |||||
# accessControl -- [System access | ||||||
# control](https://trino.io/docs/current/security/built-in-system-access-control.html) | ||||||
# configuration. | ||||||
# type can be either 'configmap' when using a local file or 'remote' when using a file from an http/https URL | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. All docs should be correct sentences, start with a capital letter.
Suggested change
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Also, see the repository README on how to run pre-commit hooks to regenerate the Chart's README. |
||||||
# @raw | ||||||
# Example: | ||||||
# Example with configmap: | ||||||
# ```yaml | ||||||
# type: configmap | ||||||
# refreshPeriod: 60s | ||||||
|
@@ -144,6 +145,14 @@ accessControl: {} | |||||
# ] | ||||||
# } | ||||||
# ``` | ||||||
# Example with remote: | ||||||
# ```yaml | ||||||
# type: "remote" | ||||||
# refreshPeriod: "60s" | ||||||
# url: "http://trino-test/config" | ||||||
# jsonPointer: "/data" | ||||||
# # Rules file is mounted to /etc/trino/access-control | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
# ``` | ||||||
|
||||||
resourceGroups: {} | ||||||
# resourceGroups -- Resource groups file is mounted to /etc/trino/resource-groups/resource-groups.json | ||||||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.