Skip to content

Commit

Permalink
Update default security.json in solr-cloud-crd.md to include permissi…
Browse files Browse the repository at this point in the history
…on for /admin/info/system path (#680)
  • Loading branch information
dan-niles authored Mar 26, 2024
1 parent 2358d54 commit 6837ad2
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion docs/solr-cloud/solr-cloud-crd.md
Original file line number Diff line number Diff line change
Expand Up @@ -1000,6 +1000,12 @@ Take a moment to review these authorization rules so that you're aware of the ro
"name": "k8s-probe-0",
"role": null,
"collection": null,
"path": "/admin/info/system"
},
{
"name": "k8s-probe-1",
"role": null,
"collection": null,
"path": "/admin/info/health"
},
{
Expand Down Expand Up @@ -1057,7 +1063,7 @@ A few aspects of the default `security.json` configuration warrant a closer look
"name": "k8s-probe-0",
"role": null,
"collection": null,
"path": "/admin/info/health"
"path": "/admin/info/system"
}
```
In this case, the `"role":null` indicates this endpoint allows anonymous access by unknown users.
Expand Down Expand Up @@ -1153,6 +1159,7 @@ _Note: be sure to use a stronger password for real deployments_

Users need to ensure their `security.json` contains the user supplied in the `basicAuthSecret` has read access to the following endpoints:
```
/admin/info/system
/admin/info/health
/admin/collections
/admin/metrics
Expand Down

0 comments on commit 6837ad2

Please sign in to comment.