replicacount

package
v0.5.0 Latest Latest
Warning

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

Go to latest
Published: Jul 5, 2020 License: Apache-2.0 Imports: 5 Imported by: 2

Documentation

Overview

Package replicacount contains a kio.Filter implementation of the kustomize ReplicaCountTransformer.

Index

Examples

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Filter

type Filter struct {
	Replica types.Replica `json:"replica,omitempty" yaml:"replica,omitempty"`

	// FsSlice contains the FieldSpecs to locate the namespace field
	FsSlice types.FsSlice `json:"fieldSpecs,omitempty" yaml:"fieldSpecs,omitempty"`
}

Filter updates/sets replicas fields using the fieldSpecs

Example
err := kio.Pipeline{
	Inputs: []kio.Reader{&kio.ByteReader{Reader: bytes.NewBufferString(`
apiVersion: example.com/v1
kind: Foo
metadata:
  name: instance
spec:
  template:
    replicas: 5
---
apiVersion: example.com/v1
kind: Bar
metadata:
  name: instance
spec:
  template:
    replicas: 5
`)}},
	Filters: []kio.Filter{Filter{
		Replica: types.Replica{
			Count: 42,
			Name:  "instance",
		},
		FsSlice: types.FsSlice{
			{
				Path: "spec/template/replicas",
			},
		},
	}},
	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
spec:
  template:
    replicas: 42
---
apiVersion: example.com/v1
kind: Bar
metadata:
  name: instance
spec:
  template:
    replicas: 42

func (Filter) Filter

func (rc 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