Argo CD · Schema

v1alpha1PullRequestGeneratorGitea

PullRequestGeneratorGitea defines connection info specific to Gitea.

Continuous DeliveryContainersDeploymentGitOpsKubernetesCNCFOpen Source

Properties

Name Type Description
api string
insecure boolean Allow insecure tls, for self-signed certificates; default: false.
labels array
owner string Gitea org or user to scan. Required.
repo string Gitea repo name to scan. Required.
tokenRef object
View JSON Schema on GitHub

JSON Schema

argo-cd-v1alpha1-pull-request-generator-gitea-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/argo-cd/refs/heads/main/json-schema/argo-cd-v1alpha1-pull-request-generator-gitea-schema.json",
  "title": "v1alpha1PullRequestGeneratorGitea",
  "description": "PullRequestGeneratorGitea defines connection info specific to Gitea.",
  "type": "object",
  "properties": {
    "api": {
      "type": "string",
      "title": "The Gitea API URL to talk to. Required"
    },
    "insecure": {
      "description": "Allow insecure tls, for self-signed certificates; default: false.",
      "type": "boolean"
    },
    "labels": {
      "type": "array",
      "title": "Labels is used to filter the PRs that you want to target",
      "items": {
        "type": "string"
      }
    },
    "owner": {
      "description": "Gitea org or user to scan. Required.",
      "type": "string"
    },
    "repo": {
      "description": "Gitea repo name to scan. Required.",
      "type": "string"
    },
    "tokenRef": {
      "$ref": "#/definitions/v1alpha1SecretRef"
    }
  }
}