secret_list
Retrieve and list all Kubernetes Secrets in a specified namespace using the k8s-pilot server. Simplify cluster resource management with centralized access to Secret details.
Instructions
List all Secrets in a given namespace.
Args: context_name: The Kubernetes context name namespace: The Kubernetes namespace
Returns: List of Secret basic information
Input Schema
Name | Required | Description | Default |
---|---|---|---|
context_name | Yes | ||
namespace | Yes |
Input Schema (JSON Schema)
{
"properties": {
"context_name": {
"title": "Context Name",
"type": "string"
},
"namespace": {
"title": "Namespace",
"type": "string"
}
},
"required": [
"context_name",
"namespace"
],
"title": "secret_listArguments",
"type": "object"
}