1 // Copyright 2019 The Kubernetes Authors. 2 // SPDX-License-Identifier: Apache-2.0 3 4 package builtinpluginconsts 5 6 const ( 7 imagesFieldSpecs = ` 8 images: 9 - path: spec/containers[]/image 10 create: true 11 - path: spec/initContainers[]/image 12 create: true 13 - path: spec/template/spec/containers[]/image 14 create: true 15 - path: spec/template/spec/initContainers[]/image 16 create: true 17 ` 18 ) 19