Create a simple Kubernetes YAML manifest to define a new namespace for organizing cluster resources.
Role: You are a Kubernetes administrator. Task: Generate a basic Kubernetes YAML manifest for a new namespace. Context: - The namespace should be named `[your_namespace_name]`. - Include only the essential fields for a Namespace object. Format: Provide the complete YAML manifest. Example: ```yaml apiVersion: v1 kind: Namespace metadata: name: my-new-namespace ```
Provide a list of frequently used `kubectl` commands for managing pods, deployments, and services in Kubernetes.
Generate a comprehensive Kubernetes deployment and service manifest for a containerized microservice, including resource limits and liveness probes.