Argo CD · JSON Structure

Argo Cd V1Alpha1 Resource Networking Info Structure

ResourceNetworkingInfo holds networking-related information for a resource.

Type: object Properties: 5
Continuous DeliveryContainersDeploymentGitOpsKubernetesCNCFOpen Source

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

Properties

externalURLs ingress labels targetLabels targetRefs

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-resource-networking-info-structure.json",
  "name": "v1alpha1ResourceNetworkingInfo",
  "description": "ResourceNetworkingInfo holds networking-related information for a resource.",
  "type": "object",
  "properties": {
    "externalURLs": {
      "description": "ExternalURLs holds a list of URLs that should be accessible externally.\nThis field is typically populated for Ingress resources based on their hostname rules.",
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "ingress": {
      "description": "Ingress provides information about external access points (e.g., load balancer ingress) for this resource.",
      "type": "array",
      "items": {
        "$ref": "#/definitions/v1LoadBalancerIngress"
      }
    },
    "labels": {
      "description": "Labels holds the labels associated with this networking resource.",
      "type": "object",
      "additionalProperties": {
        "type": "string"
      }
    },
    "targetLabels": {
      "description": "TargetLabels represents labels associated with the target resources that this resource communicates with.",
      "type": "object",
      "additionalProperties": {
        "type": "string"
      }
    },
    "targetRefs": {
      "description": "TargetRefs contains references to other resources that this resource interacts with, such as Services or Pods.",
      "type": "array",
      "items": {
        "$ref": "#/definitions/v1alpha1ResourceRef"
      }
    }
  }
}