...

Source file src/sigs.k8s.io/kustomize/api/internal/konfig/builtinpluginconsts/images.go

Documentation: sigs.k8s.io/kustomize/api/internal/konfig/builtinpluginconsts

     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  

View as plain text