Skip to content

Latest commit

 

History

History
56 lines (46 loc) · 1.51 KB

private-image.md

File metadata and controls

56 lines (46 loc) · 1.51 KB

Running a Sample Private Image Scan

This example will perform a scan against an image located in a private registry.

Define the Resources

Create sample-image-source-scan.yaml and ensure you enter a valid docker config.json value in the secret:

---
apiVersion: v1
kind: Secret
metadata:
  name: image-secret
type: kubernetes.io/dockerconfigjson
data:
  .dockerconfigjson: <~/.docker/config.json base64 data>

---
apiVersion: scanning.apps.tanzu.vmware.com/v1alpha1
kind: ImageScan
metadata:
  name: sample-image-source-scan
spec:
  registry:
    image: <url of an image in a private registry>
  scanTemplate: private-image-scan-template

(Optional) Set Up a Watch

Before deploying, set up a watch in another terminal to see things process which will be quick.

watch kubectl get scantemplates,scanpolicies,sourcescans,imagescans,pods,jobs

For more information, refer to Observing and Troubleshooting.

Deploy the Resources

kubectl apply -f sample-image-source-scan.yaml

View the Scan Results

Once the scan has completed, perform:

kubectl describe imagescan sample-image-source-scan

and notice the Status.Conditions includes a Reason: JobFinished and Message: The scan job finished.

For more information, refer to Viewing and Understanding Scan Status Conditions.

Clean Up

kubectl delete -f sample-image-source-scan.yaml

View Vulnerability Reports

See Viewing Vulnerability Reports section