...

Source file src/sigs.k8s.io/kustomize/api/types/replacementfield.go

Documentation: sigs.k8s.io/kustomize/api/types

     1  // Copyright 2022 The Kubernetes Authors.
     2  // SPDX-License-Identifier: Apache-2.0
     3  
     4  package types
     5  
     6  type ReplacementField struct {
     7  	Replacement `json:",inline,omitempty" yaml:",inline,omitempty"`
     8  	Path        string `json:"path,omitempty" yaml:"path,omitempty"`
     9  }
    10  

View as plain text