-
Notifications
You must be signed in to change notification settings - Fork 893
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* [WIP] initial checkin of tektoncd pipelines * add istio overlay * snapshot * update docker target * remove exposed docker key * remove secret key * update secret * snapshot * snapshot * change to right directory * set workingdir for kfctl generate * use a pullrequest * set configPath to url * fix configPath * added client-secret, kubeflow pv * parameterizing pipelines and tasks * add unit tests * only checkin tektoncd install * remove pipeline related tests * rebased from main
- Loading branch information
1 parent
fb3cc85
commit 83f4041
Showing
51 changed files
with
1,974 additions
and
405 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,155 @@ | ||
--- | ||
apiVersion: apiextensions.k8s.io/v1beta1 | ||
kind: CustomResourceDefinition | ||
metadata: | ||
name: clustertasks.tekton.dev | ||
spec: | ||
group: tekton.dev | ||
names: | ||
categories: | ||
- all | ||
- tekton-pipelines | ||
kind: ClusterTask | ||
plural: clustertasks | ||
scope: Cluster | ||
subresources: | ||
status: {} | ||
version: v1alpha1 | ||
--- | ||
apiVersion: apiextensions.k8s.io/v1beta1 | ||
kind: CustomResourceDefinition | ||
metadata: | ||
name: images.caching.internal.knative.dev | ||
spec: | ||
group: caching.internal.knative.dev | ||
names: | ||
categories: | ||
- all | ||
- knative-internal | ||
- caching | ||
kind: Image | ||
plural: images | ||
shortNames: | ||
- img | ||
singular: image | ||
scope: Namespaced | ||
subresources: | ||
status: {} | ||
version: v1alpha1 | ||
--- | ||
apiVersion: apiextensions.k8s.io/v1beta1 | ||
kind: CustomResourceDefinition | ||
metadata: | ||
name: pipelines.tekton.dev | ||
spec: | ||
group: tekton.dev | ||
names: | ||
categories: | ||
- all | ||
- tekton-pipelines | ||
kind: Pipeline | ||
plural: pipelines | ||
scope: Namespaced | ||
subresources: | ||
status: {} | ||
version: v1alpha1 | ||
--- | ||
apiVersion: apiextensions.k8s.io/v1beta1 | ||
kind: CustomResourceDefinition | ||
metadata: | ||
name: pipelineruns.tekton.dev | ||
spec: | ||
additionalPrinterColumns: | ||
- JSONPath: .status.conditions[?(@.type=="Succeeded")].status | ||
name: Succeeded | ||
type: string | ||
- JSONPath: .status.conditions[?(@.type=="Succeeded")].reason | ||
name: Reason | ||
type: string | ||
- JSONPath: .status.startTime | ||
name: StartTime | ||
type: date | ||
- JSONPath: .status.completionTime | ||
name: CompletionTime | ||
type: date | ||
group: tekton.dev | ||
names: | ||
categories: | ||
- all | ||
- tekton-pipelines | ||
kind: PipelineRun | ||
plural: pipelineruns | ||
shortNames: | ||
- pr | ||
- prs | ||
scope: Namespaced | ||
subresources: | ||
status: {} | ||
version: v1alpha1 | ||
--- | ||
apiVersion: apiextensions.k8s.io/v1beta1 | ||
kind: CustomResourceDefinition | ||
metadata: | ||
name: pipelineresources.tekton.dev | ||
spec: | ||
group: tekton.dev | ||
names: | ||
categories: | ||
- all | ||
- tekton-pipelines | ||
kind: PipelineResource | ||
plural: pipelineresources | ||
scope: Namespaced | ||
subresources: | ||
status: {} | ||
version: v1alpha1 | ||
--- | ||
apiVersion: apiextensions.k8s.io/v1beta1 | ||
kind: CustomResourceDefinition | ||
metadata: | ||
name: tasks.tekton.dev | ||
spec: | ||
group: tekton.dev | ||
names: | ||
categories: | ||
- all | ||
- tekton-pipelines | ||
kind: Task | ||
plural: tasks | ||
scope: Namespaced | ||
subresources: | ||
status: {} | ||
version: v1alpha1 | ||
--- | ||
apiVersion: apiextensions.k8s.io/v1beta1 | ||
kind: CustomResourceDefinition | ||
metadata: | ||
name: taskruns.tekton.dev | ||
spec: | ||
additionalPrinterColumns: | ||
- JSONPath: .status.conditions[?(@.type=="Succeeded")].status | ||
name: Succeeded | ||
type: string | ||
- JSONPath: .status.conditions[?(@.type=="Succeeded")].reason | ||
name: Reason | ||
type: string | ||
- JSONPath: .status.startTime | ||
name: StartTime | ||
type: date | ||
- JSONPath: .status.completionTime | ||
name: CompletionTime | ||
type: date | ||
group: tekton.dev | ||
names: | ||
categories: | ||
- all | ||
- tekton-pipelines | ||
kind: TaskRun | ||
plural: taskruns | ||
shortNames: | ||
- tr | ||
- trs | ||
scope: Namespaced | ||
subresources: | ||
status: {} | ||
version: v1alpha1 |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
apiVersion: kustomize.config.k8s.io/v1beta1 | ||
kind: Kustomization | ||
resources: | ||
- crds.yaml | ||
- namespace.yaml | ||
namespace: kubeflow |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
apiVersion: v1 | ||
kind: Namespace | ||
metadata: | ||
name: tekton-pipelines |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
apiVersion: rbac.authorization.k8s.io/v1beta1 | ||
kind: ClusterRoleBinding | ||
metadata: | ||
name: tekton-pipelines-controller-admin | ||
roleRef: | ||
apiGroup: rbac.authorization.k8s.io | ||
kind: ClusterRole | ||
name: tekton-pipelines-admin | ||
subjects: | ||
- kind: ServiceAccount | ||
name: tekton-pipelines-controller |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,162 @@ | ||
--- | ||
apiVersion: rbac.authorization.k8s.io/v1 | ||
kind: ClusterRole | ||
metadata: | ||
name: tekton-pipelines-admin | ||
rules: | ||
- apiGroups: | ||
- "" | ||
resources: | ||
- pods | ||
- pods/log | ||
- namespaces | ||
- secrets | ||
- events | ||
- serviceaccounts | ||
- configmaps | ||
- persistentvolumeclaims | ||
verbs: | ||
- get | ||
- list | ||
- create | ||
- update | ||
- delete | ||
- patch | ||
- watch | ||
- apiGroups: | ||
- apps | ||
resources: | ||
- deployments | ||
verbs: | ||
- get | ||
- list | ||
- create | ||
- update | ||
- delete | ||
- patch | ||
- watch | ||
- apiGroups: | ||
- apps | ||
resources: | ||
- deployments/finalizers | ||
verbs: | ||
- get | ||
- list | ||
- create | ||
- update | ||
- delete | ||
- patch | ||
- watch | ||
- apiGroups: | ||
- admissionregistration.k8s.io | ||
resources: | ||
- mutatingwebhookconfigurations | ||
verbs: | ||
- get | ||
- list | ||
- create | ||
- update | ||
- delete | ||
- patch | ||
- watch | ||
- apiGroups: | ||
- tekton.dev | ||
resources: | ||
- tasks | ||
- clustertasks | ||
- taskruns | ||
- pipelines | ||
- pipelineruns | ||
- pipelineresources | ||
verbs: | ||
- get | ||
- list | ||
- create | ||
- update | ||
- delete | ||
- patch | ||
- watch | ||
- apiGroups: | ||
- tekton.dev | ||
resources: | ||
- taskruns/finalizers | ||
- pipelineruns/finalizers | ||
verbs: | ||
- get | ||
- list | ||
- create | ||
- update | ||
- delete | ||
- patch | ||
- watch | ||
- apiGroups: | ||
- tekton.dev | ||
resources: | ||
- tasks/status | ||
- clustertasks/status | ||
- taskruns/status | ||
- pipelines/status | ||
- pipelineruns/status | ||
- pipelineresources/status | ||
verbs: | ||
- get | ||
- list | ||
- create | ||
- update | ||
- delete | ||
- patch | ||
- watch | ||
- apiGroups: | ||
- policy | ||
resourceNames: | ||
- tekton-pipelines | ||
resources: | ||
- podsecuritypolicies | ||
verbs: | ||
- use | ||
--- | ||
apiVersion: rbac.authorization.k8s.io/v1 | ||
kind: ClusterRole | ||
metadata: | ||
labels: | ||
rbac.authorization.k8s.io/aggregate-to-admin: "true" | ||
rbac.authorization.k8s.io/aggregate-to-edit: "true" | ||
name: tekton-aggregate-edit | ||
rules: | ||
- apiGroups: | ||
- tekton.dev | ||
resources: | ||
- tasks | ||
- taskruns | ||
- pipelines | ||
- pipelineruns | ||
- pipelineresources | ||
verbs: | ||
- create | ||
- delete | ||
- deletecollection | ||
- get | ||
- list | ||
- patch | ||
- update | ||
- watch | ||
--- | ||
apiVersion: rbac.authorization.k8s.io/v1 | ||
kind: ClusterRole | ||
metadata: | ||
labels: | ||
rbac.authorization.k8s.io/aggregate-to-view: "true" | ||
name: tekton-aggregate-view | ||
rules: | ||
- apiGroups: | ||
- tekton.dev | ||
resources: | ||
- tasks | ||
- taskruns | ||
- pipelines | ||
- pipelineruns | ||
- pipelineresources | ||
verbs: | ||
- get | ||
- list | ||
- watch |
Oops, something went wrong.