Argo CD · Schema
clusterSettings
clusterSettings schema from Argo CD API
Continuous DeliveryContainersDeploymentGitOpsKubernetesCNCFOpen Source
Properties
| Name | Type | Description |
|---|---|---|
| additionalUrls | array | |
| appLabelKey | string | |
| appsInAnyNamespaceEnabled | boolean | |
| configManagementPlugins | array | Deprecated: use sidecar plugins instead. |
| controllerNamespace | string | |
| dexConfig | object | |
| execEnabled | boolean | |
| googleAnalytics | object | |
| help | object | |
| hydratorEnabled | boolean | |
| impersonationEnabled | boolean | |
| installationID | string | |
| kustomizeOptions | object | |
| kustomizeVersions | array | |
| oidcConfig | object | |
| passwordPattern | string | |
| plugins | array | |
| resourceOverrides | object | |
| statusBadgeEnabled | boolean | |
| statusBadgeRootUrl | string | |
| syncWithReplaceAllowed | boolean | |
| trackingMethod | string | |
| uiBannerContent | string | |
| uiBannerPermanent | boolean | |
| uiBannerPosition | string | |
| uiBannerURL | string | |
| uiCssURL | string | |
| url | string | |
| userLoginsDisabled | boolean |
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-cluster-settings-schema.json",
"title": "clusterSettings",
"description": "clusterSettings schema from Argo CD API",
"type": "object",
"properties": {
"additionalUrls": {
"type": "array",
"items": {
"type": "string"
}
},
"appLabelKey": {
"type": "string"
},
"appsInAnyNamespaceEnabled": {
"type": "boolean"
},
"configManagementPlugins": {
"description": "Deprecated: use sidecar plugins instead.",
"type": "array",
"items": {
"$ref": "#/definitions/v1alpha1ConfigManagementPlugin"
}
},
"controllerNamespace": {
"type": "string"
},
"dexConfig": {
"$ref": "#/definitions/clusterDexConfig"
},
"execEnabled": {
"type": "boolean"
},
"googleAnalytics": {
"$ref": "#/definitions/clusterGoogleAnalyticsConfig"
},
"help": {
"$ref": "#/definitions/clusterHelp"
},
"hydratorEnabled": {
"type": "boolean"
},
"impersonationEnabled": {
"type": "boolean"
},
"installationID": {
"type": "string"
},
"kustomizeOptions": {
"$ref": "#/definitions/v1alpha1KustomizeOptions"
},
"kustomizeVersions": {
"type": "array",
"items": {
"type": "string"
}
},
"oidcConfig": {
"$ref": "#/definitions/clusterOIDCConfig"
},
"passwordPattern": {
"type": "string"
},
"plugins": {
"type": "array",
"items": {
"$ref": "#/definitions/clusterPlugin"
}
},
"resourceOverrides": {
"type": "object",
"additionalProperties": {
"$ref": "#/definitions/v1alpha1ResourceOverride"
}
},
"statusBadgeEnabled": {
"type": "boolean"
},
"statusBadgeRootUrl": {
"type": "string"
},
"syncWithReplaceAllowed": {
"type": "boolean"
},
"trackingMethod": {
"type": "string"
},
"uiBannerContent": {
"type": "string"
},
"uiBannerPermanent": {
"type": "boolean"
},
"uiBannerPosition": {
"type": "string"
},
"uiBannerURL": {
"type": "string"
},
"uiCssURL": {
"type": "string"
},
"url": {
"type": "string"
},
"userLoginsDisabled": {
"type": "boolean"
}
}
}