This commit is contained in:
2024-05-12 17:07:53 +02:00
parent e113e7e2d0
commit f938c8602e

View File

@@ -12,7 +12,6 @@ resource "kubectl_manifest" "Task_python-coverage" {
tekton.dev/displayName: python coverage tekton.dev/displayName: python coverage
tekton.dev/platforms: linux/amd64,linux/s390x,linux/ppc64le tekton.dev/platforms: linux/amd64,linux/s390x,linux/ppc64le
namespace: ${var.namespace} namespace: ${var.namespace}
ownerReferences: ${jsonencode(var.install_owner)}
spec: spec:
description: This task can be used to measure code coverage of Python projects. description: This task can be used to measure code coverage of Python projects.
workspaces: workspaces:
@@ -69,7 +68,6 @@ resource "kubectl_manifest" "Task_npm" {
tekton.dev/tags: build-tool tekton.dev/tags: build-tool
tekton.dev/platforms: linux/amd64,linux/s390x,linux/ppc64le tekton.dev/platforms: linux/amd64,linux/s390x,linux/ppc64le
namespace: ${var.namespace} namespace: ${var.namespace}
ownerReferences: ${jsonencode(var.install_owner)}
spec: spec:
description: |- description: |-
This task can be used to run npm goals on a project. This task can be used to run npm goals on a project.
@@ -118,7 +116,6 @@ resource "kubectl_manifest" "Task_pytest" {
tekton.dev/displayName: pytest tekton.dev/displayName: pytest
tekton.dev/platforms: linux/amd64,linux/s390x,linux/ppc64le tekton.dev/platforms: linux/amd64,linux/s390x,linux/ppc64le
namespace: ${var.namespace} namespace: ${var.namespace}
ownerReferences: ${jsonencode(var.install_owner)}
spec: spec:
description: This task will run pytest on the provided input. description: This task will run pytest on the provided input.
workspaces: workspaces:
@@ -198,7 +195,6 @@ resource "kubectl_manifest" "Task_shellcheck" {
tekton.dev/displayName: Shellcheck tekton.dev/displayName: Shellcheck
tekton.dev/platforms: linux/amd64 tekton.dev/platforms: linux/amd64
namespace: ${var.namespace} namespace: ${var.namespace}
ownerReferences: ${jsonencode(var.install_owner)}
spec: spec:
description: This task can be used to perform lint check on Shell Script files description: This task can be used to perform lint check on Shell Script files
workspaces: workspaces:
@@ -235,7 +231,6 @@ resource "kubectl_manifest" "Task_markdown-lint" {
tekton.dev/displayName: Markdown linter tekton.dev/displayName: Markdown linter
tekton.dev/platforms: linux/amd64 tekton.dev/platforms: linux/amd64
namespace: ${var.namespace} namespace: ${var.namespace}
ownerReferences: ${jsonencode(var.install_owner)}
spec: spec:
description: This task can be used to perform lint check on Markdown files description: This task can be used to perform lint check on Markdown files
workspaces: workspaces:
@@ -272,7 +267,6 @@ resource "kubectl_manifest" "Task_black" {
tekton.dev/displayName: Python Black tekton.dev/displayName: Python Black
tekton.dev/platforms: linux/amd64 tekton.dev/platforms: linux/amd64
namespace: ${var.namespace} namespace: ${var.namespace}
ownerReferences: ${jsonencode(var.install_owner)}
spec: spec:
description: This task can be used to format Python code description: This task can be used to format Python code
workspaces: workspaces:
@@ -320,7 +314,6 @@ resource "kubectl_manifest" "Task_kube-linter" {
tekton.dev/displayName: Kube-Linter tekton.dev/displayName: Kube-Linter
tekton.dev/platforms: linux/amd64 tekton.dev/platforms: linux/amd64
namespace: ${var.namespace} namespace: ${var.namespace}
ownerReferences: ${jsonencode(var.install_owner)}
spec: spec:
description: |- description: |-
This task makes it possible to use kube-linter within Tekton Pipeline. This task makes it possible to use kube-linter within Tekton Pipeline.
@@ -412,7 +405,6 @@ resource "kubectl_manifest" "Task_yaml-lint" {
tekton.dev/displayName: YAML linter tekton.dev/displayName: YAML linter
tekton.dev/platforms: linux/amd64 tekton.dev/platforms: linux/amd64
namespace: ${var.namespace} namespace: ${var.namespace}
ownerReferences: ${jsonencode(var.install_owner)}
spec: spec:
description: This task can be used to perform lint check on YAML files description: This task can be used to perform lint check on YAML files
workspaces: workspaces:
@@ -449,7 +441,6 @@ resource "kubectl_manifest" "Task_buildpacks-phases" {
tekton.dev/displayName: Buildpacks (phases) tekton.dev/displayName: Buildpacks (phases)
tekton.dev/platforms: linux/amd64 tekton.dev/platforms: linux/amd64
namespace: ${var.namespace} namespace: ${var.namespace}
ownerReferences: ${jsonencode(var.install_owner)}
spec: spec:
description: The Buildpacks-Phases task builds source into a container image and pushes it to a registry, using Cloud Native Buildpacks. This task separately calls the aspects of the Cloud Native Buildpacks lifecycle, to provide increased security via container isolation. description: The Buildpacks-Phases task builds source into a container image and pushes it to a registry, using Cloud Native Buildpacks. This task separately calls the aspects of the Cloud Native Buildpacks lifecycle, to provide increased security via container isolation.
workspaces: workspaces:
@@ -685,7 +676,6 @@ resource "kubectl_manifest" "Task_sonarqube-scanner" {
tekton.dev/displayName: sonarqube scanner tekton.dev/displayName: sonarqube scanner
tekton.dev/platforms: linux/amd64 tekton.dev/platforms: linux/amd64
namespace: ${var.namespace} namespace: ${var.namespace}
ownerReferences: ${jsonencode(var.install_owner)}
spec: spec:
description: |- description: |-
The following task can be used to perform static analysis on the source code provided the SonarQube server is hosted The following task can be used to perform static analysis on the source code provided the SonarQube server is hosted
@@ -842,7 +832,6 @@ resource "kubectl_manifest" "Task_check-make" {
tekton.dev/displayName: Makefile linter tekton.dev/displayName: Makefile linter
tekton.dev/platforms: linux/amd64 tekton.dev/platforms: linux/amd64
namespace: ${var.namespace} namespace: ${var.namespace}
ownerReferences: ${jsonencode(var.install_owner)}
spec: spec:
description: This task can be used to perform lint check on Makefiles description: This task can be used to perform lint check on Makefiles
workspaces: workspaces:
@@ -879,7 +868,6 @@ resource "kubectl_manifest" "Task_gitea-set-status" {
tekton.dev/displayName: set gitea status tekton.dev/displayName: set gitea status
tekton.dev/platforms: linux/amd64,linux/s390x,linux/ppc64le tekton.dev/platforms: linux/amd64,linux/s390x,linux/ppc64le
namespace: ${var.namespace} namespace: ${var.namespace}
ownerReferences: ${jsonencode(var.install_owner)}
spec: spec:
description: |- description: |-
This task will set the status of the CI job to the specified value along with a link to the specified target URL where developers can follow the progress of the CI job. This task will set the status of the CI job to the specified value along with a link to the specified target URL where developers can follow the progress of the CI job.
@@ -1023,7 +1011,6 @@ resource "kubectl_manifest" "Task_hadolint" {
name: hadolint name: hadolint
labels: ${jsonencode(local.common_labels)} labels: ${jsonencode(local.common_labels)}
namespace: ${var.namespace} namespace: ${var.namespace}
ownerReferences: ${jsonencode(var.install_owner)}
spec: spec:
description: |- description: |-
This task makes it possible to use Hadolint within Tekton Pipeline. This task makes it possible to use Hadolint within Tekton Pipeline.
@@ -1084,7 +1071,6 @@ resource "kubectl_manifest" "Task_hugo" {
tekton.dev/displayName: Hugo tekton.dev/displayName: Hugo
tekton.dev/platforms: linux/amd64 tekton.dev/platforms: linux/amd64
namespace: ${var.namespace} namespace: ${var.namespace}
ownerReferences: ${jsonencode(var.install_owner)}
spec: spec:
description: |- description: |-
A Task that builds a Hugo site. A Task that builds a Hugo site.
@@ -1164,7 +1150,6 @@ resource "kubectl_manifest" "Task_buildah" {
tekton.dev/platforms: linux/amd64,linux/s390x,linux/ppc64le,linux/arm64 tekton.dev/platforms: linux/amd64,linux/s390x,linux/ppc64le,linux/arm64
tekton.dev/displayName: buildah tekton.dev/displayName: buildah
namespace: ${var.namespace} namespace: ${var.namespace}
ownerReferences: ${jsonencode(var.install_owner)}
spec: spec:
description: |- description: |-
Buildah task builds source into a container image and then pushes it to a container registry. Buildah task builds source into a container image and then pushes it to a container registry.
@@ -1257,7 +1242,6 @@ resource "kubectl_manifest" "Task_buildpacks" {
tekton.dev/displayName: Buildpacks tekton.dev/displayName: Buildpacks
tekton.dev/platforms: linux/amd64 tekton.dev/platforms: linux/amd64
namespace: ${var.namespace} namespace: ${var.namespace}
ownerReferences: ${jsonencode(var.install_owner)}
spec: spec:
description: The Buildpacks task builds source into a container image and pushes it to a registry, using Cloud Native Buildpacks. description: The Buildpacks task builds source into a container image and pushes it to a registry, using Cloud Native Buildpacks.
workspaces: workspaces:
@@ -1427,7 +1411,6 @@ resource "kubectl_manifest" "Task_kubeval" {
tekton.dev/tags: test tekton.dev/tags: test
tekton.dev/platforms: linux/amd64 tekton.dev/platforms: linux/amd64
namespace: ${var.namespace} namespace: ${var.namespace}
ownerReferences: ${jsonencode(var.install_owner)}
spec: spec:
description: |- description: |-
This task makes it possible to use Kubeval within your Tekton pipelines. This task makes it possible to use Kubeval within your Tekton pipelines.
@@ -1470,7 +1453,6 @@ resource "kubectl_manifest" "Task_pylint" {
tekton.dev/displayName: pylint tekton.dev/displayName: pylint
tekton.dev/platforms: linux/amd64 tekton.dev/platforms: linux/amd64
namespace: ${var.namespace} namespace: ${var.namespace}
ownerReferences: ${jsonencode(var.install_owner)}
spec: spec:
description: This task will run pylint on the provided input. description: This task will run pylint on the provided input.
workspaces: workspaces: