# Kubernetes

Kubernetes (often abbreviated as K8s) is an open-source container orchestration platform originally developed by Google and now maintained by the Cloud Native Computing Foundation (CNCF). It automates the deployment, scaling, and management of containerized applications across clusters of machines.

Kubernetes organizes containers into pods (the smallest deployable units), manages them through deployments and services, and provides built-in mechanisms for load balancing, service discovery, storage orchestration, automated rollouts and rollbacks, and self-healing. Configuration is declarative, typically defined in YAML files that describe the desired state of the system.

While serverless platforms abstract away infrastructure management entirely, Kubernetes and serverless can be complementary. Some organizations run backend microservices on Kubernetes while using a serverless API gateway to handle edge routing, authentication, and rate limiting. Kubernetes-based API gateway solutions like Kong and Ambassador also exist for teams that prefer to manage their gateway infrastructure within their Kubernetes clusters.


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.serverlessapigateway.com/glossary/k/kubernetes.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
