This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| --- | |
| apiVersion: eventing.triggermesh.io/v1alpha1 | |
| kind: RedisBroker | |
| metadata: | |
| labels: | |
| triggermesh.io/context: foo | |
| name: foo | |
| --- | |
| apiVersion: v1 | |
| data: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| --- | |
| apiVersion: eventing.triggermesh.io/v1alpha1 | |
| kind: RedisBroker | |
| metadata: | |
| labels: | |
| triggermesh.io/context: foo | |
| name: foo | |
| --- | |
| apiVersion: v1 | |
| data: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| apiVersion: tekton.dev/v1alpha1 | |
| kind: Task | |
| metadata: | |
| name: kaniko | |
| spec: | |
| params: | |
| - name: IMAGE | |
| description: The URI of the image to push, including registry host | |
| default: "" | |
| - name: DIRECTORY |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package main | |
| import ( | |
| "fmt" | |
| "log" | |
| "time" | |
| "github.com/ghodss/yaml" | |
| "github.com/knative/build-pipeline/pkg/apis/pipeline/v1alpha1" | |
| metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| apiVersion: build.knative.dev/v1alpha1 | |
| kind: BuildTemplate | |
| metadata: | |
| name: kaniko | |
| spec: | |
| parameters: | |
| - name: IMAGE | |
| description: The name of the image to push | |
| - name: DOCKERFILE | |
| description: Path to the Dockerfile to build. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package main | |
| import ( | |
| "fmt" | |
| "io" | |
| "mime/multipart" | |
| "net/http" | |
| "os" | |
| "gocv.io/x/gocv" |