We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
https://www.puppet.com/docs/pe/2023.8/nodes_endpoint.html lists some URL examples. The text says
When Forming node classifier API requests to this endpoint, the request is a basic GET call with authentication
but also:
GET https://localhost:4433/classifier-api/v1/nodes?limit=25&offset=25
Which doesn't work out of the box.
A working copy and paste example would be awesome:
cert="$(puppet config print hostcert)"; \ cacert="$(puppet config print localcacert)"; \ key="$(puppet config print hostprivkey)"; \ uri="https://$(puppet config print server):4433/classifier-api/v1/nodes?limit=25&offset=25"; \ curl --cert "$cert" --cacert "$cacert" --key "$key" "$uri"
Steps to reproduce the behavior:
Add any other context about the problem here.
The text was updated successfully, but these errors were encountered:
Migrated issue to PUPDOC-5703
Sorry, something went wrong.
No branches or pull requests
Describe the Bug
https://www.puppet.com/docs/pe/2023.8/nodes_endpoint.html lists some URL examples. The text says
but also:
Which doesn't work out of the box.
Expected Behavior
A working copy and paste example would be awesome:
Steps to Reproduce
Steps to reproduce the behavior:
Environment
Additional Context
Add any other context about the problem here.
The text was updated successfully, but these errors were encountered: