special_images.go 571 B

1234567891011121314
  1. package environment
  2. // Graph driver image store identifies images by the ID of their config.
  3. const DanglingImageIdGraphDriver = "sha256:0df1207206e5288f4a989a2f13d1f5b3c4e70467702c1d5d21dfc9f002b7bd43"
  4. // The containerd image store identifies images by the ID of their manifest/manifest list.
  5. const DanglingImageIdSnapshotter = "sha256:16d365089e5c10e1673ee82ab5bba38ade9b763296ad918bd24b42a1156c5456"
  6. func GetTestDanglingImageId(testEnv *Execution) string {
  7. if testEnv.UsingSnapshotter() {
  8. return DanglingImageIdSnapshotter
  9. }
  10. return DanglingImageIdGraphDriver
  11. }