Skip to content

Exec User

Run supported exec command on node with lower privilege.

ToolDescription
f5xc-api-support-exec-user-createExecUser
ParameterDescriptionExample
namespaceNamespace-
nodeNode Name-
siteSite Name-

Ask Claude to help you work with Exec User resources:

“Create a exec-user named ‘example’ in the ‘production’ namespace”

Terminal window
# List resources
curl -X GET "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/exec_users" \
-H "Authorization: APIToken ${F5XC_API_TOKEN}" \
-H "Content-Type: application/json"
# Get specific resource
curl -X GET "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/exec_users/<name>" \
-H "Authorization: APIToken ${F5XC_API_TOKEN}" \
-H "Content-Type: application/json"
# Create resource
curl -X POST "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/exec_users" \
-H "Authorization: APIToken ${F5XC_API_TOKEN}" \
-H "Content-Type: application/json" \
-d @exec_user.json
# Delete resource
curl -X DELETE "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/exec_users/<name>" \
-H "Authorization: APIToken ${F5XC_API_TOKEN}"