sinkbinding

package
v0.28.0 Latest Latest
Warning

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

Go to latest
Published: Dec 13, 2021 License: Apache-2.0 Imports: 9 Imported by: 0

Documentation

Overview

Example (Full)
package main

import (
	"os"

	"knative.dev/reconciler-test/pkg/manifest"
)

func main() {
	images := map[string]string{}
	cfg := map[string]interface{}{
		"name":      "foo",
		"namespace": "bar",
		"ceOverrides": map[string]interface{}{
			"extensions": map[string]string{
				"ext1": "val1",
				"ext2": "val2",
			},
		},
		"sink": map[string]interface{}{
			"ref": map[string]string{
				"kind":       "AKind",
				"name":       "thesink",
				"apiVersion": "something.valid/v1",
			},
			"uri": "uri/parts",
		},
		"subject": map[string]interface{}{
			"kind":       "BKind",
			"apiVersion": "interesting/v1",
			"name":       "thesubject",
			"selectorMatchLabels": map[string]string{
				"match1": "this",
				"match2": "that",
			},
		},
	}

	files, err := manifest.ExecuteLocalYAML(images, cfg)
	if err != nil {
		panic(err)
	}

	manifest.OutputYAML(os.Stdout, files)
}
Output:

apiVersion: sources.knative.dev/v1
kind: SinkBinding
metadata:
  name: foo
  namespace: bar
spec:
  ceOverrides:
    extensions:
      ext1: val1
      ext2: val2
  sink:
    ref:
      apiVersion: something.valid/v1
      kind: AKind
      namespace: bar
      name: thesink
    uri: uri/parts
  subject:
    kind: BKind
    apiVersion: interesting/v1
    namespace: bar
    name: thesubject
    selector:
      matchLabels:
        match1: this
        match2: that
Example (Min)
package main

import (
	"os"

	"knative.dev/reconciler-test/pkg/manifest"
)

func main() {
	images := map[string]string{}
	cfg := map[string]interface{}{
		"name":      "foo",
		"namespace": "bar",
		"sink": map[string]interface{}{
			"ref": map[string]interface{}{
				"kind":       "AKind",
				"apiVersion": "something.valid/v1",
				"name":       "thesink",
			},
		},
		"subject": map[string]interface{}{
			"kind":       "BKind",
			"apiVersion": "interesting/v1",
			"name":       "thesubject",
		},
	}

	files, err := manifest.ExecuteLocalYAML(images, cfg)
	if err != nil {
		panic(err)
	}

	manifest.OutputYAML(os.Stdout, files)
}
Output:

apiVersion: sources.knative.dev/v1
kind: SinkBinding
metadata:
  name: foo
  namespace: bar
spec:
  sink:
    ref:
      apiVersion: something.valid/v1
      kind: AKind
      namespace: bar
      name: thesink
  subject:
    kind: BKind
    apiVersion: interesting/v1
    namespace: bar
    name: thesubject

Index

Examples

Constants

This section is empty.

Variables

This section is empty.

Functions

func Gvr

func Install

func Install(name string, sink *duckv1.Destination, subject *tracker.Reference, opts ...manifest.CfgFn) feature.StepFn

Install will create a SinkBinding resource, augmented with the config fn options.

func IsReady

func IsReady(name string, timing ...time.Duration) feature.StepFn

IsReady tests to see if a PingSource becomes ready within the time given.

func WithExtensions

func WithExtensions(extensions map[string]string) manifest.CfgFn

WithExtensions adds the ceOVerrides related config to a PingSource spec.

Types

This section is empty.

Jump to

Keyboard shortcuts

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