Argo CD · Schema

v1alpha1SCMProviderGeneratorGitea

SCMProviderGeneratorGitea defines a connection info specific to Gitea.

Continuous DeliveryContainersDeploymentGitOpsKubernetesCNCFOpen Source

Properties

Name Type Description
allBranches boolean Scan all branches instead of just the default branch.
api string The Gitea URL to talk to. For example https://gitea.mydomain.com/.
excludeArchivedRepos boolean Exclude repositories that are archived.
insecure boolean
owner string Gitea organization or user to scan. Required.
tokenRef object
View JSON Schema on GitHub

JSON Schema

argo-cd-v1alpha1-scm-provider-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-scm-provider-generator-gitea-schema.json",
  "title": "v1alpha1SCMProviderGeneratorGitea",
  "description": "SCMProviderGeneratorGitea defines a connection info specific to Gitea.",
  "type": "object",
  "properties": {
    "allBranches": {
      "description": "Scan all branches instead of just the default branch.",
      "type": "boolean"
    },
    "api": {
      "description": "The Gitea URL to talk to. For example https://gitea.mydomain.com/.",
      "type": "string"
    },
    "excludeArchivedRepos": {
      "description": "Exclude repositories that are archived.",
      "type": "boolean"
    },
    "insecure": {
      "type": "boolean",
      "title": "Allow self-signed TLS / Certificates; default: false"
    },
    "owner": {
      "description": "Gitea organization or user to scan. Required.",
      "type": "string"
    },
    "tokenRef": {
      "$ref": "#/definitions/v1alpha1SecretRef"
    }
  }
}