-
Notifications
You must be signed in to change notification settings - Fork 60
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #156 from nikhil-thomas/release-v0.9.0
Release-v0.9.0
- Loading branch information
Showing
38 changed files
with
3,337 additions
and
94 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
2 changes: 1 addition & 1 deletion
2
deploy/olm-catalog/openshift-pipelines-operator/openshift-pipelines-operator.package.yaml
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
56 changes: 56 additions & 0 deletions
56
deploy/resources/v0.9.2/addons/clustertasks/buildah/buildah-task.yaml
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,56 @@ | ||
# auto generated by script/update-tasks.sh | ||
# DO NOT EDIT: use the script instead | ||
# source: https://raw.githubusercontent.com/openshift/tektoncd-catalog/release-v0.8/buildah/buildah.yaml | ||
# | ||
--- | ||
--- | ||
apiVersion: tekton.dev/v1alpha1 | ||
kind: ClusterTask | ||
metadata: | ||
name: buildah | ||
spec: | ||
inputs: | ||
params: | ||
- name: BUILDER_IMAGE | ||
description: The location of the buildah builder image. | ||
default: quay.io/buildah/stable:v1.11.0 | ||
- name: DOCKERFILE | ||
description: Path to the Dockerfile to build. | ||
default: ./Dockerfile | ||
- name: TLSVERIFY | ||
description: Verify the TLS on the registry endpoint (for push/pull to a non-TLS registry) | ||
default: "true" | ||
|
||
resources: | ||
- name: source | ||
type: git | ||
|
||
outputs: | ||
resources: | ||
- name: image | ||
type: image | ||
|
||
steps: | ||
- name: build | ||
image: $(inputs.params.BUILDER_IMAGE) | ||
workingDir: /workspace/source | ||
command: ['buildah', 'bud', '--tls-verify=$(inputs.params.TLSVERIFY)', '--layers', '-f', '$(inputs.params.DOCKERFILE)', '-t', '$(outputs.resources.image.url)', '.'] | ||
volumeMounts: | ||
- name: varlibcontainers | ||
mountPath: /var/lib/containers | ||
securityContext: | ||
privileged: true | ||
|
||
- name: push | ||
image: $(inputs.params.BUILDER_IMAGE) | ||
workingDir: /workspace/source | ||
command: ['buildah', 'push', '--tls-verify=$(inputs.params.TLSVERIFY)', '$(outputs.resources.image.url)', 'docker://$(outputs.resources.image.url)'] | ||
volumeMounts: | ||
- name: varlibcontainers | ||
mountPath: /var/lib/containers | ||
securityContext: | ||
privileged: true | ||
|
||
volumes: | ||
- name: varlibcontainers | ||
emptyDir: {} |
56 changes: 56 additions & 0 deletions
56
deploy/resources/v0.9.2/addons/clustertasks/buildah/buildah-v0-8-0-task.yaml
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,56 @@ | ||
# auto generated by script/update-tasks.sh | ||
# DO NOT EDIT: use the script instead | ||
# source: https://raw.githubusercontent.com/openshift/tektoncd-catalog/release-v0.8/buildah/buildah.yaml | ||
# | ||
--- | ||
--- | ||
apiVersion: tekton.dev/v1alpha1 | ||
kind: ClusterTask | ||
metadata: | ||
name: buildah-v0-8-0 | ||
spec: | ||
inputs: | ||
params: | ||
- name: BUILDER_IMAGE | ||
description: The location of the buildah builder image. | ||
default: quay.io/buildah/stable:v1.11.0 | ||
- name: DOCKERFILE | ||
description: Path to the Dockerfile to build. | ||
default: ./Dockerfile | ||
- name: TLSVERIFY | ||
description: Verify the TLS on the registry endpoint (for push/pull to a non-TLS registry) | ||
default: "true" | ||
|
||
resources: | ||
- name: source | ||
type: git | ||
|
||
outputs: | ||
resources: | ||
- name: image | ||
type: image | ||
|
||
steps: | ||
- name: build | ||
image: $(inputs.params.BUILDER_IMAGE) | ||
workingDir: /workspace/source | ||
command: ['buildah', 'bud', '--tls-verify=$(inputs.params.TLSVERIFY)', '--layers', '-f', '$(inputs.params.DOCKERFILE)', '-t', '$(outputs.resources.image.url)', '.'] | ||
volumeMounts: | ||
- name: varlibcontainers | ||
mountPath: /var/lib/containers | ||
securityContext: | ||
privileged: true | ||
|
||
- name: push | ||
image: $(inputs.params.BUILDER_IMAGE) | ||
workingDir: /workspace/source | ||
command: ['buildah', 'push', '--tls-verify=$(inputs.params.TLSVERIFY)', '$(outputs.resources.image.url)', 'docker://$(outputs.resources.image.url)'] | ||
volumeMounts: | ||
- name: varlibcontainers | ||
mountPath: /var/lib/containers | ||
securityContext: | ||
privileged: true | ||
|
||
volumes: | ||
- name: varlibcontainers | ||
emptyDir: {} |
16 changes: 16 additions & 0 deletions
16
deploy/resources/v0.9.2/addons/clustertasks/cluster-role.yaml
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,16 @@ | ||
apiVersion: rbac.authorization.k8s.io/v1 | ||
kind: ClusterRole | ||
metadata: | ||
annotations: | ||
labels: | ||
rbac.authorization.k8s.io/aggregate-to-view: "true" | ||
name: tekton-clustertasks-view | ||
rules: | ||
- apiGroups: | ||
- tekton.dev | ||
resources: | ||
- clustertasks | ||
verbs: | ||
- get | ||
- list | ||
- watch |
12 changes: 12 additions & 0 deletions
12
deploy/resources/v0.9.2/addons/clustertasks/cluster-rolebinding.yaml
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,12 @@ | ||
kind: ClusterRoleBinding | ||
apiVersion: rbac.authorization.k8s.io/v1 | ||
metadata: | ||
name: tekton-clustertasks-view-auth | ||
roleRef: | ||
kind: ClusterRole | ||
name: tekton-clustertasks-view | ||
apiGroup: rbac.authorization.k8s.io | ||
subjects: | ||
- apiGroup: rbac.authorization.k8s.io | ||
kind: Group | ||
name: system:authenticated |
23 changes: 23 additions & 0 deletions
23
deploy/resources/v0.9.2/addons/clustertasks/openshift-client/openshift-client-task.yaml
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,23 @@ | ||
# auto generated by script/update-tasks.sh | ||
# DO NOT EDIT: use the script instead | ||
# source: https://raw.githubusercontent.com/openshift/tektoncd-catalog/release-v0.8/openshift-client/openshift-client-task.yaml | ||
# | ||
--- | ||
apiVersion: tekton.dev/v1alpha1 | ||
kind: ClusterTask | ||
metadata: | ||
name: openshift-client | ||
spec: | ||
inputs: | ||
params: | ||
- name: ARGS | ||
description: The OpenShift CLI arguments to run | ||
type: array | ||
default: | ||
- "help" | ||
steps: | ||
- name: oc | ||
image: quay.io/openshift/origin-cli:latest | ||
command: ["/usr/bin/oc"] | ||
args: | ||
- "$(inputs.params.ARGS)" |
23 changes: 23 additions & 0 deletions
23
...y/resources/v0.9.2/addons/clustertasks/openshift-client/openshift-client-v0-8-0-task.yaml
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,23 @@ | ||
# auto generated by script/update-tasks.sh | ||
# DO NOT EDIT: use the script instead | ||
# source: https://raw.githubusercontent.com/openshift/tektoncd-catalog/release-v0.8/openshift-client/openshift-client-task.yaml | ||
# | ||
--- | ||
apiVersion: tekton.dev/v1alpha1 | ||
kind: ClusterTask | ||
metadata: | ||
name: openshift-client-v0-8-0 | ||
spec: | ||
inputs: | ||
params: | ||
- name: ARGS | ||
description: The OpenShift CLI arguments to run | ||
type: array | ||
default: | ||
- "help" | ||
steps: | ||
- name: oc | ||
image: quay.io/openshift/origin-cli:latest | ||
command: ["/usr/bin/oc"] | ||
args: | ||
- "$(inputs.params.ARGS)" |
Oops, something went wrong.