list_applications
Filter and list ArgoCD applications by project, name, repository, or namespace, with optional application reconciliation using the refresh parameter.
Instructions
List applications in ArgoCD with filtering options
Args:
project: Filter applications by project name
name: Filter applications by name
repo: Filter applications by repository URL
namespace: Filter applications by namespace
refresh: Forces application reconciliation if set to 'hard' or 'normal'
Returns:
List of applications with pagination information
Input Schema
Name | Required | Description | Default |
---|---|---|---|
name | No | ||
namespace | No | ||
project | No | ||
refresh | No | ||
repo | No |
Input Schema (JSON Schema)
{
"properties": {
"name": {
"default": "",
"title": "Name",
"type": "string"
},
"namespace": {
"default": "",
"title": "Namespace",
"type": "string"
},
"project": {
"default": "",
"title": "Project",
"type": "string"
},
"refresh": {
"default": "",
"title": "Refresh",
"type": "string"
},
"repo": {
"default": "",
"title": "Repo",
"type": "string"
}
},
"title": "list_applicationsArguments",
"type": "object"
}