10.2.2 Creating a Kubernetes Secret for ELK
- Create a Kubernetes secret for Elasticsearch using the API Key or Password:
- If ELK uses an API Key for
authentication:
For example:kubectl create secret generic elasticsearch-pw-elastic -n <domain_namespace> --from-literal password=<ELK_APIKEY>
The output will look similar to the following:kubectl create secret generic elasticsearch-pw-elastic -n oudns --from-literal password=<ELK_APIKEY>
secret/elasticsearch-pw-elastic created
- If ELK uses a password for
authentication:
For example:kubectl create secret generic elasticsearch-pw-elastic -n <domain_namespace> --from-literal password=<ELK_PASSWORD>
The output will look similar to the following:kubectl create secret generic elasticsearch-pw-elastic -n oudns --from-literal password=<ELK_PASSWORD>
secret/elasticsearch-pw-elastic created
Note:
It is recommended that the ELK Stack is created with authentication enabled. If no authentication is enabled you may create a secret using the values above. - If ELK uses an API Key for
authentication:
- Check that the
dockercred
secret that was created previously in Create a Kubernetes Secret for Cronjob Images exists:
For example:kubectl get secret -n <domain_namespace> | grep dockercred
The output will look similar to the following:kubectl get secret -n oudns | grep dockercred
If the secret does not exist, create it as per Create a Kubernetes Secret for Cronjob Images.dockercred kubernetes.io/dockerconfigjson 1 149m