Documentation ¶
Overview ¶
Example ¶
package main import ( "os" "knative.dev/reconciler-test/pkg/manifest" ) func main() { images := map[string]string{} cfg := map[string]interface{}{ "name": "foo", "namespace": "bar", "selectorKey": "baz", "selectorValue": "baf", } files, err := manifest.ExecuteLocalYAML(images, cfg) if err != nil { panic(err) } manifest.OutputYAML(os.Stdout, files) }
Output: apiVersion: v1 kind: Service metadata: name: foo namespace: bar spec: selector: baz: baf ports: - protocol: TCP port: 80 targetPort: 8080
Index ¶
Examples ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func AsRef ¶
func AsRef(name string) *duckv1.KReference
AsRef returns a KRef for a Service without namespace.
Types ¶
This section is empty.
Click to show internal directories.
Click to hide internal directories.