Initial release
This commit is contained in:
@@ -0,0 +1,61 @@
|
||||
# Copyright 2019 The Tekton Authors
|
||||
#
|
||||
# Licensed under the Apache License, Version 2.0 (the "License");
|
||||
# you may not use this file except in compliance with the License.
|
||||
# You may obtain a copy of the License at
|
||||
#
|
||||
# https://www.apache.org/licenses/LICENSE-2.0
|
||||
#
|
||||
# Unless required by applicable law or agreed to in writing, software
|
||||
# distributed under the License is distributed on an "AS IS" BASIS,
|
||||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
# See the License for the specific language governing permissions and
|
||||
# limitations under the License.
|
||||
|
||||
apiVersion: apiextensions.k8s.io/v1
|
||||
kind: CustomResourceDefinition
|
||||
metadata:
|
||||
name: clustertasks.tekton.dev
|
||||
labels:
|
||||
app.kubernetes.io/instance: default
|
||||
app.kubernetes.io/part-of: tekton-pipelines
|
||||
pipeline.tekton.dev/release: "v0.57.0"
|
||||
version: "v0.57.0"
|
||||
spec:
|
||||
group: tekton.dev
|
||||
preserveUnknownFields: false
|
||||
versions:
|
||||
- name: v1beta1
|
||||
served: true
|
||||
storage: true
|
||||
schema:
|
||||
openAPIV3Schema:
|
||||
type: object
|
||||
# One can use x-kubernetes-preserve-unknown-fields: true
|
||||
# at the root of the schema (and inside any properties, additionalProperties)
|
||||
# to get the traditional CRD behaviour that nothing is pruned, despite
|
||||
# setting spec.preserveUnknownProperties: false.
|
||||
#
|
||||
# See https://kubernetes.io/blog/2019/06/20/crd-structural-schema/
|
||||
# See issue: https://github.com/knative/serving/issues/912
|
||||
x-kubernetes-preserve-unknown-fields: true
|
||||
# Opt into the status subresource so metadata.generation
|
||||
# starts to increment
|
||||
subresources:
|
||||
status: {}
|
||||
names:
|
||||
kind: ClusterTask
|
||||
plural: clustertasks
|
||||
singular: clustertask
|
||||
categories:
|
||||
- tekton
|
||||
- tekton-pipelines
|
||||
scope: Cluster
|
||||
conversion:
|
||||
strategy: Webhook
|
||||
webhook:
|
||||
conversionReviewVersions: ["v1beta1"]
|
||||
clientConfig:
|
||||
service:
|
||||
name: tekton-pipelines-webhook
|
||||
namespace: {{ operator_namespace }}
|
||||
@@ -0,0 +1,66 @@
|
||||
# Copyright 2020 The Tekton Authors
|
||||
#
|
||||
# Licensed under the Apache License, Version 2.0 (the "License");
|
||||
# you may not use this file except in compliance with the License.
|
||||
# You may obtain a copy of the License at
|
||||
#
|
||||
# https://www.apache.org/licenses/LICENSE-2.0
|
||||
#
|
||||
# Unless required by applicable law or agreed to in writing, software
|
||||
# distributed under the License is distributed on an "AS IS" BASIS,
|
||||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
# See the License for the specific language governing permissions and
|
||||
# limitations under the License.
|
||||
|
||||
apiVersion: apiextensions.k8s.io/v1
|
||||
kind: CustomResourceDefinition
|
||||
metadata:
|
||||
name: customruns.tekton.dev
|
||||
labels:
|
||||
app.kubernetes.io/instance: default
|
||||
app.kubernetes.io/part-of: tekton-pipelines
|
||||
pipeline.tekton.dev/release: "v0.57.0"
|
||||
version: "v0.57.0"
|
||||
spec:
|
||||
group: tekton.dev
|
||||
preserveUnknownFields: false
|
||||
versions:
|
||||
- name: v1beta1
|
||||
served: true
|
||||
storage: true
|
||||
schema:
|
||||
openAPIV3Schema:
|
||||
type: object
|
||||
# One can use x-kubernetes-preserve-unknown-fields: true
|
||||
# at the root of the schema (and inside any properties, additionalProperties)
|
||||
# to get the traditional CRD behaviour that nothing is pruned, despite
|
||||
# setting spec.preserveUnknownProperties: false.
|
||||
#
|
||||
# See https://kubernetes.io/blog/2019/06/20/crd-structural-schema/
|
||||
# See issue: https://github.com/knative/serving/issues/912
|
||||
x-kubernetes-preserve-unknown-fields: true
|
||||
additionalPrinterColumns:
|
||||
- name: Succeeded
|
||||
type: string
|
||||
jsonPath: ".status.conditions[?(@.type==\"Succeeded\")].status"
|
||||
- name: Reason
|
||||
type: string
|
||||
jsonPath: ".status.conditions[?(@.type==\"Succeeded\")].reason"
|
||||
- name: StartTime
|
||||
type: date
|
||||
jsonPath: .status.startTime
|
||||
- name: CompletionTime
|
||||
type: date
|
||||
jsonPath: .status.completionTime
|
||||
# Opt into the status subresource so metadata.generation
|
||||
# starts to increment
|
||||
subresources:
|
||||
status: {}
|
||||
names:
|
||||
kind: CustomRun
|
||||
plural: customruns
|
||||
singular: customrun
|
||||
categories:
|
||||
- tekton
|
||||
- tekton-pipelines
|
||||
scope: Namespaced
|
||||
@@ -0,0 +1,108 @@
|
||||
# Copyright 2019 The Tekton Authors
|
||||
#
|
||||
# Licensed under the Apache License, Version 2.0 (the "License");
|
||||
# you may not use this file except in compliance with the License.
|
||||
# You may obtain a copy of the License at
|
||||
#
|
||||
# https://www.apache.org/licenses/LICENSE-2.0
|
||||
#
|
||||
# Unless required by applicable law or agreed to in writing, software
|
||||
# distributed under the License is distributed on an "AS IS" BASIS,
|
||||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
# See the License for the specific language governing permissions and
|
||||
# limitations under the License.
|
||||
|
||||
apiVersion: apiextensions.k8s.io/v1
|
||||
kind: CustomResourceDefinition
|
||||
metadata:
|
||||
name: pipelineruns.tekton.dev
|
||||
labels:
|
||||
app.kubernetes.io/instance: default
|
||||
app.kubernetes.io/part-of: tekton-pipelines
|
||||
pipeline.tekton.dev/release: "v0.57.0"
|
||||
version: "v0.57.0"
|
||||
spec:
|
||||
group: tekton.dev
|
||||
preserveUnknownFields: false
|
||||
versions:
|
||||
- name: v1beta1
|
||||
served: true
|
||||
storage: false
|
||||
schema:
|
||||
openAPIV3Schema:
|
||||
type: object
|
||||
# One can use x-kubernetes-preserve-unknown-fields: true
|
||||
# at the root of the schema (and inside any properties, additionalProperties)
|
||||
# to get the traditional CRD behaviour that nothing is pruned, despite
|
||||
# setting spec.preserveUnknownProperties: false.
|
||||
#
|
||||
# See https://kubernetes.io/blog/2019/06/20/crd-structural-schema/
|
||||
# See issue: https://github.com/knative/serving/issues/912
|
||||
x-kubernetes-preserve-unknown-fields: true
|
||||
additionalPrinterColumns:
|
||||
- name: Succeeded
|
||||
type: string
|
||||
jsonPath: ".status.conditions[?(@.type==\"Succeeded\")].status"
|
||||
- name: Reason
|
||||
type: string
|
||||
jsonPath: ".status.conditions[?(@.type==\"Succeeded\")].reason"
|
||||
- name: StartTime
|
||||
type: date
|
||||
jsonPath: .status.startTime
|
||||
- name: CompletionTime
|
||||
type: date
|
||||
jsonPath: .status.completionTime
|
||||
# Opt into the status subresource so metadata.generation
|
||||
# starts to increment
|
||||
subresources:
|
||||
status: {}
|
||||
- name: v1
|
||||
served: true
|
||||
storage: true
|
||||
schema:
|
||||
openAPIV3Schema:
|
||||
type: object
|
||||
# One can use x-kubernetes-preserve-unknown-fields: true
|
||||
# at the root of the schema (and inside any properties, additionalProperties)
|
||||
# to get the traditional CRD behaviour that nothing is pruned, despite
|
||||
# setting spec.preserveUnknownProperties: false.
|
||||
#
|
||||
# See https://kubernetes.io/blog/2019/06/20/crd-structural-schema/
|
||||
# See issue: https://github.com/knative/serving/issues/912
|
||||
x-kubernetes-preserve-unknown-fields: true
|
||||
additionalPrinterColumns:
|
||||
- name: Succeeded
|
||||
type: string
|
||||
jsonPath: ".status.conditions[?(@.type==\"Succeeded\")].status"
|
||||
- name: Reason
|
||||
type: string
|
||||
jsonPath: ".status.conditions[?(@.type==\"Succeeded\")].reason"
|
||||
- name: StartTime
|
||||
type: date
|
||||
jsonPath: .status.startTime
|
||||
- name: CompletionTime
|
||||
type: date
|
||||
jsonPath: .status.completionTime
|
||||
# Opt into the status subresource so metadata.generation
|
||||
# starts to increment
|
||||
subresources:
|
||||
status: {}
|
||||
names:
|
||||
kind: PipelineRun
|
||||
plural: pipelineruns
|
||||
singular: pipelinerun
|
||||
categories:
|
||||
- tekton
|
||||
- tekton-pipelines
|
||||
shortNames:
|
||||
- pr
|
||||
- prs
|
||||
scope: Namespaced
|
||||
conversion:
|
||||
strategy: Webhook
|
||||
webhook:
|
||||
conversionReviewVersions: ["v1beta1", "v1"]
|
||||
clientConfig:
|
||||
service:
|
||||
name: tekton-pipelines-webhook
|
||||
namespace: {{ operator_namespace }}
|
||||
@@ -0,0 +1,77 @@
|
||||
# Copyright 2019 The Tekton Authors
|
||||
#
|
||||
# Licensed under the Apache License, Version 2.0 (the "License");
|
||||
# you may not use this file except in compliance with the License.
|
||||
# You may obtain a copy of the License at
|
||||
#
|
||||
# https://www.apache.org/licenses/LICENSE-2.0
|
||||
#
|
||||
# Unless required by applicable law or agreed to in writing, software
|
||||
# distributed under the License is distributed on an "AS IS" BASIS,
|
||||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
# See the License for the specific language governing permissions and
|
||||
# limitations under the License.
|
||||
|
||||
apiVersion: apiextensions.k8s.io/v1
|
||||
kind: CustomResourceDefinition
|
||||
metadata:
|
||||
name: pipelines.tekton.dev
|
||||
labels:
|
||||
app.kubernetes.io/instance: default
|
||||
app.kubernetes.io/part-of: tekton-pipelines
|
||||
pipeline.tekton.dev/release: "v0.57.0"
|
||||
version: "v0.57.0"
|
||||
spec:
|
||||
group: tekton.dev
|
||||
preserveUnknownFields: false
|
||||
versions:
|
||||
- name: v1beta1
|
||||
served: true
|
||||
storage: false
|
||||
subresources:
|
||||
status: {}
|
||||
schema:
|
||||
openAPIV3Schema:
|
||||
type: object
|
||||
# One can use x-kubernetes-preserve-unknown-fields: true
|
||||
# at the root of the schema (and inside any properties, additionalProperties)
|
||||
# to get the traditional CRD behaviour that nothing is pruned, despite
|
||||
# setting spec.preserveUnknownProperties: false.
|
||||
#
|
||||
# See https://kubernetes.io/blog/2019/06/20/crd-structural-schema/
|
||||
# See issue: https://github.com/knative/serving/issues/912
|
||||
x-kubernetes-preserve-unknown-fields: true
|
||||
- name: v1
|
||||
served: true
|
||||
storage: true
|
||||
schema:
|
||||
openAPIV3Schema:
|
||||
type: object
|
||||
# OpenAPIV3 schema allows Kubernetes to perform validation on the schema fields
|
||||
# and use the schema in tooling such as `kubectl explain`.
|
||||
# Using "x-kubernetes-preserve-unknown-fields: true"
|
||||
# at the root of the schema (or within it) allows arbitrary fields.
|
||||
# We currently perform our own validation separately.
|
||||
# See https://kubernetes.io/docs/tasks/extend-kubernetes/custom-resources/custom-resource-definitions/#specifying-a-structural-schema
|
||||
# for more info.
|
||||
x-kubernetes-preserve-unknown-fields: true
|
||||
# Opt into the status subresource so metadata.generation
|
||||
# starts to increment
|
||||
subresources:
|
||||
status: {}
|
||||
names:
|
||||
kind: Pipeline
|
||||
plural: pipelines
|
||||
singular: pipeline
|
||||
categories:
|
||||
- tekton
|
||||
- tekton-pipelines
|
||||
scope: Namespaced
|
||||
conversion:
|
||||
strategy: Webhook
|
||||
webhook:
|
||||
conversionReviewVersions: ["v1beta1", "v1"]
|
||||
clientConfig:
|
||||
service:
|
||||
name: tekton-pipelines-webhook
|
||||
namespace: {{ operator_namespace }}
|
||||
@@ -0,0 +1,101 @@
|
||||
# Copyright 2022 The Tekton Authors
|
||||
#
|
||||
# Licensed under the Apache License, Version 2.0 (the "License");
|
||||
# you may not use this file except in compliance with the License.
|
||||
# You may obtain a copy of the License at
|
||||
#
|
||||
# https://www.apache.org/licenses/LICENSE-2.0
|
||||
#
|
||||
# Unless required by applicable law or agreed to in writing, software
|
||||
# distributed under the License is distributed on an "AS IS" BASIS,
|
||||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
# See the License for the specific language governing permissions and
|
||||
# limitations under the License.
|
||||
|
||||
apiVersion: apiextensions.k8s.io/v1
|
||||
kind: CustomResourceDefinition
|
||||
metadata:
|
||||
name: resolutionrequests.resolution.tekton.dev
|
||||
labels:
|
||||
resolution.tekton.dev/release: devel
|
||||
spec:
|
||||
group: resolution.tekton.dev
|
||||
scope: Namespaced
|
||||
names:
|
||||
kind: ResolutionRequest
|
||||
plural: resolutionrequests
|
||||
singular: resolutionrequest
|
||||
categories:
|
||||
- tekton
|
||||
- tekton-pipelines
|
||||
shortNames:
|
||||
- resolutionrequest
|
||||
- resolutionrequests
|
||||
versions:
|
||||
- name: v1alpha1
|
||||
served: true
|
||||
deprecated: true
|
||||
storage: false
|
||||
subresources:
|
||||
status: {}
|
||||
schema:
|
||||
openAPIV3Schema:
|
||||
type: object
|
||||
# One can use x-kubernetes-preserve-unknown-fields: true
|
||||
# at the root of the schema (and inside any properties, additionalProperties)
|
||||
# to get the traditional CRD behaviour that nothing is pruned, despite
|
||||
# setting spec.preserveUnknownProperties: false.
|
||||
#
|
||||
# See https://kubernetes.io/blog/2019/06/20/crd-structural-schema/
|
||||
# See issue: https://github.com/knative/serving/issues/912
|
||||
x-kubernetes-preserve-unknown-fields: true
|
||||
additionalPrinterColumns:
|
||||
- name: Succeeded
|
||||
type: string
|
||||
jsonPath: ".status.conditions[?(@.type=='Succeeded')].status"
|
||||
- name: Reason
|
||||
type: string
|
||||
jsonPath: ".status.conditions[?(@.type=='Succeeded')].reason"
|
||||
- name: v1beta1
|
||||
served: true
|
||||
storage: true
|
||||
subresources:
|
||||
status: {}
|
||||
schema:
|
||||
openAPIV3Schema:
|
||||
type: object
|
||||
# One can use x-kubernetes-preserve-unknown-fields: true
|
||||
# at the root of the schema (and inside any properties, additionalProperties)
|
||||
# to get the traditional CRD behaviour that nothing is pruned, despite
|
||||
# setting spec.preserveUnknownProperties: false.
|
||||
#
|
||||
# See https://kubernetes.io/blog/2019/06/20/crd-structural-schema/
|
||||
# See issue: https://github.com/knative/serving/issues/912
|
||||
x-kubernetes-preserve-unknown-fields: true
|
||||
additionalPrinterColumns:
|
||||
- name: OwnerKind
|
||||
type: string
|
||||
jsonPath: ".metadata.ownerReferences[0].kind"
|
||||
- name: Owner
|
||||
type: string
|
||||
jsonPath: ".metadata.ownerReferences[0].name"
|
||||
- name: Succeeded
|
||||
type: string
|
||||
jsonPath: ".status.conditions[?(@.type=='Succeeded')].status"
|
||||
- name: Reason
|
||||
type: string
|
||||
jsonPath: ".status.conditions[?(@.type=='Succeeded')].reason"
|
||||
- name: StartTime
|
||||
type: string
|
||||
jsonPath: .metadata.creationTimestamp
|
||||
- name: EndTime
|
||||
type: string
|
||||
jsonPath: .status.conditions[?(@.type=='Succeeded')].lastTransitionTime
|
||||
conversion:
|
||||
strategy: Webhook
|
||||
webhook:
|
||||
conversionReviewVersions: ["v1alpha1", "v1beta1"]
|
||||
clientConfig:
|
||||
service:
|
||||
name: tekton-pipelines-webhook
|
||||
namespace: {{ operator_namespace }}
|
||||
@@ -0,0 +1,53 @@
|
||||
# Copyright 2023 The Tekton Authors
|
||||
#
|
||||
# Licensed under the Apache License, Version 2.0 (the "License");
|
||||
# you may not use this file except in compliance with the License.
|
||||
# You may obtain a copy of the License at
|
||||
#
|
||||
# https://www.apache.org/licenses/LICENSE-2.0
|
||||
#
|
||||
# Unless required by applicable law or agreed to in writing, software
|
||||
# distributed under the License is distributed on an "AS IS" BASIS,
|
||||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
# See the License for the specific language governing permissions and
|
||||
# limitations under the License.
|
||||
|
||||
apiVersion: apiextensions.k8s.io/v1
|
||||
kind: CustomResourceDefinition
|
||||
metadata:
|
||||
name: stepactions.tekton.dev
|
||||
labels:
|
||||
app.kubernetes.io/instance: default
|
||||
app.kubernetes.io/part-of: tekton-pipelines
|
||||
pipeline.tekton.dev/release: "v0.57.0"
|
||||
version: "v0.57.0"
|
||||
spec:
|
||||
group: tekton.dev
|
||||
preserveUnknownFields: false
|
||||
versions:
|
||||
- name: v1alpha1
|
||||
served: true
|
||||
storage: true
|
||||
schema:
|
||||
openAPIV3Schema:
|
||||
type: object
|
||||
# One can use x-kubernetes-preserve-unknown-fields: true
|
||||
# at the root of the schema (and inside any properties, additionalProperties)
|
||||
# to get the traditional CRD behaviour that nothing is pruned, despite
|
||||
# setting spec.preserveUnknownProperties: false.
|
||||
#
|
||||
# See https://kubernetes.io/blog/2019/06/20/crd-structural-schema/
|
||||
# See issue: https://github.com/knative/serving/issues/912
|
||||
x-kubernetes-preserve-unknown-fields: true
|
||||
# Opt into the status subresource so metadata.generation
|
||||
# starts to increment
|
||||
subresources:
|
||||
status: {}
|
||||
names:
|
||||
kind: StepAction
|
||||
plural: stepactions
|
||||
singular: stepaction
|
||||
categories:
|
||||
- tekton
|
||||
- tekton-pipelines
|
||||
scope: Namespaced
|
||||
@@ -0,0 +1,108 @@
|
||||
# Copyright 2019 The Tekton Authors
|
||||
#
|
||||
# Licensed under the Apache License, Version 2.0 (the "License");
|
||||
# you may not use this file except in compliance with the License.
|
||||
# You may obtain a copy of the License at
|
||||
#
|
||||
# https://www.apache.org/licenses/LICENSE-2.0
|
||||
#
|
||||
# Unless required by applicable law or agreed to in writing, software
|
||||
# distributed under the License is distributed on an "AS IS" BASIS,
|
||||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
# See the License for the specific language governing permissions and
|
||||
# limitations under the License.
|
||||
|
||||
apiVersion: apiextensions.k8s.io/v1
|
||||
kind: CustomResourceDefinition
|
||||
metadata:
|
||||
name: taskruns.tekton.dev
|
||||
labels:
|
||||
app.kubernetes.io/instance: default
|
||||
app.kubernetes.io/part-of: tekton-pipelines
|
||||
pipeline.tekton.dev/release: "v0.57.0"
|
||||
version: "v0.57.0"
|
||||
spec:
|
||||
group: tekton.dev
|
||||
preserveUnknownFields: false
|
||||
versions:
|
||||
- name: v1beta1
|
||||
served: true
|
||||
storage: false
|
||||
schema:
|
||||
openAPIV3Schema:
|
||||
type: object
|
||||
# One can use x-kubernetes-preserve-unknown-fields: true
|
||||
# at the root of the schema (and inside any properties, additionalProperties)
|
||||
# to get the traditional CRD behaviour that nothing is pruned, despite
|
||||
# setting spec.preserveUnknownProperties: false.
|
||||
#
|
||||
# See https://kubernetes.io/blog/2019/06/20/crd-structural-schema/
|
||||
# See issue: https://github.com/knative/serving/issues/912
|
||||
x-kubernetes-preserve-unknown-fields: true
|
||||
additionalPrinterColumns:
|
||||
- name: Succeeded
|
||||
type: string
|
||||
jsonPath: ".status.conditions[?(@.type==\"Succeeded\")].status"
|
||||
- name: Reason
|
||||
type: string
|
||||
jsonPath: ".status.conditions[?(@.type==\"Succeeded\")].reason"
|
||||
- name: StartTime
|
||||
type: date
|
||||
jsonPath: .status.startTime
|
||||
- name: CompletionTime
|
||||
type: date
|
||||
jsonPath: .status.completionTime
|
||||
# Opt into the status subresource so metadata.generation
|
||||
# starts to increment
|
||||
subresources:
|
||||
status: {}
|
||||
- name: v1
|
||||
served: true
|
||||
storage: true
|
||||
schema:
|
||||
openAPIV3Schema:
|
||||
type: object
|
||||
# One can use x-kubernetes-preserve-unknown-fields: true
|
||||
# at the root of the schema (and inside any properties, additionalProperties)
|
||||
# to get the traditional CRD behaviour that nothing is pruned, despite
|
||||
# setting spec.preserveUnknownProperties: false.
|
||||
#
|
||||
# See https://kubernetes.io/blog/2019/06/20/crd-structural-schema/
|
||||
# See issue: https://github.com/knative/serving/issues/912
|
||||
x-kubernetes-preserve-unknown-fields: true
|
||||
additionalPrinterColumns:
|
||||
- name: Succeeded
|
||||
type: string
|
||||
jsonPath: ".status.conditions[?(@.type==\"Succeeded\")].status"
|
||||
- name: Reason
|
||||
type: string
|
||||
jsonPath: ".status.conditions[?(@.type==\"Succeeded\")].reason"
|
||||
- name: StartTime
|
||||
type: date
|
||||
jsonPath: .status.startTime
|
||||
- name: CompletionTime
|
||||
type: date
|
||||
jsonPath: .status.completionTime
|
||||
# Opt into the status subresource so metadata.generation
|
||||
# starts to increment
|
||||
subresources:
|
||||
status: {}
|
||||
names:
|
||||
kind: TaskRun
|
||||
plural: taskruns
|
||||
singular: taskrun
|
||||
categories:
|
||||
- tekton
|
||||
- tekton-pipelines
|
||||
shortNames:
|
||||
- tr
|
||||
- trs
|
||||
scope: Namespaced
|
||||
conversion:
|
||||
strategy: Webhook
|
||||
webhook:
|
||||
conversionReviewVersions: ["v1beta1", "v1"]
|
||||
clientConfig:
|
||||
service:
|
||||
name: tekton-pipelines-webhook
|
||||
namespace: {{ operator_namespace }}
|
||||
@@ -0,0 +1,80 @@
|
||||
# Copyright 2019 The Tekton Authors
|
||||
#
|
||||
# Licensed under the Apache License, Version 2.0 (the "License");
|
||||
# you may not use this file except in compliance with the License.
|
||||
# You may obtain a copy of the License at
|
||||
#
|
||||
# https://www.apache.org/licenses/LICENSE-2.0
|
||||
#
|
||||
# Unless required by applicable law or agreed to in writing, software
|
||||
# distributed under the License is distributed on an "AS IS" BASIS,
|
||||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
# See the License for the specific language governing permissions and
|
||||
# limitations under the License.
|
||||
|
||||
apiVersion: apiextensions.k8s.io/v1
|
||||
kind: CustomResourceDefinition
|
||||
metadata:
|
||||
name: tasks.tekton.dev
|
||||
labels:
|
||||
app.kubernetes.io/instance: default
|
||||
app.kubernetes.io/part-of: tekton-pipelines
|
||||
pipeline.tekton.dev/release: "v0.57.0"
|
||||
version: "v0.57.0"
|
||||
spec:
|
||||
group: tekton.dev
|
||||
preserveUnknownFields: false
|
||||
versions:
|
||||
- name: v1beta1
|
||||
served: true
|
||||
storage: false
|
||||
schema:
|
||||
openAPIV3Schema:
|
||||
type: object
|
||||
# One can use x-kubernetes-preserve-unknown-fields: true
|
||||
# at the root of the schema (and inside any properties, additionalProperties)
|
||||
# to get the traditional CRD behaviour that nothing is pruned, despite
|
||||
# setting spec.preserveUnknownProperties: false.
|
||||
#
|
||||
# See https://kubernetes.io/blog/2019/06/20/crd-structural-schema/
|
||||
# See issue: https://github.com/knative/serving/issues/912
|
||||
x-kubernetes-preserve-unknown-fields: true
|
||||
# Opt into the status subresource so metadata.generation
|
||||
# starts to increment
|
||||
subresources:
|
||||
status: {}
|
||||
- name: v1
|
||||
served: true
|
||||
storage: true
|
||||
schema:
|
||||
openAPIV3Schema:
|
||||
type: object
|
||||
# TODO(#1461): Add OpenAPIV3 schema
|
||||
# OpenAPIV3 schema allows Kubernetes to perform validation on the schema fields
|
||||
# and use the schema in tooling such as `kubectl explain`.
|
||||
# Using "x-kubernetes-preserve-unknown-fields: true"
|
||||
# at the root of the schema (or within it) allows arbitrary fields.
|
||||
# We currently perform our own validation separately.
|
||||
# See https://kubernetes.io/docs/tasks/extend-kubernetes/custom-resources/custom-resource-definitions/#specifying-a-structural-schema
|
||||
# for more info.
|
||||
x-kubernetes-preserve-unknown-fields: true
|
||||
# Opt into the status subresource so metadata.generation
|
||||
# starts to increment
|
||||
subresources:
|
||||
status: {}
|
||||
names:
|
||||
kind: Task
|
||||
plural: tasks
|
||||
singular: task
|
||||
categories:
|
||||
- tekton
|
||||
- tekton-pipelines
|
||||
scope: Namespaced
|
||||
conversion:
|
||||
strategy: Webhook
|
||||
webhook:
|
||||
conversionReviewVersions: ["v1beta1", "v1"]
|
||||
clientConfig:
|
||||
service:
|
||||
name: tekton-pipelines-webhook
|
||||
namespace: {{ operator_namespace }}
|
||||
@@ -0,0 +1,48 @@
|
||||
# Copyright 2022 The Tekton Authors
|
||||
#
|
||||
# Licensed under the Apache License, Version 2.0 (the "License");
|
||||
# you may not use this file except in compliance with the License.
|
||||
# You may obtain a copy of the License at
|
||||
#
|
||||
# https://www.apache.org/licenses/LICENSE-2.0
|
||||
#
|
||||
# Unless required by applicable law or agreed to in writing, software
|
||||
# distributed under the License is distributed on an "AS IS" BASIS,
|
||||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
# See the License for the specific language governing permissions and
|
||||
# limitations under the License.
|
||||
|
||||
apiVersion: apiextensions.k8s.io/v1
|
||||
kind: CustomResourceDefinition
|
||||
metadata:
|
||||
name: verificationpolicies.tekton.dev
|
||||
labels:
|
||||
app.kubernetes.io/instance: default
|
||||
app.kubernetes.io/part-of: tekton-pipelines
|
||||
pipeline.tekton.dev/release: "v0.57.0"
|
||||
version: "v0.57.0"
|
||||
spec:
|
||||
group: tekton.dev
|
||||
versions:
|
||||
- name: v1alpha1
|
||||
served: true
|
||||
storage: true
|
||||
schema:
|
||||
openAPIV3Schema:
|
||||
type: object
|
||||
# One can use x-kubernetes-preserve-unknown-fields: true
|
||||
# at the root of the schema (and inside any properties, additionalProperties)
|
||||
# to get the traditional CRD behaviour that nothing is pruned, despite
|
||||
# setting spec.preserveUnknownProperties: false.
|
||||
#
|
||||
# See https://kubernetes.io/blog/2019/06/20/crd-structural-schema/
|
||||
# See issue: https://github.com/knative/serving/issues/912
|
||||
x-kubernetes-preserve-unknown-fields: true
|
||||
names:
|
||||
kind: VerificationPolicy
|
||||
plural: verificationpolicies
|
||||
singular: verificationpolicy
|
||||
categories:
|
||||
- tekton
|
||||
- tekton-pipelines
|
||||
scope: Namespaced
|
||||
17
crd/tekton-pipelines/datas.tf
Normal file
17
crd/tekton-pipelines/datas.tf
Normal file
@@ -0,0 +1,17 @@
|
||||
|
||||
locals {
|
||||
common-labels = {
|
||||
"vynil.solidite.fr/owner-name" = var.instance
|
||||
"vynil.solidite.fr/owner-namespace" = var.namespace
|
||||
"vynil.solidite.fr/owner-category" = var.category
|
||||
"vynil.solidite.fr/owner-component" = var.component
|
||||
"app.kubernetes.io/managed-by" = "vynil"
|
||||
"app.kubernetes.io/name" = var.component
|
||||
"app.kubernetes.io/instance" = var.instance
|
||||
}
|
||||
}
|
||||
data "kustomization_overlay" "data" {
|
||||
common_labels = local.common-labels
|
||||
namespace = var.namespace
|
||||
resources = []
|
||||
}
|
||||
47
crd/tekton-pipelines/index.rhai
Normal file
47
crd/tekton-pipelines/index.rhai
Normal file
@@ -0,0 +1,47 @@
|
||||
const VERSION="0.57.0";
|
||||
const SRC=src;
|
||||
const DEST=dest;
|
||||
const DOIT=config.apply;
|
||||
const sourcesDir=`https://storage.googleapis.com/tekton-releases/pipeline/previous/v${VERSION}`;
|
||||
const sources=[
|
||||
"release.yaml",
|
||||
];
|
||||
const crdFiles=[
|
||||
"apiextensions.k8s.io_v1_CustomResourceDefinition_clustertasks.tekton.dev.yaml",
|
||||
"apiextensions.k8s.io_v1_CustomResourceDefinition_customruns.tekton.dev.yaml",
|
||||
"apiextensions.k8s.io_v1_CustomResourceDefinition_pipelineruns.tekton.dev.yaml",
|
||||
"apiextensions.k8s.io_v1_CustomResourceDefinition_pipelines.tekton.dev.yaml",
|
||||
"apiextensions.k8s.io_v1_CustomResourceDefinition_resolutionrequests.resolution.tekton.dev.yaml",
|
||||
"apiextensions.k8s.io_v1_CustomResourceDefinition_stepactions.tekton.dev.yaml",
|
||||
"apiextensions.k8s.io_v1_CustomResourceDefinition_taskruns.tekton.dev.yaml",
|
||||
"apiextensions.k8s.io_v1_CustomResourceDefinition_tasks.tekton.dev.yaml",
|
||||
"apiextensions.k8s.io_v1_CustomResourceDefinition_verificationpolicies.tekton.dev.yaml",
|
||||
];
|
||||
fn pre_pack() {
|
||||
for file in global::sources {
|
||||
shell(`curl -sL ${global::sourcesDir}/${file} > ${global::SRC}/${file}`);
|
||||
}
|
||||
}
|
||||
fn post_pack() {
|
||||
shell(`for i in $(ls -1 "${global::DEST}"|awk '/yaml$/&&!/^index/&&!/apiextensions/');do rm -f "${global::DEST}/$i";done`);
|
||||
for file in global::crdFiles {
|
||||
shell(`sed -i 's/namespace: tekton-pipelines$/namespace: {{ operator_namespace }}/' ${global::DEST}/${file}`);
|
||||
shell(`mv ${global::DEST}/${file} ${global::DEST}/${file}.hbs`);
|
||||
}
|
||||
}
|
||||
fn pre_install() {
|
||||
if ! global::DOIT {
|
||||
return;
|
||||
}
|
||||
for file in global::crdFiles {
|
||||
shell(`kubectl replace -f ${global::SRC}/${file} || kubectl create -f ${global::SRC}/${file}`);
|
||||
}
|
||||
}
|
||||
fn post_destroy() {
|
||||
if ! global::DOIT {
|
||||
return;
|
||||
}
|
||||
for file in global::crdFiles {
|
||||
shell(`kubectl delete -f ${global::SRC}/${file}`);
|
||||
}
|
||||
}
|
||||
21
crd/tekton-pipelines/index.yaml
Normal file
21
crd/tekton-pipelines/index.yaml
Normal file
@@ -0,0 +1,21 @@
|
||||
---
|
||||
apiVersion: vinyl.solidite.fr/v1beta1
|
||||
kind: Component
|
||||
category: crd
|
||||
metadata:
|
||||
name: tekton-pipelines
|
||||
description: CRD for tekton pipelines
|
||||
options:
|
||||
operator_namespace:
|
||||
default: tekton
|
||||
examples:
|
||||
- tekton
|
||||
type: string
|
||||
apply:
|
||||
default: true
|
||||
examples:
|
||||
- true
|
||||
type: boolean
|
||||
dependencies: []
|
||||
providers: null
|
||||
tfaddtype: null
|
||||
Reference in New Issue
Block a user