61 lines
1.9 KiB
HCL
61 lines
1.9 KiB
HCL
locals {
|
|
common-labels = {
|
|
"vynil.solidite.fr/owner-name" = var.instance
|
|
"vynil.solidite.fr/owner-namespace" = var.namespace
|
|
"vynil.solidite.fr/owner-category" = var.category
|
|
"vynil.solidite.fr/owner-component" = var.component
|
|
"app.kubernetes.io/managed-by" = "vynil"
|
|
"app.kubernetes.io/name" = var.component
|
|
"app.kubernetes.io/instance" = var.instance
|
|
}
|
|
}
|
|
|
|
data "kustomization_overlay" "data" {
|
|
namespace = var.namespace
|
|
common_labels = local.common-labels
|
|
resources = [for file in fileset(path.module, "*.yaml"): file if file != "index.yaml"]
|
|
patches {
|
|
target {
|
|
kind = "Task"
|
|
name = "gitea-set-status"
|
|
}
|
|
patch = <<-EOF
|
|
- op: add
|
|
path: /spec/params/0/default
|
|
value: gitea-http.${var.domain}-ci.svc:3000
|
|
- op: replace
|
|
path: /spec/params/1/default
|
|
value: http
|
|
EOF
|
|
}
|
|
}
|
|
apiVersion: tekton.dev/v1beta1
|
|
kind: Task
|
|
metadata:
|
|
name: gitea-set-status
|
|
labels:
|
|
app.kubernetes.io/version: "0.1"
|
|
annotations:
|
|
tekton.dev/categories: Git
|
|
tekton.dev/pipelines.minVersion: "0.12.1"
|
|
tekton.dev/tags: gitea
|
|
tekton.dev/displayName: "set gitea status"
|
|
tekton.dev/platforms: "linux/amd64,linux/s390x,linux/ppc64le"
|
|
spec:
|
|
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.
|
|
|
|
The `gitea-set-status` task allows external services to mark Gitea commits
|
|
with an `error`, `failure`, `pending`, or `success` state, which is then
|
|
reflected in pull requests involving those commits. Statuses include as well a
|
|
`description` and a `target_url`, to give the user informations about the CI
|
|
statuses or a direct link to the full log.
|
|
|
|
params:
|
|
- name: GITEA_HOST_URL
|
|
description: |
|
|
The Gitea host, e.g: git.yourcompany.com. Can include port.
|
|
type: string
|