1
0
Fork 0
mirror of https://github.com/external-secrets/external-secrets.git synced 2024-12-14 11:57:59 +00:00
external-secrets/docs/examples-anchore-engine-credentials.md
Moritz Johner 61340a78ed
feat: anchore and jenkins guides with snippets (#682)
Co-authored-by: Lucas Severo Alves <lucassalves65@gmail.com>
Co-authored-by: Surjit Bains <surjit.bains@gmail.com>
2022-02-07 12:14:06 +01:00

31 lines
915 B
Markdown

# Getting started
Anchore Engine is an open-source project that provides a centralized service for inspection, analysis, and certification of container images. With Kubernetes, it also brings nice features like preventing unscanned images from being deployed into your clusters
## Installing with Helm
There are several parts of the installation that require credentials these being :-
ANCHORE_ADMIN_USERNAME
ANCHORE_ADMIN_PASSWORD
ANCHORE_DB_PASSWORD
db-url
db-user
postgres-password
Creating the following external secret ensure the credentials are drawn from the backend provider of choice. The example shown here works with Hashicorp Vault and AWS Secrets Manager providers.
#### Hashicorp Vault
``` yaml
{% include 'vault-anchore-engine-access-credentials-external-secret.yaml' %}
```
#### AWS Secrets Manager
``` yaml
{% include 'aws-anchore-engine-access-credentials-external-secret.yaml' %}
```