Annotating Kubernetes Services for humans
Have you ever been asked to troubleshoot a failing Kubernetes service and struggled to find basic information about it such as the source repository and owner?
One of the problems as Kubernetes applications grow is the proliferation of services. As the number of services grows, developers start to specialize working with specific ones. When it comes to troubleshooting, however, developers need to be able to find the source, understand the service and dependencies, and chat with the owning team for any service.
Human service discovery
Troubleshooting always begins with information gathering. While much attention has been paid to centralizing machine data (e.g., logs, metrics), much less attention has been given to the human aspect of service discovery. Who owns a particular service? What Slack channel does the team work on? Where is the source for the service? What issues are currently known and being tracked?
Kubernetes annotations
Kubernetes annotations are designed to solve exactly this problem. Often overlooked, Kubernetes annotations are designed to add metadata to Kubernetes objects. The Kubernetes documentation says annotations can “attach arbitrary non-identifying metadata to objects.” This means that annotations should be used for attaching metadata that is external to Kubernetes. As such, annotations can contain any type of data.
This is in contrast to labels, which are designed for uses internal to Kubernetes. Label structure and values are constrained so they can be efficiently used by Kubernetes.
Kubernetes annotations in action
Here is an example. Imagine you have a Service called quote
. You can do the following to add an annotation to it:
kubectl annotate service quote a8r.io/owner=”@sally”
We've just added an annotation called a8r.io/owner
with the value of @sally. Now, we can use kubectl describe
to get the information:
$ kubectl describe service quoteName: quoteNamespace: defaultLabels: <none>Annotations: a8r.io/owner: @sallySelector: app=quoteType: ClusterIPIP: 10.109.142.131Port: http 80/TCPTargetPort: 8080/TCPEndpoints: <none>Session Affinity: NoneEvents: <none>
You can also add the same annotation via your Service's YAML:
apiVersion: v1kind: Servicemetadata:name: quoteannotations:a8r.io/owner: @sallyspec:selector:app: quoteports:- protocol: TCPport: 80targetPort: 8080
A Convention for Annotations
Adopting a common convention for annotations ensures consistency and understandability. Typically, you’ll want to attach the annotation to the Service object, as Services are the high-level resource that maps most clearly to a team’s responsibility. Namespacing your annotations is also very important. Here is one set of conventions, also documented at a8r.io:
Annotation | Description |
---|---|
a8r.io/description | Unstructured text description of the service for humans. |
a8r.io/owner | SSO username (GitHub), email address (linked to GitHub account), or unstructured owner description. |
a8r.io/chat | Slack channel, or link to external chat system. |
a8r.io/bugs | Link to external bug tracker. |
a8r.io/logs | Link to external log viewer. |
a8r.io/documentation | Link to external project documentation. |
a8r.io/repository | Link to external VCS repository. |
a8r.io/support | Link to external support center. |
a8r.io/runbook | Link to external project runbook. |
a8r.io/incidents | Link to external incident dashboard. |
a8r.io/uptime | Link to external uptime dashboard. |
a8r.io/performance | Link to external performance dashboard. |
a8r.io/dependencies | Unstructured text describing the service dependencies for humans. |
a8r.io/ignore | When present with any value, prevent the service from appearing in the Service Catalog. |
Visualizing annotations: Service catalogs
As the number of microservices and annotations proliferate, running kubectl describe
can get tedious and requires every developer to have some direct access to the cluster.
Recently, service catalogs have provided greater visibility in the Kubernetes ecosystem. Popularized by tools such as Shopify's ServicesDB and Spotify's System Z, service catalogs are internally-facing developer portals that present critical information about microservices.
Note that these service catalogs should not be confused with the Kubernetes Service Catalog project. Built on the Open Service Broker API, the Kubernetes Service Catalog enables Kubernetes operators to plug different services (e.g., databases) into their cluster.
Annotate your services now and thank yourself later
Much like implementing observability within microservice systems, you often don’t realize that you need human service discovery until it’s too late. Don't wait until something is on fire in production to start wishing that you had documented who owns any particular service.
There's enormous benefits to building an effective “version 0” service: a dancing skeleton application with a thin slice of complete functionality that can be deployed to production with a minimal yet effective continuous delivery pipeline.
Adding service annotations should be an essential part of your “version 0” for all of your services. Add them now, and you’ll thank yourself later.