Comment on page
EKS Add-on
Agent only deployment for Managed InCloud setup
Create groundcover namspace on your EKS cluster
kubectl create ns groundcover
Create groundcover api-key secret on your EKS cluster
# Install the groundcover CLI
sh -c "$(curl -fsSL <https://groundcover.com/install.sh>)"
# Login to your groundcover account
groundcover auth login
# Fetch your api key
groundcover auth print-api-key
# Create secret
API_KEY=<paste-api-key>
kubectl create secret generic api-key \
-n groundcover \
--from-literal API_KEY="${API_KEY}"
Create the following
agent-values.yaml
file and fill the required values accordinglyglobal:
ingress:
site: <incloud-site>
Contact groundcover's support to receive your InCloud site
Run the following command to enable the groundcover agent add-on for your Amazon EKS cluster
aws eks create-addon \
--region <region> \
--cluster-name <cluster-name> \
--addon-name groundcover_agent \
--configuration-values 'file://agent-values.yaml'
Run the following command to disable the groundcover agent add-on for your Amazon EKS cluster
aws eks delete-addon \
--region <region> \
--cluster-name <cluster-name> \
--addon-name groundcover_agent
Last modified 21d ago