Coralogix Private Key - MLKEREN/SOFTWARE-DOC-DEV-MIYA-KEREN GitHub Wiki
This section shows how to access your Coralogix private key and incorporate it into the integration of your choice.
Accessing your Coralogix Private Key
-
Access your Coralogix account.
-
Choose Data Flow in your toolbar, then API Keys in the dropdown menu.
-
On the API Keys page, copy the information in the Send Your Data field.
Incorporating your Coralogix Private Key into your Integration
All integrations require a secret
called integrations-privatekey
with the relevant private key under a secret key called PRIVATE_KEY
, inside the same namespace in which the helm chart is installed.
The secret key should read as follows:
kubectl create secret generic integrations-privatekey \
-n <the-namespace-of-the-release> \
--from-literal=PRIVATE_KEY=<private-key>
The created secret should look like this:
apiVersion: v1
data:
PRIVATE_KEY: <encrypted-private-key>
kind: Secret
metadata:
name: integrations-privatekey
namespace: <the-release-namespace>
type: Opaque