imagePullSecrets

Description

The imagePullSecrets property specifies the name(s) of Kubernetes Secret objects in the cluster which will provide the Docker registry credentials to pull any images needed during reconciliation and deployment. The Secrets must exist in the same namespace as the DataPowerService.

This optional property can be used to specify credentials when pulling operand images from a private registry, or when not following the ibm-entitlement-key process in Pulling images from the IBM Entitled Registry.

Example

apiVersion: datapower.ibm.com/v1beta3
kind: DataPowerService
metadata:
  name: example-dpservice
spec:
  imagePullSecrets:
  - datapower-cred-one
  - datapower-cred-two
  ...