Argo CD · JSON Structure

Argo Cd V1Alpha1 Cluster Config Structure

ClusterConfig is the configuration attributes. This structure is subset of the go-client rest.Config with annotations added for marshalling.

Type: object Properties: 8
Continuous DeliveryContainersDeploymentGitOpsKubernetesCNCFOpen Source

v1alpha1ClusterConfig is a JSON Structure definition published by Argo CD, describing 8 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

awsAuthConfig bearerToken disableCompression execProviderConfig password proxyUrl tlsClientConfig username

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/argo-cd/refs/heads/main/json-structure/argo-cd-v1alpha1-cluster-config-structure.json",
  "name": "v1alpha1ClusterConfig",
  "description": "ClusterConfig is the configuration attributes. This structure is subset of the go-client\nrest.Config with annotations added for marshalling.",
  "type": "object",
  "properties": {
    "awsAuthConfig": {
      "$ref": "#/definitions/v1alpha1AWSAuthConfig"
    },
    "bearerToken": {
      "description": "Server requires Bearer authentication. This client will not attempt to use\nrefresh tokens for an OAuth2 flow.\nTODO: demonstrate an OAuth2 compatible client.",
      "type": "string"
    },
    "disableCompression": {
      "description": "DisableCompression bypasses automatic GZip compression requests to the server.",
      "type": "boolean"
    },
    "execProviderConfig": {
      "$ref": "#/definitions/v1alpha1ExecProviderConfig"
    },
    "password": {
      "type": "string"
    },
    "proxyUrl": {
      "type": "string",
      "name": "ProxyURL is the URL to the proxy to be used for all requests send to the server"
    },
    "tlsClientConfig": {
      "$ref": "#/definitions/v1alpha1TLSClientConfig"
    },
    "username": {
      "type": "string",
      "name": "Server requires Basic authentication"
    }
  }
}