Configure Runtime Agent with UCL ​
This tutorial shows how to configure Runtime Agent with UCL.
Prerequisites ​
- UCL (previously called Compass)
- Kyma runtime connected to UCL and the Runtime ID
- Connector URL
- One-time token from the Connector
- Tenant ID
NOTE
Learn also about the parameters required to initialize the connection between Runtime Agent and UCL.
Steps ​
To configure Runtime Agent with UCL, you need to create a Secret in the Runtime Agent namespace and specify it in the Runtime Agent Deployment. The default Secret is compass-agent-configuration. To create the Secret, run:
bash
cat <<EOF | kubectl -n kyma-system apply -f -
apiVersion: v1
data:
CONNECTOR_URL: $({CONNECTOR_URL})
RUNTIME_ID: $({RUNTIME_ID})
TENANT: $({TENANT_ID})
TOKEN: $({ONE_TIME_TOKEN})
kind: Secret
metadata:
name: compass-agent-configuration
namespace: kyma-system
EOF