- Home
- API MCP Server
- tools
- sites
- other
- Global Kubeconfig
Global Kubeconfig
Returns list of all global active kubeconfig minted for this site.
| Tool | Description |
|---|---|
f5xc-api-sites-global-kubeconfig-create | Revoke Global Kubeconfig. |
f5xc-api-sites-global-kubeconfig-list | List Global Kube Configs. |
Parameters
Section titled “Parameters”Path Parameters
Section titled “Path Parameters”| Parameter | Description | Example |
|---|---|---|
site | Site | - |
Example Usage
Section titled “Example Usage”Ask Claude to help you work with Global Kubeconfig resources:
Create Global Kubeconfig
Section titled “Create Global Kubeconfig”“Create a global-kubeconfig named ‘example’ in the ‘production’ namespace”
List Global Kubeconfigs
Section titled “List Global Kubeconfigs”“List all global-kubeconfigs in the ‘production’ namespace”
CURL Examples
Section titled “CURL Examples”# List resourcescurl -X GET "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/global_kubeconfigs" \ -H "Authorization: APIToken ${F5XC_API_TOKEN}" \ -H "Content-Type: application/json"
# Get specific resourcecurl -X GET "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/global_kubeconfigs/<name>" \ -H "Authorization: APIToken ${F5XC_API_TOKEN}" \ -H "Content-Type: application/json"
# Create resourcecurl -X POST "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/global_kubeconfigs" \ -H "Authorization: APIToken ${F5XC_API_TOKEN}" \ -H "Content-Type: application/json" \ -d @global_kubeconfig.json
# Delete resourcecurl -X DELETE "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/global_kubeconfigs/<name>" \ -H "Authorization: APIToken ${F5XC_API_TOKEN}"