Workload identity and resolution
Otterize supports two approaches for specifying workload identity in Kubernetes: explicit and implicit.
Explicitly specifying Kind
This approach requires specifying both the name, possibly with a namespace, and the kind of the service in the intent, ensuring precise identification.
apiVersion: k8s.otterize.com/v2beta1
kind: ClientIntents
metadata:
name: client
namespace: otterize-tutorial-istio-mapping
spec:
workload:
name: client
kind: Deployment
targets:
- kubernetes:
name: server.example-ns
kind: Service
# This is equivalent to the above target
- service:
name: server.example-ns
In the YAML above, the service client
is a Deployment
in the namespace otterize-tutorial-istio-mapping
, and it intends to call the service server
is a Service
in the namespace example-ns
.
Kubernetes workload identity resolution
How do Otterize operators decide what is the identity of the workload that runs within the pod? The algorithm is as follows:
- If the pod has an
intents.otterize.com/workload-name
annotation, its value is used as the service name. (You can change which annotation is used by settingglobal.serviceNameOverrideAnnotationName
— see the docs.) This allows developers and automations to explicitly name services, if needed. The value must not contain a period.
as a period is used to separate service name and namespace, when the service is from a different namespace:svcname.namespace
. - If there is no
intents.otterize.com/workload-name
annotation, a recursive look-up is performed for the Kubernetes resource owner of the pod, until the root resource is reached, and its name is used as the service name. For example, if you have aDeployment
namedcheckoutservice
, which then creates and owns aReplicaSet
, which then creates and owns aPod
, then the service name for that pod ischeckoutservice
- same as the name of theDeployment
. This is intended to capture the likely-more-meaningful "human name" of the service. If the resulting service name contains a period.
, it is replaced with an underscore_
. Periods are used in service names to denote namespaces, e.g.svcname.namespace
.