Quickstart in Kubernetes Mode

    Kuma can run in both Kubernetes (Containers) and Universal mode (for VMs and Bare Metal). You are now looking at the quickstart for Kubernetes mode, but you can also check out the .

    In order to simulate a real-world scenario, we have built a simple demo application that resembles a marketplace. In this tutorial we will:

    You can also access the Kuma marketplace demo repository to try more features and policies in addition to the ones described in this quickstart.

    Community Chat: If you need help, you can chat with the Community where you can ask questions, contribute back to Kuma and send feedback.

    First, Kuma must be in your Kubernetes cluster.

    To install the marketplace demo application you can run:

    This will provision a new namespace with all the services required to run the application, in this case:

    • frontend: the entry-point service that serves the web application.
    • backend: the underlying backend component that powers the frontend service.
    • postgres: the database that stores the marketplace items.
    • redis: the backend storage for items reviews.

    You can then access the application by executing:

    1. $ kubectl port-forward svc/frontend -n kuma-demo 8080:8080

    And navigate to 127.0.0.1:8080Kubernetes Quickstart - 图2 (opens new window).

    See the connected dataplanes

    Since the demo application already comes with the kuma.io/sidecar-injection annotation enabled on the kuma-demo namespace, Kuma already knows that it needs to automatically inject a sidecar proxy to every Kubernetes deployment in the default resource:

    1. apiVersion: v1
    2. kind: Namespace
    3. metadata:
    4. name: kuma-demo
    5. namespace: kuma-demo
    6. annotations:
    7. kuma.io/sidecar-injection: enabled

    You can visualize the sidecars proxies that have connected to Kuma by running:

    Kuma ships with a read-only GUI that you can use to retrieve Kuma resources. By default the GUI listens on the API port and defaults to :5681/gui.

    To access Kuma we need to first port-forward the API service with:

    1. $ kubectl port-forward svc/kuma-control-plane -n kuma-system 5681:5681

    Kuma ships with a read-only HTTP API that you can use to retrieve Kuma resources.

    By default the HTTP API listens on port 5681. To access Kuma we need to first port-forward the API service with:

    And then you can navigate to 127.0.0.1:5681/meshes/default/dataplanes (opens new window) to see the connected dataplanes.

    You can use the kumactl CLI to perform read-only operations on Kuma resources. The kumactl binary is a client to the Kuma HTTP API, you will need to first port-forward the API service with:

      and then run kumactl, for example:

      1. MESH NAME TAGS
      2. default postgres-master-78d9c9c8c9-n8zjk.kuma-demo app=postgres pod-template-hash=78d9c9c8c9 protocol=tcp service=postgres_kuma-demo_svc_5432
      3. default kuma-demo-backend-v0-6fdb79ddfd-dkrp4.kuma-demo app=kuma-demo-backend env=prod pod-template-hash=6fdb79ddfd protocol=http service=backend_kuma-demo_svc_3001 version=v0
      4. default kuma-demo-app-68758d8d5d-dddvg.kuma-demo app=kuma-demo-frontend env=prod pod-template-hash=68758d8d5d protocol=http service=frontend_kuma-demo_svc_8080 version=v8
      5. default redis-master-657c58c859-5wkb4.kuma-demo app=redis pod-template-hash=657c58c859 protocol=tcp role=master service=redis_kuma-demo_svc_6379 tier=backend

      You can configure kumactl to point to any remote kuma-cp instance by running:

      1. $ kumactl config control-planes add --name=XYZ --address=http://{address-to-kuma}:5681

      By default the network is unsecure and not encrypted. We can change this with Kuma by enabling the policy to provision a dynamic Certificate Authority (CA) on the default Mesh resource that will automatically assign TLS certificates to our services (more specifically to the injected dataplane proxies running alongside the services).

      We can enable Mutual TLS with a builtin CA backend by executing:

      Once Mutual TLS has been enabled, Kuma will not allow traffic to flow freely across our services unless we explicitly create a policy that describes what services can be consumed by other services. You can try to make requests to the demo application at 127.0.0.1:8080/Kubernetes Quickstart - 图5 (opens new window) and you will notice that they will not work.

      In a live environment we suggest to setup the Traffic Permission policies prior to enabling Mutual TLS in order to avoid unexpected interruptions of the service-to-service traffic.

      We can setup a very permissive policy that allows all traffic to flow in our application in an encrypted way with the following command:

      1. $ echo "apiVersion: kuma.io/v1alpha1
      2. kind: TrafficPermission
      3. mesh: default
      4. metadata:
      5. namespace: default
      6. name: all-traffic-allowed
      7. spec:
      8. sources:
      9. - match:
      10. kuma.io/service: '*'
      11. destinations:
      12. - match:
      13. kuma.io/service: '*'" | kubectl apply -f -

      By doing so every request we now make on our demo application at is not only working again, but it is automatically encrypted and secure.

      As usual, you can visualize the Mutual TLS configuration and the Traffic Permission policies we have just applied via the GUI, the HTTP API or .

      With Traffic Metrics we can leverage Prometheus and Grafana to visualize powerful dashboards that show the overall traffic activity of our application and the status of the Service Mesh.

      To enable traffic metrics we need to first install Prometheus and Grafana:

      1. $ kumactl install metrics | kubectl apply -f -

      This will provision a new kuma-metrics namespace with all the services required to run our metric collection and visualization. Please note that this operation can take a while as Kubernetes downloads all the required containers.

      Once we have installed the required dependencies, we can now go ahead and enable metrics on our Mesh object by executing:

      1. kind: Mesh
      2. metadata:
      3. name: default
      4. spec:
      5. mtls:
      6. enabledBackend: ca-1
      7. backends:
      8. - name: ca-1
      9. type: builtin
      10. metrics:
      11. enabledBackend: prometheus-1
      12. backends:
      13. - name: prometheus-1
      14. type: prometheus" | kubectl apply -f -

      This will enable the prometheus metrics backend on the default and automatically collect metrics for all of our traffic.

      Now let’s go ahead and generate some traffic - to populate our charts - by using the demo application!

      You can also generate some artificial traffic with the following command to save some clicks:

      To visualize the traffic we can now expose the Grafana dashboard with:

      1. $ kubectl port-forward svc/grafana -n kuma-metrics 3000:80

      and then access the Grafana dashboard at 127.0.0.1:3000Kubernetes Quickstart - 图7 (opens new window) with default credentials for both the username (admin) and the password (admin).

      Kuma automatically installs three dashboard that are ready to use:

      • Kuma Mesh: to visualize the status of the overall Mesh.
      • Kuma Dataplane: to visualize metrics for a single individual dataplane.
      • Kuma Service to Service: to visualize traffic metrics for our services.

      You can now explore the dashboards and see the metrics being populated over time.

      Next steps

      Protip: Use on Twitter to chat about Kuma.

      Congratulations! You have completed the quickstart for Kubernetes, but there is so much more that you can do with Kuma:

      • Explore the Policies available to govern and orchestrate your service traffic.
      • Read the to learn about all the capabilities of Kuma.
      • Chat with us at the official Kuma Slack for questions or feedback.