...
Table of Contents |
---|
Breeze Agent Setup
1. Download the Breeze agent. Log in to Cloudaware account → Admin → Breeze . Select Admin under your username in the upper right corner.
...
2. Locate Breeze in the list of DevOps Integrations → 1 Configured → .
3. Select Linux* Agent version to download the Breeze agent.
...
*This integration is for Linux only.
24. Clone or download the breeze-tools repository:
Code Block |
---|
# git clone https://github.com/cloudaware/breeze-tools.git |
35. Change the working directory to kubernetes
, put archive with Breeze agent installer and then extract it:
Code Block |
---|
# cd breeze-tools/kubernetes/ # cp /path/to/agent/distro/breeze-agent.x86_64.linux.tgz . # tar xf breeze-agent.x86_64.linux.tgz |
46. Build docker images:
Code Block |
---|
# docker build -t breeze-agent-init -f Dockerfile.breeze-agent-init . # docker build -t breeze-agent -f Dockerfile.breeze-agent . |
...
Code Block |
---|
# docker images "breeze*" |
57. Create two repositories named ‘breeze-agent' and 'breeze-agent-init’ in the private Docker registry.
68. Push the created images to the PRIVATE Docker container registry:
...
- where CONTAINER_REGISTRY_URI
- the fully qualified path to the private registry with the repositories
79. Open file breeze-agent-deployment-eks.yaml
(for EKS) or breeze-agent-deployment-aks.yaml
(for AKS) in the text editor and replace the following placeholders with proper values:
CONTAINER_REGISTRY_URI
- same as in the previous stepIMAGE_PULL_SECRET_NAME
- name of the Kubernetes secret containing auth data of the private registry
810. Apply the configuration:
...