Aqua Security components docker images are available in our private repository, which requires authentication. By default, the charts create a secret based on the values.yaml file.
- Create a new namespace named
aqua
:
kubectl create namespace aqua
- Create the image pull secret:
kubectl create secret docker-registry aqua-registry-secret --docker-server="registry.aquasec.com" --namespace aqua --docker-username="[email protected]" --docker-password="<Password>" --docker-email="[email protected]"
Note: in case you using the csp chart the chart can create the image pull secret automatically.
- After creating the secret manually, you should set the chart to not create one:
values.yaml
:
imageCredentials:
create: false