Argo CD · Schema
v1alpha1ResourceOverride
v1alpha1ResourceOverride schema from Argo CD API
Continuous DeliveryContainersDeploymentGitOpsKubernetesCNCFOpen Source
Properties
| Name | Type | Description |
|---|---|---|
| actions | string | Actions defines the set of actions that can be performed on the resource, as a Lua script. |
| healthLua | string | HealthLua contains a Lua script that defines custom health checks for the resource. |
| ignoreDifferences | object | |
| ignoreResourceUpdates | object | |
| knownTypeFields | array | KnownTypeFields lists fields for which unit conversions should be applied. |
| useOpenLibs | boolean | UseOpenLibs indicates whether to use open-source libraries for the resource. |
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-resource-override-schema.json",
"title": "v1alpha1ResourceOverride",
"description": "v1alpha1ResourceOverride schema from Argo CD API",
"type": "object",
"properties": {
"actions": {
"description": "Actions defines the set of actions that can be performed on the resource, as a Lua script.",
"type": "string"
},
"healthLua": {
"description": "HealthLua contains a Lua script that defines custom health checks for the resource.",
"type": "string"
},
"ignoreDifferences": {
"$ref": "#/definitions/v1alpha1OverrideIgnoreDiff"
},
"ignoreResourceUpdates": {
"$ref": "#/definitions/v1alpha1OverrideIgnoreDiff"
},
"knownTypeFields": {
"description": "KnownTypeFields lists fields for which unit conversions should be applied.",
"type": "array",
"items": {
"$ref": "#/definitions/v1alpha1KnownTypeField"
}
},
"useOpenLibs": {
"description": "UseOpenLibs indicates whether to use open-source libraries for the resource.",
"type": "boolean"
}
}
}