Get all pods in the specified namespace
Get all pods with issues in the specified namespace
Get all services in the specified namespace
Describe a specific pod
Get all namespaces in the cluster
Get all nodes in the cluster
Get all deployments in the specified namespace
Get all jobs in the specified namespace
Get all cronjobs in the specified namespace
Get all statefulsets in the specified namespace
Get all daemonsets in the specified namespace
Expose a resource as a new kubernetes service k8s_object can be pod (po), service (svc), replicationcontroller (rc), deployment (deploy), replicaset (rs) Type for this service: ClusterIP, NodePort, LoadBalancer, or ExternalName. Default is 'ClusterIP'.
Port forward a resource to the outside world k8s_object can be a pod, deployment or a service and it should be in the format pod/<name>, deployment/<name>, service/<name>
Get the logs of a specific pod
Get the events of a specific namespace
Create a Kubernetes deployment with specified name, image, namespace and replicas
Get the current Kubernetes context
List all available Kubernetes contexts
Switch to a specific Kubernetes context Args: context_name: The name of the Kubernetes context to switch to
Annotate a Kubernetes resource with the specified annotation Args: resource_type: Type of the resource (e.g., pod, service, deployment) resource_name: Name of the resource to annotate annotation: Annotation to add (e.g., key=value) namespace: Namespace of the resource
Remove an annotation from a Kubernetes resource Args: resource_type: Type of the resource (e.g., pod, service, deployment) resource_name: Name of the resource to remove the annotation from annotation_key: Key of the annotation to remove namespace: Namespace of the resource
Label a Kubernetes resource with the specified label Args: resource_type: Type of the resource (e.g., pod, service, deployment) resource_name: Name of the resource to label label: Label to add (e.g., key=value) namespace: Namespace of the resource
Remove a label from a Kubernetes resource Args: resource_type: Type of the resource (e.g., pod, service, deployment) resource_name: Name of the resource to remove the label from label_key: Key of the label to remove namespace: Namespace of the resource
Update a Kubernetes deployment with new replicas count and/or image Args: name: Name of the deployment to update namespace: Namespace of the deployment replicas: New number of replicas (optional) image: New container image (optional)
Delete a Kubernetes resource Args: resource_type: Type of the resource (e.g., pod, service, deployment,configmap,secret,ingress,statefulset,replicaset,damonset,newtorkpolicy,rolebinding,role,serviceaccount,job,cronjob) resource_name: Name of the resource to delete namespace: Namespace of the resource
No configuration needed. Connect to run tools.