Skip to content

Latest commit

 

History

History
26 lines (17 loc) · 809 Bytes

imagepullsecret.md

File metadata and controls

26 lines (17 loc) · 809 Bytes

Container registry credentials

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.

  1. Create a new namespace named aqua:
kubectl create namespace aqua
  1. Create the image pull secret:
kubectl create secret docker-registry aqua-registry-secret --docker-server="registry.aquasec.com" --namespace aqua --docker-username="user@example.com" --docker-password="<Password>" --docker-email="user@example.com"

Note: in case you using the csp chart the chart can create the image pull secret automatically.

  1. After creating the secret manually, you should set the chart to not create one:

values.yaml:

imageCredentials:
  create: false