Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Info

This article instructs on explains how to create a DaemonSet in order to install and run one sample of Cloudaware Breeze agent on every node of a cloud-managed Kubernetes cluster (Amazon EKS, Azure AKS, Google GKE). Linux only.

Table of Contents

Prerequisites

Amazon EKS: ensure that Cloudaware does have required permissions using this guide.

Azure AKS: ensure that Cloudaware does have required permissions using this guide.

Description

DaemonSet starts the container with Breeze agent installer. The container has two bind mounts:

...

The container runs two commands:

  1. Install the Breeze agent to the /opt directory.

  2. Run the simple daemon which runs the Breeze agent every 15 minutes.

...

Steps

1. Open Cloudaware GitHub repo with Kubernetes files. Clone the repo to your Github using the following command:

...

2. Log in to Cloudaware account . Select Admin under your username in the upper right cornerAdmin.

...

3. Locate Find Breeze in the list of DevOps Integrations. Click 1 Configured.

...

4. Select Linux* Agent version to download the Breeze agent.

...

Code Block
cd breeze-tools/kubernetes/daemonset && tar xzvf <DOWNLOADS_PATH>/breeze-agent.example.version.0.x86_64.linux.tgz

WHERE

breeze-agent.example.version.0.x86_64.linux.tgz should be replaced by the name of the dowloaded installer file (e.g. breeze-agent.1x11xx1xxxx11x11111x1x1x.11111111.0.x86_64.linux.tgz).

...

Code Block
docker push <CONTAINER_REGISTRY_HOSTNAME>/ca-breeze-ds:latest 

WHERE

<CONTAINER_REGISTRY_HOSTNAME> is a placeholder that needs to be replaced by your private container registry URI (e.g. 111111111111.dkr.ecr.us-east-1.amazonaws.com/breeze-agent).

...

9. To verify that the DaemonSet has been created, you may run the following command:

...