Argo CD · Schema
v1alpha1ResourceNetworkingInfo
ResourceNetworkingInfo holds networking-related information for a resource.
Continuous DeliveryContainersDeploymentGitOpsKubernetesCNCFOpen Source
Properties
| Name | Type | Description |
|---|---|---|
| externalURLs | array | ExternalURLs holds a list of URLs that should be accessible externally. This field is typically populated for Ingress resources based on their hostname rules. |
| ingress | array | Ingress provides information about external access points (e.g., load balancer ingress) for this resource. |
| labels | object | Labels holds the labels associated with this networking resource. |
| targetLabels | object | TargetLabels represents labels associated with the target resources that this resource communicates with. |
| targetRefs | array | TargetRefs contains references to other resources that this resource interacts with, such as Services or Pods. |
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-networking-info-schema.json",
"title": "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"
}
}
}
}