1101 lines
35 KiB
YAML
1101 lines
35 KiB
YAML
|
# 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
|
||
|
#
|
||
|
# http://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: v1
|
||
|
kind: Namespace
|
||
|
metadata:
|
||
|
name: tekton-pipelines
|
||
|
|
||
|
---
|
||
|
# 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
|
||
|
#
|
||
|
# http://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: policy/v1beta1
|
||
|
kind: PodSecurityPolicy
|
||
|
metadata:
|
||
|
name: tekton-pipelines
|
||
|
spec:
|
||
|
privileged: false
|
||
|
allowPrivilegeEscalation: false
|
||
|
volumes:
|
||
|
- 'emptyDir'
|
||
|
- 'configMap'
|
||
|
- 'secret'
|
||
|
hostNetwork: false
|
||
|
hostIPC: false
|
||
|
hostPID: false
|
||
|
runAsUser:
|
||
|
rule: 'RunAsAny'
|
||
|
seLinux:
|
||
|
rule: 'RunAsAny'
|
||
|
supplementalGroups:
|
||
|
rule: 'MustRunAs'
|
||
|
ranges:
|
||
|
- min: 1
|
||
|
max: 65535
|
||
|
fsGroup:
|
||
|
rule: 'MustRunAs'
|
||
|
ranges:
|
||
|
- min: 1
|
||
|
max: 65535
|
||
|
|
||
|
---
|
||
|
kind: ClusterRole
|
||
|
apiVersion: rbac.authorization.k8s.io/v1
|
||
|
metadata:
|
||
|
name: tekton-pipelines-admin
|
||
|
rules:
|
||
|
- apiGroups: [""]
|
||
|
resources: ["pods", "pods/log", "namespaces", "secrets", "events", "serviceaccounts",
|
||
|
"configmaps", "persistentvolumeclaims", "limitranges"]
|
||
|
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", "validatingwebhookconfigurations"]
|
||
|
verbs: ["get", "list", "create", "update", "delete", "patch", "watch"]
|
||
|
- apiGroups: ["tekton.dev"]
|
||
|
resources: ["tasks", "clustertasks", "taskruns", "pipelines", "pipelineruns", "pipelineresources",
|
||
|
"conditions"]
|
||
|
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"]
|
||
|
resources: ["podsecuritypolicies"]
|
||
|
resourceNames: ["tekton-pipelines"]
|
||
|
verbs: ["use"]
|
||
|
|
||
|
---
|
||
|
# 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
|
||
|
#
|
||
|
# http://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: v1
|
||
|
kind: ServiceAccount
|
||
|
metadata:
|
||
|
name: tekton-pipelines-controller
|
||
|
namespace: tekton-pipelines
|
||
|
|
||
|
---
|
||
|
# 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
|
||
|
#
|
||
|
# http://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: rbac.authorization.k8s.io/v1beta1
|
||
|
kind: ClusterRoleBinding
|
||
|
metadata:
|
||
|
name: tekton-pipelines-controller-admin
|
||
|
subjects:
|
||
|
- kind: ServiceAccount
|
||
|
name: tekton-pipelines-controller
|
||
|
namespace: tekton-pipelines
|
||
|
roleRef:
|
||
|
kind: ClusterRole
|
||
|
name: tekton-pipelines-admin
|
||
|
apiGroup: rbac.authorization.k8s.io
|
||
|
|
||
|
---
|
||
|
# 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/v1beta1
|
||
|
kind: CustomResourceDefinition
|
||
|
metadata:
|
||
|
name: clustertasks.tekton.dev
|
||
|
spec:
|
||
|
group: tekton.dev
|
||
|
versions:
|
||
|
- name: v1alpha1
|
||
|
served: true
|
||
|
storage: true
|
||
|
- name: v1beta1
|
||
|
served: true
|
||
|
storage: false
|
||
|
names:
|
||
|
kind: ClusterTask
|
||
|
plural: clustertasks
|
||
|
categories:
|
||
|
- tekton
|
||
|
- tekton-pipelines
|
||
|
scope: Cluster
|
||
|
# Opt into the status subresource so metadata.generation
|
||
|
# starts to increment
|
||
|
subresources:
|
||
|
status: {}
|
||
|
version: v1alpha1
|
||
|
|
||
|
---
|
||
|
# 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/v1beta1
|
||
|
kind: CustomResourceDefinition
|
||
|
metadata:
|
||
|
name: conditions.tekton.dev
|
||
|
spec:
|
||
|
group: tekton.dev
|
||
|
names:
|
||
|
kind: Condition
|
||
|
plural: conditions
|
||
|
categories:
|
||
|
- tekton
|
||
|
- tekton-pipelines
|
||
|
scope: Namespaced
|
||
|
# Opt into the status subresource so metadata.generation
|
||
|
# starts to increment
|
||
|
subresources:
|
||
|
status: {}
|
||
|
version: v1alpha1
|
||
|
|
||
|
---
|
||
|
# Copyright 2018 The Knative 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/v1beta1
|
||
|
kind: CustomResourceDefinition
|
||
|
metadata:
|
||
|
name: images.caching.internal.knative.dev
|
||
|
labels:
|
||
|
knative.dev/crd-install: "true"
|
||
|
spec:
|
||
|
group: caching.internal.knative.dev
|
||
|
version: v1alpha1
|
||
|
names:
|
||
|
kind: Image
|
||
|
plural: images
|
||
|
singular: image
|
||
|
categories:
|
||
|
- knative-internal
|
||
|
- caching
|
||
|
shortNames:
|
||
|
- img
|
||
|
scope: Namespaced
|
||
|
subresources:
|
||
|
status: {}
|
||
|
|
||
|
---
|
||
|
# 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/v1beta1
|
||
|
kind: CustomResourceDefinition
|
||
|
metadata:
|
||
|
name: pipelines.tekton.dev
|
||
|
spec:
|
||
|
group: tekton.dev
|
||
|
versions:
|
||
|
- name: v1alpha1
|
||
|
served: true
|
||
|
storage: true
|
||
|
- name: v1beta1
|
||
|
served: true
|
||
|
storage: false
|
||
|
names:
|
||
|
kind: Pipeline
|
||
|
plural: pipelines
|
||
|
categories:
|
||
|
- tekton
|
||
|
- tekton-pipelines
|
||
|
scope: Namespaced
|
||
|
# Opt into the status subresource so metadata.generation
|
||
|
# starts to increment
|
||
|
subresources:
|
||
|
status: {}
|
||
|
version: v1alpha1
|
||
|
|
||
|
---
|
||
|
# 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/v1beta1
|
||
|
kind: CustomResourceDefinition
|
||
|
metadata:
|
||
|
name: pipelineruns.tekton.dev
|
||
|
spec:
|
||
|
group: tekton.dev
|
||
|
versions:
|
||
|
- name: v1alpha1
|
||
|
served: true
|
||
|
storage: true
|
||
|
- name: v1beta1
|
||
|
served: true
|
||
|
storage: false
|
||
|
names:
|
||
|
kind: PipelineRun
|
||
|
plural: pipelineruns
|
||
|
categories:
|
||
|
- tekton
|
||
|
- tekton-pipelines
|
||
|
shortNames:
|
||
|
- pr
|
||
|
- prs
|
||
|
scope: Namespaced
|
||
|
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: {}
|
||
|
version: v1alpha1
|
||
|
|
||
|
---
|
||
|
# 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/v1beta1
|
||
|
kind: CustomResourceDefinition
|
||
|
metadata:
|
||
|
name: pipelineresources.tekton.dev
|
||
|
spec:
|
||
|
group: tekton.dev
|
||
|
names:
|
||
|
kind: PipelineResource
|
||
|
plural: pipelineresources
|
||
|
categories:
|
||
|
- tekton
|
||
|
- tekton-pipelines
|
||
|
scope: Namespaced
|
||
|
# Opt into the status subresource so metadata.generation
|
||
|
# starts to increment
|
||
|
subresources:
|
||
|
status: {}
|
||
|
version: v1alpha1
|
||
|
|
||
|
---
|
||
|
# 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/v1beta1
|
||
|
kind: CustomResourceDefinition
|
||
|
metadata:
|
||
|
name: tasks.tekton.dev
|
||
|
spec:
|
||
|
group: tekton.dev
|
||
|
versions:
|
||
|
- name: v1alpha1
|
||
|
served: true
|
||
|
storage: true
|
||
|
- name: v1beta1
|
||
|
served: true
|
||
|
storage: false
|
||
|
names:
|
||
|
kind: Task
|
||
|
plural: tasks
|
||
|
categories:
|
||
|
- tekton
|
||
|
- tekton-pipelines
|
||
|
scope: Namespaced
|
||
|
# Opt into the status subresource so metadata.generation
|
||
|
# starts to increment
|
||
|
subresources:
|
||
|
status: {}
|
||
|
version: v1alpha1
|
||
|
|
||
|
---
|
||
|
# 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/v1beta1
|
||
|
kind: CustomResourceDefinition
|
||
|
metadata:
|
||
|
name: taskruns.tekton.dev
|
||
|
spec:
|
||
|
group: tekton.dev
|
||
|
versions:
|
||
|
- name: v1alpha1
|
||
|
served: true
|
||
|
storage: true
|
||
|
- name: v1beta1
|
||
|
served: true
|
||
|
storage: false
|
||
|
names:
|
||
|
kind: TaskRun
|
||
|
plural: taskruns
|
||
|
categories:
|
||
|
- tekton
|
||
|
- tekton-pipelines
|
||
|
shortNames:
|
||
|
- tr
|
||
|
- trs
|
||
|
scope: Namespaced
|
||
|
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: {}
|
||
|
version: v1alpha1
|
||
|
|
||
|
---
|
||
|
# 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: v1
|
||
|
kind: Secret
|
||
|
metadata:
|
||
|
name: webhook-certs
|
||
|
namespace: tekton-pipelines
|
||
|
labels:
|
||
|
pipeline.tekton.dev/release: devel
|
||
|
# The data is populated at install time.
|
||
|
|
||
|
# 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: admissionregistration.k8s.io/v1beta1
|
||
|
kind: ValidatingWebhookConfiguration
|
||
|
metadata:
|
||
|
name: validation.webhook.pipeline.tekton.dev
|
||
|
labels:
|
||
|
pipeline.tekton.dev/release: devel
|
||
|
webhooks:
|
||
|
- admissionReviewVersions:
|
||
|
- v1beta1
|
||
|
clientConfig:
|
||
|
service:
|
||
|
name: tekton-pipelines-webhook
|
||
|
namespace: tekton-pipelines
|
||
|
failurePolicy: Fail
|
||
|
sideEffects: None
|
||
|
name: validation.webhook.pipeline.tekton.dev
|
||
|
|
||
|
# 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: admissionregistration.k8s.io/v1beta1
|
||
|
kind: MutatingWebhookConfiguration
|
||
|
metadata:
|
||
|
name: webhook.pipeline.tekton.dev
|
||
|
labels:
|
||
|
pipeline.tekton.dev/release: devel
|
||
|
webhooks:
|
||
|
- admissionReviewVersions:
|
||
|
- v1beta1
|
||
|
clientConfig:
|
||
|
service:
|
||
|
name: tekton-pipelines-webhook
|
||
|
namespace: tekton-pipelines
|
||
|
failurePolicy: Fail
|
||
|
sideEffects: None
|
||
|
name: webhook.pipeline.tekton.dev
|
||
|
|
||
|
# 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: admissionregistration.k8s.io/v1beta1
|
||
|
kind: ValidatingWebhookConfiguration
|
||
|
metadata:
|
||
|
name: config.webhook.pipeline.tekton.dev
|
||
|
labels:
|
||
|
pipeline.tekton.dev/release: devel
|
||
|
webhooks:
|
||
|
- admissionReviewVersions:
|
||
|
- v1beta1
|
||
|
clientConfig:
|
||
|
service:
|
||
|
name: tekton-pipelines-webhook
|
||
|
namespace: tekton-pipelines
|
||
|
failurePolicy: Fail
|
||
|
sideEffects: None
|
||
|
name: config.webhook.pipeline.tekton.dev
|
||
|
namespaceSelector:
|
||
|
matchExpressions:
|
||
|
- key: pipeline.tekton.dev/release
|
||
|
operator: Exists
|
||
|
|
||
|
---
|
||
|
apiVersion: rbac.authorization.k8s.io/v1
|
||
|
kind: ClusterRole
|
||
|
metadata:
|
||
|
name: tekton-aggregate-edit
|
||
|
labels:
|
||
|
rbac.authorization.k8s.io/aggregate-to-edit: "true"
|
||
|
rbac.authorization.k8s.io/aggregate-to-admin: "true"
|
||
|
rules:
|
||
|
- apiGroups:
|
||
|
- tekton.dev
|
||
|
resources:
|
||
|
- tasks
|
||
|
- taskruns
|
||
|
- pipelines
|
||
|
- pipelineruns
|
||
|
- pipelineresources
|
||
|
- conditions
|
||
|
verbs:
|
||
|
- create
|
||
|
- delete
|
||
|
- deletecollection
|
||
|
- get
|
||
|
- list
|
||
|
- patch
|
||
|
- update
|
||
|
- watch
|
||
|
|
||
|
---
|
||
|
apiVersion: rbac.authorization.k8s.io/v1
|
||
|
kind: ClusterRole
|
||
|
metadata:
|
||
|
name: tekton-aggregate-view
|
||
|
labels:
|
||
|
rbac.authorization.k8s.io/aggregate-to-view: "true"
|
||
|
rules:
|
||
|
- apiGroups:
|
||
|
- tekton.dev
|
||
|
resources:
|
||
|
- tasks
|
||
|
- taskruns
|
||
|
- pipelines
|
||
|
- pipelineruns
|
||
|
- pipelineresources
|
||
|
- conditions
|
||
|
verbs:
|
||
|
- get
|
||
|
- list
|
||
|
- watch
|
||
|
|
||
|
---
|
||
|
# 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: v1
|
||
|
kind: ConfigMap
|
||
|
metadata:
|
||
|
name: config-artifact-bucket
|
||
|
namespace: tekton-pipelines
|
||
|
# data:
|
||
|
# # location of the gcs bucket to be used for artifact storage
|
||
|
# location: "gs://bucket-name"
|
||
|
# # name of the secret that will contain the credentials for the service account
|
||
|
# # with access to the bucket
|
||
|
# bucket.service.account.secret.name:
|
||
|
# # The key in the secret with the required service account json
|
||
|
# bucket.service.account.secret.key:
|
||
|
|
||
|
---
|
||
|
# 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: v1
|
||
|
kind: ConfigMap
|
||
|
metadata:
|
||
|
name: config-artifact-pvc
|
||
|
namespace: tekton-pipelines
|
||
|
# data:
|
||
|
# # size of the PVC volume
|
||
|
# size: 5Gi
|
||
|
#
|
||
|
# # storage class of the PVC volume
|
||
|
# storageClassName: storage-class-name
|
||
|
|
||
|
---
|
||
|
# 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: v1
|
||
|
kind: ConfigMap
|
||
|
metadata:
|
||
|
name: config-defaults
|
||
|
namespace: tekton-pipelines
|
||
|
data:
|
||
|
_example: |-
|
||
|
################################
|
||
|
# #
|
||
|
# EXAMPLE CONFIGURATION #
|
||
|
# #
|
||
|
################################
|
||
|
|
||
|
# This block is not actually functional configuration,
|
||
|
# but serves to illustrate the available configuration
|
||
|
# options and document them in a way that is accessible
|
||
|
# to users that `kubectl edit` this config map.
|
||
|
#
|
||
|
# These sample configuration options may be copied out of
|
||
|
# this example block and unindented to be in the data block
|
||
|
# to actually change the configuration.
|
||
|
|
||
|
# default-timeout-minutes contains the default number of
|
||
|
# minutes to use for TaskRun and PipelineRun, if none is specified.
|
||
|
default-timeout-minutes: "60" # 60 minutes
|
||
|
|
||
|
# default-service-account contains the default service account name
|
||
|
# to use for TaskRun and PipelineRun, if none is specified.
|
||
|
default-service-account: "default"
|
||
|
|
||
|
# default-managed-by-label-value contains the default value given to the
|
||
|
# "app.kubernetes.io/managed-by" label applied to all Pods created for
|
||
|
# TaskRuns. If a user's requested TaskRun specifies another value for this
|
||
|
# label, the user's request supercedes.
|
||
|
default-managed-by-label-value: "tekton-pipelines"
|
||
|
|
||
|
# default-pod-template contains the default pod template to use
|
||
|
# TaskRun and PipelineRun, if none is specified. If a pod template
|
||
|
# is specified, the default pod template is ignored.
|
||
|
# default-pod-template:
|
||
|
|
||
|
---
|
||
|
# 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: v1
|
||
|
kind: ConfigMap
|
||
|
metadata:
|
||
|
name: feature-flags
|
||
|
namespace: tekton-pipelines
|
||
|
data:
|
||
|
# Setting this flag to "true" will prevent Tekton overriding your
|
||
|
# Task container's $HOME environment variable.
|
||
|
#
|
||
|
# The default behaviour currently is for Tekton to override the
|
||
|
# $HOME environment variable but this will change in an upcoming
|
||
|
# release.
|
||
|
#
|
||
|
# See https://github.com/tektoncd/pipeline/issues/2013 for more
|
||
|
# info.
|
||
|
disable-home-env-overwrite: "false"
|
||
|
# Setting this flag to "true" will prevent Tekton overriding your
|
||
|
# Task container's working directory.
|
||
|
#
|
||
|
# The default behaviour currently is for Tekton to override the
|
||
|
# working directory if not set by the user but this will change
|
||
|
# in an upcoming release.
|
||
|
#
|
||
|
# See https://github.com/tektoncd/pipeline/issues/1836 for more
|
||
|
# info.
|
||
|
disable-working-directory-overwrite: "false"
|
||
|
|
||
|
---
|
||
|
# Copyright 2019 Tekton Authors LLC
|
||
|
#
|
||
|
# 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: v1
|
||
|
kind: ConfigMap
|
||
|
metadata:
|
||
|
name: config-logging
|
||
|
namespace: tekton-pipelines
|
||
|
data:
|
||
|
# Common configuration for all knative codebase
|
||
|
zap-logger-config: |
|
||
|
{
|
||
|
"level": "info",
|
||
|
"development": false,
|
||
|
"sampling": {
|
||
|
"initial": 100,
|
||
|
"thereafter": 100
|
||
|
},
|
||
|
"outputPaths": ["stdout"],
|
||
|
"errorOutputPaths": ["stderr"],
|
||
|
"encoding": "json",
|
||
|
"encoderConfig": {
|
||
|
"timeKey": "",
|
||
|
"levelKey": "level",
|
||
|
"nameKey": "logger",
|
||
|
"callerKey": "caller",
|
||
|
"messageKey": "msg",
|
||
|
"stacktraceKey": "stacktrace",
|
||
|
"lineEnding": "",
|
||
|
"levelEncoder": "",
|
||
|
"timeEncoder": "",
|
||
|
"durationEncoder": "",
|
||
|
"callerEncoder": ""
|
||
|
}
|
||
|
}
|
||
|
# Log level overrides
|
||
|
loglevel.controller: "info"
|
||
|
loglevel.webhook: "info"
|
||
|
|
||
|
---
|
||
|
# 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: v1
|
||
|
kind: ConfigMap
|
||
|
metadata:
|
||
|
name: config-observability
|
||
|
namespace: tekton-pipelines
|
||
|
data:
|
||
|
_example: |
|
||
|
################################
|
||
|
# #
|
||
|
# EXAMPLE CONFIGURATION #
|
||
|
# #
|
||
|
################################
|
||
|
|
||
|
# This block is not actually functional configuration,
|
||
|
# but serves to illustrate the available configuration
|
||
|
# options and document them in a way that is accessible
|
||
|
# to users that `kubectl edit` this config map.
|
||
|
#
|
||
|
# These sample configuration options may be copied out of
|
||
|
# this example block and unindented to be in the data block
|
||
|
# to actually change the configuration.
|
||
|
|
||
|
# metrics.backend-destination field specifies the system metrics destination.
|
||
|
# It supports either prometheus (the default) or stackdriver.
|
||
|
# Note: Using Stackdriver will incur additional charges.
|
||
|
metrics.backend-destination: prometheus
|
||
|
|
||
|
# metrics.stackdriver-project-id field specifies the Stackdriver project ID. This
|
||
|
# field is optional. When running on GCE, application default credentials will be
|
||
|
# used and metrics will be sent to the cluster's project if this field is
|
||
|
# not provided.
|
||
|
metrics.stackdriver-project-id: "<your stackdriver project id>"
|
||
|
|
||
|
# metrics.allow-stackdriver-custom-metrics indicates whether it is allowed
|
||
|
# to send metrics to Stackdriver using "global" resource type and custom
|
||
|
# metric type. Setting this flag to "true" could cause extra Stackdriver
|
||
|
# charge. If metrics.backend-destination is not Stackdriver, this is
|
||
|
# ignored.
|
||
|
metrics.allow-stackdriver-custom-metrics: "false"
|
||
|
|
||
|
---
|
||
|
# 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
|
||
|
#
|
||
|
# http://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: apps/v1
|
||
|
kind: Deployment
|
||
|
metadata:
|
||
|
name: tekton-pipelines-controller
|
||
|
namespace: tekton-pipelines
|
||
|
labels:
|
||
|
app.kubernetes.io/name: tekton-pipelines
|
||
|
app.kubernetes.io/component: controller
|
||
|
pipeline.tekton.dev/release: "v0.11.2"
|
||
|
version: "v0.11.2"
|
||
|
spec:
|
||
|
replicas: 1
|
||
|
selector:
|
||
|
matchLabels:
|
||
|
app: tekton-pipelines-controller
|
||
|
template:
|
||
|
metadata:
|
||
|
annotations:
|
||
|
cluster-autoscaler.kubernetes.io/safe-to-evict: "false"
|
||
|
labels:
|
||
|
app: tekton-pipelines-controller
|
||
|
app.kubernetes.io/name: tekton-pipelines
|
||
|
app.kubernetes.io/component: controller
|
||
|
# tekton.dev/release value replaced with inputs.params.versionTag in pipeline/tekton/publish.yaml
|
||
|
pipeline.tekton.dev/release: "v0.11.2"
|
||
|
version: "v0.11.2"
|
||
|
spec:
|
||
|
serviceAccountName: tekton-pipelines-controller
|
||
|
containers:
|
||
|
- name: tekton-pipelines-controller
|
||
|
image: gcr.io/tekton-releases/github.com/tektoncd/pipeline/cmd/controller:v0.11.2@sha256:0791513ec1176da38c403eb81220406e987f78f3e58608bd57be1adc45bc9aac
|
||
|
args: ["-kubeconfig-writer-image", "gcr.io/tekton-releases/github.com/tektoncd/pipeline/cmd/kubeconfigwriter:v0.11.2@sha256:d01fa1db8abcad318d05e62e35153a91c6c995949e52133520d9e4735e9a486c",
|
||
|
"-creds-image", "gcr.io/tekton-releases/github.com/tektoncd/pipeline/cmd/creds-init:v0.11.2@sha256:ced427e48b143bc821aedd4a0936fa2caef3f208d70efe68ccba786c12b2c943",
|
||
|
"-git-image", "gcr.io/tekton-releases/github.com/tektoncd/pipeline/cmd/git-init:v0.11.2@sha256:bee98bfe6807e8f4e0a31b4e786fd1f7f459e653ed1a22b1a25999f33fa9134a",
|
||
|
"-nop-image", "tianon/true", "-shell-image", "busybox", "-gsutil-image",
|
||
|
"google/cloud-sdk", "-entrypoint-image", "gcr.io/tekton-releases/github.com/tektoncd/pipeline/cmd/entrypoint:v0.11.2@sha256:bc5beb48ca4f87013ccb466bf739d6c99ef9f1ddf51899c73ead99f242b4e57d",
|
||
|
"-imagedigest-exporter-image", "gcr.io/tekton-releases/github.com/tektoncd/pipeline/cmd/imagedigestexporter:v0.11.2@sha256:7a03343deaeaa6b2d779df37417f9bf76cb5f67b36dd298e5bb69a0f625a2b38",
|
||
|
"-pr-image", "gcr.io/tekton-releases/github.com/tektoncd/pipeline/cmd/pullrequest-init:v0.11.2@sha256:3a395509e0d75786eafe96f68d22afc7c4d23a2a76ffc77218b25e8c6c81f6ba",
|
||
|
"-build-gcs-fetcher-image", "gcr.io/tekton-releases/github.com/tektoncd/pipeline/vendor/github.com/googlecloudplatform/cloud-builders/gcs-fetcher/cmd/gcs-fetcher:v0.11.2@sha256:a020c8510b15870a5b059708197ac7c4ef0d1cbd668eb0872105ad658d509f67"]
|
||
|
volumeMounts:
|
||
|
- name: config-logging
|
||
|
mountPath: /etc/config-logging
|
||
|
env:
|
||
|
- name: SYSTEM_NAMESPACE
|
||
|
valueFrom:
|
||
|
fieldRef:
|
||
|
fieldPath: metadata.namespace
|
||
|
- name: CONFIG_LOGGING_NAME
|
||
|
value: config-logging
|
||
|
- name: CONFIG_OBSERVABILITY_NAME
|
||
|
value: config-observability
|
||
|
- name: METRICS_DOMAIN
|
||
|
value: tekton.dev/pipeline
|
||
|
volumes:
|
||
|
- name: config-logging
|
||
|
configMap:
|
||
|
name: config-logging
|
||
|
---
|
||
|
apiVersion: v1
|
||
|
kind: Service
|
||
|
metadata:
|
||
|
labels:
|
||
|
app: tekton-pipelines-controller
|
||
|
pipeline.tekton.dev/release: "v0.11.2"
|
||
|
version: "v0.11.2"
|
||
|
name: tekton-pipelines-controller
|
||
|
namespace: tekton-pipelines
|
||
|
spec:
|
||
|
ports:
|
||
|
- name: http-metrics
|
||
|
port: 9090
|
||
|
protocol: TCP
|
||
|
targetPort: 9090
|
||
|
selector:
|
||
|
app: tekton-pipelines-controller
|
||
|
|
||
|
---
|
||
|
# 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: apps/v1
|
||
|
kind: Deployment
|
||
|
metadata:
|
||
|
# Note: the Deployment name must be the same as the Service name specified in
|
||
|
# config/400-webhook-service.yaml. If you change this name, you must also
|
||
|
# change the value of WEBHOOK_SERVICE_NAME below.
|
||
|
name: tekton-pipelines-webhook
|
||
|
namespace: tekton-pipelines
|
||
|
labels:
|
||
|
app.kubernetes.io/name: tekton-pipelines
|
||
|
app.kubernetes.io/component: webhook-controller
|
||
|
pipeline.tekton.dev/release: "v0.11.2"
|
||
|
version: "v0.11.2"
|
||
|
spec:
|
||
|
replicas: 1
|
||
|
selector:
|
||
|
matchLabels:
|
||
|
app: tekton-pipelines-webhook
|
||
|
role: webhook
|
||
|
template:
|
||
|
metadata:
|
||
|
annotations:
|
||
|
cluster-autoscaler.kubernetes.io/safe-to-evict: "false"
|
||
|
labels:
|
||
|
app: tekton-pipelines-webhook
|
||
|
role: webhook
|
||
|
app.kubernetes.io/name: tekton-pipelines
|
||
|
app.kubernetes.io/component: webhook-controller
|
||
|
pipeline.tekton.dev/release: "v0.11.2"
|
||
|
version: "v0.11.2"
|
||
|
spec:
|
||
|
serviceAccountName: tekton-pipelines-controller
|
||
|
containers:
|
||
|
- name: webhook
|
||
|
# This is the Go import path for the binary that is containerized
|
||
|
# and substituted here.
|
||
|
image: gcr.io/tekton-releases/github.com/tektoncd/pipeline/cmd/webhook:v0.11.2@sha256:9826548f3bd8cc0c4187ca0ab5ab8114009874625828a23301c1f60be4f294fa
|
||
|
env:
|
||
|
- name: SYSTEM_NAMESPACE
|
||
|
valueFrom:
|
||
|
fieldRef:
|
||
|
fieldPath: metadata.namespace
|
||
|
- name: CONFIG_LOGGING_NAME
|
||
|
value: config-logging
|
||
|
- name: CONFIG_OBSERVABILITY_NAME
|
||
|
value: config-observability
|
||
|
- name: WEBHOOK_SERVICE_NAME
|
||
|
value: tekton-pipelines-webhook
|
||
|
- name: METRICS_DOMAIN
|
||
|
value: tekton.dev/pipeline
|
||
|
securityContext:
|
||
|
allowPrivilegeEscalation: false
|
||
|
ports:
|
||
|
- name: metrics
|
||
|
containerPort: 9090
|
||
|
- name: profiling
|
||
|
containerPort: 8008
|
||
|
- name: https-webhook
|
||
|
containerPort: 8443
|
||
|
---
|
||
|
apiVersion: v1
|
||
|
kind: Service
|
||
|
metadata:
|
||
|
labels:
|
||
|
app: tekton-pipelines-webhook
|
||
|
role: webhook
|
||
|
pipeline.tekton.dev/release: v0.11.2
|
||
|
version: "v0.11.2"
|
||
|
name: tekton-pipelines-webhook
|
||
|
namespace: tekton-pipelines
|
||
|
spec:
|
||
|
ports:
|
||
|
- # Define metrics and profiling for them to be accessible within service meshes.
|
||
|
name: http-metrics
|
||
|
port: 9090
|
||
|
targetPort: 9090
|
||
|
- name: http-profiling
|
||
|
port: 8008
|
||
|
targetPort: 8008
|
||
|
- name: https-webhook
|
||
|
port: 443
|
||
|
targetPort: 8443
|
||
|
selector:
|
||
|
app: tekton-pipelines-webhook
|
||
|
role: webhook
|
||
|
|
||
|
---
|