Argo CD · Schema
v1alpha1PullRequestGenerator
PullRequestGenerator defines a generator that scrapes a PullRequest API to find candidate pull requests.
Continuous DeliveryContainersDeploymentGitOpsKubernetesCNCFOpen Source
Properties
| Name | Type | Description |
|---|---|---|
| azuredevops | object | |
| bitbucket | object | |
| bitbucketServer | object | |
| continueOnRepoNotFoundError | boolean | ContinueOnRepoNotFoundError is a flag to continue the ApplicationSet Pull Request generator parameters generation even if the repository is not found. |
| filters | array | Filters for which pull requests should be considered. |
| gitea | object | |
| github | object | |
| gitlab | object | |
| requeueAfterSeconds | integer | Standard parameters. |
| template | object | |
| values | object |
JSON Schema
{
"$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-schema.json",
"title": "v1alpha1PullRequestGenerator",
"description": "PullRequestGenerator defines a generator that scrapes a PullRequest API to find candidate pull requests.",
"type": "object",
"properties": {
"azuredevops": {
"$ref": "#/definitions/v1alpha1PullRequestGeneratorAzureDevOps"
},
"bitbucket": {
"$ref": "#/definitions/v1alpha1PullRequestGeneratorBitbucket"
},
"bitbucketServer": {
"$ref": "#/definitions/v1alpha1PullRequestGeneratorBitbucketServer"
},
"continueOnRepoNotFoundError": {
"description": "ContinueOnRepoNotFoundError is a flag to continue the ApplicationSet Pull Request generator parameters generation even if the repository is not found.",
"type": "boolean"
},
"filters": {
"description": "Filters for which pull requests should be considered.",
"type": "array",
"items": {
"$ref": "#/definitions/v1alpha1PullRequestGeneratorFilter"
}
},
"gitea": {
"$ref": "#/definitions/v1alpha1PullRequestGeneratorGitea"
},
"github": {
"$ref": "#/definitions/v1alpha1PullRequestGeneratorGithub"
},
"gitlab": {
"$ref": "#/definitions/v1alpha1PullRequestGeneratorGitLab"
},
"requeueAfterSeconds": {
"description": "Standard parameters.",
"type": "integer",
"format": "int64"
},
"template": {
"$ref": "#/definitions/v1alpha1ApplicationSetTemplate"
},
"values": {
"type": "object",
"title": "Values contains key/value pairs which are passed directly as parameters to the template",
"additionalProperties": {
"type": "string"
}
}
}
}