// Module included in the following assemblies: // // * backup_and_restore/application_backup_and_restore/installing/installing-oadp-aws.adoc :_mod-docs-content-type: PROCEDURE [id="oadp-configuring-imagepullpolicy_{context}"] = Overriding the imagePullPolicy setting in the DPA [role="_abstract"] In {oadp-short} 1.4.0 or earlier, the Operator sets the `imagePullPolicy` field of the Velero and node agent pods to `Always` for all images. In {oadp-short} 1.4.1 or later, the Operator first checks if each image has the `sha256` or `sha512` digest and sets the `imagePullPolicy` field accordingly: * If the image has the digest, the Operator sets `imagePullPolicy` to `IfNotPresent`. * If the image does not have the digest, the Operator sets `imagePullPolicy` to `Always`. You can also override the `imagePullPolicy` field by using the `spec.imagePullPolicy` field in the Data Protection Application (DPA). .Prerequisites * You have installed the {oadp-short} Operator. .Procedure * Configure the `spec.imagePullPolicy` field in the DPA as shown in the following example: + .Example Data Protection Application [source,yaml] ---- apiVersion: oadp.openshift.io/v1alpha1 kind: DataProtectionApplication metadata: name: test-dpa namespace: openshift-adp spec: backupLocations: - name: default velero: config: insecureSkipTLSVerify: "true" profile: "default" region: s3ForcePathStyle: "true" s3Url: credential: key: cloud name: cloud-credentials default: true objectStorage: bucket: prefix: velero provider: aws configuration: nodeAgent: enable: true uploaderType: kopia velero: defaultPlugins: - openshift - aws - kubevirt - csi imagePullPolicy: Never # <1> ---- <1> Specify the value for `imagePullPolicy`. In this example, the `imagePullPolicy` field is set to `Never`.