File tree Expand file tree Collapse file tree 1 file changed +7
-3
lines changed
src/content/docs/docs/getting-started Expand file tree Collapse file tree 1 file changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -26,8 +26,8 @@ Agent container runs on each Kubernetes Node.
2626- ** Chart Repository:** ` https://helm.archodex.com `
2727- ** Chart Name:** ` archodex-agent `
2828- ** Values:**
29- - ** ` reportApiKey ` :** (Optional) The Archodex Report API Key value . When provided, the agent containers will report
30- observations periodically to your Archodex account.
29+ - ** ` reportApiKeySecretName ` :** (Optional) The Kubernetes secret containing your Archodex Report API Key. When
30+ provided, the agent containers will report observations periodically to your Archodex account.
3131 - ** ` serviceEndpoint ` :** (Optional) The Archodex Service Endpoint URL. Set this value to the location agent containers
3232 will send reports to when self-hosting. It must be resolvable within the cluster.
3333 - ** ` logReport ` :** (Optional) Set to ` 'false' ` to disable logging observations to agent container logs.
@@ -43,7 +43,11 @@ To install the Archodex Agent helm chart in your cluster using the helm CLI, fir
4343
4444``` sh
4545$ helm repo add archodex https://helm.archodex.com
46- $ helm install archodex-agent --set reportApiKey=< reportApiKey>
46+ # (Optional) Create a Kubernetes secret with your Report API Key to send
47+ # observations to your Archodex account
48+ $ kubectl create secret generic archodex-api-key --from-literal=value=' <reportApiKey>'
49+ # Install the agent (include --set flag to enable reporting, omit for logging-only mode)
50+ $ helm install archodex-agent archodex/archodex-agent --set reportApiKeySecretName=archodex-api-key
4751```
4852
4953## Observing Individual Workloads
You can’t perform that action at this time.
0 commit comments