Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
8 changes: 6 additions & 2 deletions .tekton/operator-1-1-z-push.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@ metadata:
build.appstudio.openshift.io/repo: https://github.com/trustification/trusted-profile-analyzer-operator?rev={{revision}}
build.appstudio.redhat.com/commit_sha: '{{revision}}'
build.appstudio.redhat.com/target_branch: '{{target_branch}}'
build.appstudio.openshift.io/build-nudge-files: ".*Dockerfile.*, .*.yaml, .*Containerfile.*. , .*.json"
pipelinesascode.tekton.dev/cancel-in-progress: "false"
pipelinesascode.tekton.dev/max-keep-runs: "3"
pipelinesascode.tekton.dev/on-cel-expression: event == "push" && target_branch
== "release/1.1.z"
pipelinesascode.tekton.dev/on-cel-expression: event == "push" && target_branch == "release/1.1.z" && !files.all.all(f, f.matches('bundle/'))
creationTimestamp: null
labels:
appstudio.openshift.io/application: rhtpa-operator-1-1-z
Expand All @@ -32,6 +32,10 @@ spec:
value: Dockerfile
- name: path-context
value: .
- name: build-source-image
value: "true"
- name: hermetic
value: "true"
pipelineSpec:
description: |
This pipeline is ideal for building container images from a Containerfile while maintaining trust after pipeline customization.
Expand Down
8 changes: 6 additions & 2 deletions .tekton/operator-bundle-1-1-z-push.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@ metadata:
build.appstudio.openshift.io/repo: https://github.com/trustification/trusted-profile-analyzer-operator?rev={{revision}}
build.appstudio.redhat.com/commit_sha: '{{revision}}'
build.appstudio.redhat.com/target_branch: '{{target_branch}}'
build.appstudio.openshift.io/build-nudge-files: ".*Dockerfile.*, .*.yaml, .*Containerfile.*., .*.json"
pipelinesascode.tekton.dev/cancel-in-progress: "false"
pipelinesascode.tekton.dev/max-keep-runs: "3"
pipelinesascode.tekton.dev/on-cel-expression: event == "push" && target_branch
== "release/1.1.z"
pipelinesascode.tekton.dev/on-cel-expression: event == "push" && target_branch == "release/1.1.z"
creationTimestamp: null
labels:
appstudio.openshift.io/application: rhtpa-operator-1-1-z
Expand All @@ -32,6 +32,10 @@ spec:
value: bundle.Dockerfile
- name: path-context
value: .
- name: build-source-image
value: "true"
- name: hermetic
value: "true"
pipelineSpec:
description: |
This pipeline is ideal for building container images from a Containerfile while maintaining trust after pipeline customization.
Expand Down