Argo CD · JSON Structure

Argo Cd V1 Port Status Structure

v1PortStatus schema from Argo CD API

Type: object Properties: 3
Continuous DeliveryContainersDeploymentGitOpsKubernetesCNCFOpen Source

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

Properties

error port protocol

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-v1-port-status-structure.json",
  "name": "v1PortStatus",
  "description": "v1PortStatus schema from Argo CD API",
  "type": "object",
  "properties": {
    "error": {
      "type": "string",
      "name": "Error is to record the problem with the service port\nThe format of the error shall comply with the following rules:\n- built-in error values shall be specified in this file and those shall use\n  CamelCase names\n- cloud provider specific error values must have names that comply with the\n  format foo.example.com/CamelCase.\n---\nThe regex it matches is (dns1123SubdomainFmt/)?(qualifiedNameFmt)\n+optional\n+kubebuilder:validation:Required\n+kubebuilder:validation:Pattern=`^([a-z0-9]([-a-z0-9]*[a-z0-9])?(\\.[a-z0-9]([-a-z0-9]*[a-z0-9])?)*/)?(([A-Za-z0-9][-A-Za-z0-9_.]*)?[A-Za-z0-9])$`\n+kubebuilder:validation:MaxLength=316"
    },
    "port": {
      "type": "int32",
      "name": "Port is the port number of the service port of which status is recorded here"
    },
    "protocol": {
      "type": "string",
      "name": "Protocol is the protocol of the service port of which status is recorded here\nThe supported values are: \"TCP\", \"UDP\", \"SCTP\""
    }
  }
}