Overview

    The first step is obviously to download and install Kuma on the platform of your choice. Different distributions will present different installation instructions that follow the best practices for the platform you have selected.

    Regardless of what platform you decide to use, the fundamental behavior of Kuma at runtime will not change across different distributions. These fundamentals are important to explore in order to understand what Kuma is and how it works.

    Installing Kuma on Kubernetes is fully automated, while installing Kuma on Linux requires the user to run the Kuma executables. Both ways are very simple, and can be explored from the .

    There are two main components of Kuma that are very important to understand:

    • Control Plane: Kuma is first and foremost a control-plane that will accept user input (you are the user) in order to create and configure Policies like , and in order to add services and configure their behavior within the Meshes you have created.
    • Data Plane Proxy: Kuma also bundles a data plane proxy implementation based on top of Envoy (opens new window). An instance of the data plane proxy runs alongside every instance of our services (or on every Kubernetes Pod as a sidecar container). This instance processes both incoming and outgoing requests for the service.

    Multi-Mesh: Kuma ships with multi-tenancy support since day one. This means you can create and configure multiple isolated Service Meshes from one control-plane. By doing so we lower the complexity and the operational cost of supporting multiple meshes. .

    Since Kuma bundles a data-plane in addition to the control-plane, we decided to call the executables kuma-cp and kuma-dp to differentiate them. Let’s take a look at all the executables that ship with Kuma:

    • kuma-cp: this is the main Kuma executable that runs the control plane (CP).
    • kuma-dp: this is the Kuma data-plane executable that - under the hood - invokes envoy.
    • envoy: this is the Envoy executable that we bundle for convenience into the archive.
    • kumactl: this is the the user CLI to interact with Kuma (kuma-cp) and its data.
    • kuma-prometheus-sd: this is a helper tool that enables native integration between Kuma and Prometheus. Thanks to it, Prometheus will be able to automatically find all dataplanes in your Mesh and scrape metrics out of them.
    • kuma-tcp-echo: this is a sample application that echos back the requests we are making, used for demo purposes.

    A minimal Kuma deployment involves one or more instances of the control-plane (kuma-cp), and one or more instances of the data-planes (kuma-dp) which will connect to the control-plane as soon as they startup. Kuma supports two modes:

    • universal: when it’s being installed on a Linux compatible machine like MacOS, Virtual Machine or Bare Metal. This also includes those instances where Kuma is being installed on a Linux base machine (ie, a Docker image).
    • kubernetes: when it’s being deployed - well - on Kubernetes.

    When running in Universal mode, Kuma will require a PostgreSQL database to store its state. The PostgreSQL database and schema will have to be initialized accordingly to the installation instructions:

    When running on Kubernetes, Kuma will store all of its state and configuration on the underlying Kubernetes API Server, therefore requiring no dependency to store the data. Kuma will automatically inject the dataplane proxy kuma-dp on any Pod that belongs to a Namespace that includes the following annotation:

    You can learn more about sidecar injection in the section on Dataplanes.

    Overview - 图3

    When deploying services in Kubernetes, you can determine which Mesh you want the service to be in by using the kuma.io/mesh: $MESH_NAME annotation. This annotation would be applied to a deployment like so:

    1. apiVersion: apps/v1
    2. kind: Deployment
    3. name: example-app
    4. namespace: kuma-example
    5. spec:
    6. ...
    7. metadata:
    8. ...
    9. annotations:
    10. # indicate to Kuma that this Pod will be in a mesh called 'new-mesh'
    11. kuma.io/mesh: new-mesh
    12. spec:
    13. containers:
    14. ...

    This kuma.io/mesh annotation also could be set in Namespace. In this case all Pods from the Namespace will belong to specified mesh.

    In a typical Kubernetes deployment scenario, every Pod is part of at least one matching Service. For example, in , the Pod for the Redis serviceOverview - 图5 (opens new window) has the following matchLabels:

    At least one of these labels must match the labels we define in our Service. The correct way to define the would be as follows:

    1. kind: Service
    2. metadata:
    3. name: redis
    4. namespace: kuma-demo
    5. labels:
    6. app: redis
    7. role: master

    Full CRD support: When using Kuma in Kubernetes mode you can create Policies with Kuma’s CRDs applied via kubectl.

    Pods with a Service

    For all Pods associated with a Kubernetes Service resource, Kuma control plane will automatically generate an annotation kuma.io/service: <name>_<namespace>_svc_<port> fetching <name>, and <port> from the that service. For example, the following resources will generate a dataplane tag kuma.io/service: echo-server_kuma-test_svc_80:

    Pods without a Service

    When a pod is spawned without exposing a particular service, it may not be associated with any Kubernetes Service resource. In that case, Kuma control plane will generate kuma.io/service: <name>_<namespace>_svc, where <name> and<namespace> are extracted from the Pod resource itself omitting the port. The following resource will generate a dataplane tag kuma.io/service: example-client_kuma-example_svc:

    1. apiVersion: apps/v1
    2. kind: Deployment
    3. metadata:
    4. name: echo-client
    5. labels:
    6. app: echo-client
    7. spec:
    8. selector:
    9. matchLabels:
    10. app: echo-client
    11. template:
    12. metadata:
    13. labels:
    14. app: echo-client
    15. spec:
    16. containers:
    17. - name: alpine
    18. image: "alpine"
    19. imagePullPolicy: IfNotPresent
    20. command: ["sh", "-c", "tail -f /dev/null"]

    In both cases these tags will be see in the CLI and GUI tools when inspecting the particular Pod dataplane.

    Once the kuma-cp process is started, it waits for to connect, while at the same time accepting user-defined configuration to start creating Service Meshes and configuring the behavior of those meshes via Kuma Policies.

    When we look at a typical Kuma installation, at a higher level it works like this:

    Overview - 图7

    When we unpack the underlying behavior, it looks like this: