Argo CD · Schema

v1alpha1ApplicationDestinationServiceAccount

ApplicationDestinationServiceAccount holds information about the service account to be impersonated for the application sync operation.

Continuous DeliveryContainersDeploymentGitOpsKubernetesCNCFOpen Source

Properties

Name Type Description
defaultServiceAccount string
namespace string Namespace specifies the target namespace for the application's resources.
server string Server specifies the URL of the target cluster's Kubernetes control plane API.
View JSON Schema on GitHub

JSON Schema

argo-cd-v1alpha1-application-destination-service-account-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-application-destination-service-account-schema.json",
  "title": "v1alpha1ApplicationDestinationServiceAccount",
  "description": "ApplicationDestinationServiceAccount holds information about the service account to be impersonated for the application sync operation.",
  "type": "object",
  "properties": {
    "defaultServiceAccount": {
      "type": "string",
      "title": "DefaultServiceAccount to be used for impersonation during the sync operation"
    },
    "namespace": {
      "description": "Namespace specifies the target namespace for the application's resources.",
      "type": "string"
    },
    "server": {
      "description": "Server specifies the URL of the target cluster's Kubernetes control plane API.",
      "type": "string"
    }
  }
}