# 服务治理

本章介绍 Kubernetes 服务治理，包括容器应用管理、Service Mesh 以及 Operator 等。

目前最常用的是手动管理 Manifests，比如 kubernetes github 代码库就提供了很多的 manifest 示例

* <https://github.com/kubernetes/kubernetes/tree/master/cluster/addons>
* <https://github.com/kubernetes/examples>
* <https://github.com/kubernetes/contrib>
* <https://github.com/kubernetes/ingress-nginx>

手动管理的一个问题就是繁琐，特别是应用复杂并且 Manifest 比较多的时候，还需要考虑他们之间部署关系。Kubernetes 开源社区正在推动更易用的管理方法，如

* [一般准则](/apps/index/patterns.md)
* [滚动升级](/apps/index/service-rolling-update.md)
* [Helm](/apps/index/helm.md)
* [Operator](/apps/index/operator.md)
* [Service Mesh](/apps/index/service-mesh.md)
* [Linkerd](/apps/index/linkerd.md)
* [Istio](/apps/istio.md)
  * [安装](/apps/istio/istio-deploy.md)
  * [流量管理](/apps/istio/istio-traffic-management.md)
  * [安全管理](/apps/istio/istio-security.md)
  * [策略管理](/apps/istio/istio-policy.md)
  * [Metrics](/apps/istio/istio-metrics.md)
  * [排错](/apps/istio/istio-troubleshoot.md)
  * [社区](/apps/istio/istio-community.md)
* [Devops](/apps/devops.md)
  * [Draft](/apps/devops/draft.md)
  * [Jenkins X](/apps/devops/jenkinsx.md)
  * [Spinnaker](/apps/devops/spinnaker.md)
  * [Kompose](/apps/devops/kompose.md)
  * [Skaffold](/apps/devops/skaffold.md)
  * [Argo](/apps/devops/argo.md)
  * [Flux GitOps](/apps/devops/flux.md)


---

# 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://kubernetes.feisky.xyz/apps/index.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.
