- Expose a workload
- Expose and secure a workload
- Security
- Cannot connect to a service exposed by an APIRule
- External DNS management
Configure Runtime Agent with Compass
This tutorial shows how to configure Runtime Agent with Compass.
Prerequisites
- Compass
- Runtime connected to Compass 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 Compass.
Steps
To configure Runtime Agent with Compass, 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:
Click to copy
cat <<EOF | kubectl -n kyma-system apply -f -apiVersion: v1data: CONNECTOR_URL: $({CONNECTOR_URL}) RUNTIME_ID: $({RUNTIME_ID}) TENANT: $({TENANT_ID}) TOKEN: $({ONE_TIME_TOKEN})kind: Secretmetadata: name: compass-agent-configuration namespace: kyma-systemEOF