patchjson6902

package
v0.8.12-0...-8b0f5fa Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jul 28, 2021 License: Apache-2.0 Imports: 5 Imported by: 0

Documentation

Overview

Package namespace contains a kio.Filter implementation of the kustomize patchjson6902 transformer

Index

Examples

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Filter

type Filter struct {
	Patch string
	// contains filtered or unexported fields
}
Example
err := kio.Pipeline{
	Inputs: []kio.Reader{&kio.ByteReader{Reader: bytes.NewBufferString(`
apiVersion: example.com/v1
kind: Foo
metadata:
  name: instance
---
apiVersion: example.com/v1
kind: Bar
metadata:
  name: instance
  namespace: bar
`)}},
	Filters: []kio.Filter{
		Filter{
			Patch: `
- op: replace
  path: /metadata/namespace
  value: "ns"
`,
		},
	},
	Outputs: []kio.Writer{kio.ByteWriter{Writer: os.Stdout}},
}.Execute()
if err != nil {
	log.Fatal(err)
}
Output:

apiVersion: example.com/v1
kind: Foo
metadata:
  name: instance
  namespace: ns
---
apiVersion: example.com/v1
kind: Bar
metadata:
  name: instance
  namespace: ns

func (Filter) Filter

func (pf Filter) Filter(nodes []*yaml.RNode) ([]*yaml.RNode, error)

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL