cldkctl_k8s_pod_edit
Edit Kubernetes pod configurations using YAML/JSON by specifying project ID, namespace, and pod name. Streamline updates and modifications in Kubernetes environments.
Instructions
Call the cldkctl_k8s_pod_edit endpoint
Input Schema
Name | Required | Description | Default |
---|---|---|---|
name | Yes | Pod name | |
namespace | Yes | Namespace | |
project_id | Yes | Project ID | |
spec | Yes | Pod spec (YAML/JSON) |
Input Schema (JSON Schema)
{
"properties": {
"name": {
"description": "Pod name",
"type": "string"
},
"namespace": {
"description": "Namespace",
"type": "string"
},
"project_id": {
"description": "Project ID",
"type": "string"
},
"spec": {
"description": "Pod spec (YAML/JSON)",
"type": "object"
}
},
"required": [
"project_id",
"namespace",
"name",
"spec"
],
"type": "object"
}