Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion apps.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ appsInfo:
isAlpha: true
tekton:
title: Tekton Pipelines
appVersion: 1.9.1
appVersion: 1.12.0
repo: https://github.com/tektoncd/pipeline
maintainers: Tekton
relatedLinks:
Expand Down
2 changes: 1 addition & 1 deletion chart/chart-index/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ dependencies:
repository: https://bitnami-labs.github.io/sealed-secrets/
- name: tekton-pipeline
alias: tekton-pipelines
version: 1.9.2
version: 1.12.0
repository: https://cdfoundation.github.io/tekton-helm-chart/
- name: trivy-operator
version: 0.32.1
Expand Down
4 changes: 2 additions & 2 deletions charts/tekton-pipelines/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
apiVersion: v2
appVersion: 1.9.2
appVersion: 1.12.0
description: A Helm chart for Tekton Pipelines
home: https://github.com/cdfoundation/tekton-helm-chart
icon: https://avatars2.githubusercontent.com/u/47602533
name: tekton-pipeline
version: 1.9.2
version: 1.12.0
4 changes: 2 additions & 2 deletions charts/tekton-pipelines/crds/customruns.tekton.dev-crd.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ metadata:
labels:
app.kubernetes.io/instance: default
app.kubernetes.io/part-of: tekton-pipelines
pipeline.tekton.dev/release: "v1.9.2"
version: "v1.9.2"
pipeline.tekton.dev/release: "v1.12.0"
version: "v1.12.0"
spec:
group: tekton.dev
preserveUnknownFields: false
Expand Down
476 changes: 449 additions & 27 deletions charts/tekton-pipelines/crds/pipelineruns.tekton.dev-crd.yaml

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions charts/tekton-pipelines/crds/pipelines.tekton.dev-crd.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ metadata:
labels:
app.kubernetes.io/instance: default
app.kubernetes.io/part-of: tekton-pipelines
pipeline.tekton.dev/release: "v1.9.2"
version: "v1.9.2"
pipeline.tekton.dev/release: "v1.12.0"
version: "v1.12.0"
spec:
group: tekton.dev
preserveUnknownFields: false
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,6 @@ spec:
categories:
- tekton
- tekton-pipelines
shortNames:
- resolutionrequest
- resolutionrequests
versions:
- name: v1alpha1
served: true
Expand Down
84 changes: 80 additions & 4 deletions charts/tekton-pipelines/crds/stepactions.tekton.dev-crd.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ metadata:
labels:
app.kubernetes.io/instance: default
app.kubernetes.io/part-of: tekton-pipelines
pipeline.tekton.dev/release: "v1.9.2"
version: "v1.9.2"
pipeline.tekton.dev/release: "v1.12.0"
version: "v1.12.0"
spec:
group: tekton.dev
preserveUnknownFields: false
Expand Down Expand Up @@ -101,7 +101,9 @@ spec:
- name
properties:
name:
description: Name of the environment variable. Must be a C_IDENTIFIER.
description: |-
Name of the environment variable.
May consist of any printable ASCII characters except '='.
type: string
value:
description: |-
Expand Down Expand Up @@ -156,6 +158,42 @@ spec:
description: Path of the field to select in the specified API version.
type: string
x-kubernetes-map-type: atomic
fileKeyRef:
description: |-
FileKeyRef selects a key of the env file.
Requires the EnvFiles feature gate to be enabled.
type: object
required:
- key
- path
- volumeName
properties:
key:
description: |-
The key within the env file. An invalid key will prevent the pod from starting.
The keys defined within a source may consist of any printable ASCII characters except '='.
During Alpha stage of the EnvFiles feature gate, the key size is limited to 128 characters.
type: string
optional:
description: |-
Specify whether the file or its key must be defined. If the file or key
does not exist, then the env var is not published.
If optional is set to true and the specified key does not exist,
the environment variable will not be set in the Pod's containers.

If optional is set to false and the specified key does not exist,
an error will be returned during Pod creation.
type: boolean
default: false
path:
description: |-
The path within the volume from which to select the file.
Must be relative and may not contain the '..' path or start with '..'.
type: string
volumeName:
description: The name of the volume mount containing the env file.
type: string
x-kubernetes-map-type: atomic
resourceFieldRef:
description: |-
Selects a resource of the container: only resources limits and requests
Expand Down Expand Up @@ -616,7 +654,9 @@ spec:
- name
properties:
name:
description: Name of the environment variable. Must be a C_IDENTIFIER.
description: |-
Name of the environment variable.
May consist of any printable ASCII characters except '='.
type: string
value:
description: |-
Expand Down Expand Up @@ -671,6 +711,42 @@ spec:
description: Path of the field to select in the specified API version.
type: string
x-kubernetes-map-type: atomic
fileKeyRef:
description: |-
FileKeyRef selects a key of the env file.
Requires the EnvFiles feature gate to be enabled.
type: object
required:
- key
- path
- volumeName
properties:
key:
description: |-
The key within the env file. An invalid key will prevent the pod from starting.
The keys defined within a source may consist of any printable ASCII characters except '='.
During Alpha stage of the EnvFiles feature gate, the key size is limited to 128 characters.
type: string
optional:
description: |-
Specify whether the file or its key must be defined. If the file or key
does not exist, then the env var is not published.
If optional is set to true and the specified key does not exist,
the environment variable will not be set in the Pod's containers.

If optional is set to false and the specified key does not exist,
an error will be returned during Pod creation.
type: boolean
default: false
path:
description: |-
The path within the volume from which to select the file.
Must be relative and may not contain the '..' path or start with '..'.
type: string
volumeName:
description: The name of the volume mount containing the env file.
type: string
x-kubernetes-map-type: atomic
resourceFieldRef:
description: |-
Selects a resource of the container: only resources limits and requests
Expand Down
Loading
Loading