{
  "description": "CSIDriverConfig is the Schema for the csidriverconfigs API",
  "properties": {
    "apiVersion": {
      "description": "APIVersion defines the versioned schema of this representation of an object.\nServers should convert recognized schemas to the latest internal value, and\nmay reject unrecognized values.\nMore info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
      "type": [
        "string",
        "null"
      ]
    },
    "kind": {
      "description": "Kind is a string value representing the REST resource this object represents.\nServers may infer this from the endpoint the client submits requests to.\nCannot be updated.\nIn CamelCase.\nMore info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
      "type": [
        "string",
        "null"
      ]
    },
    "metadata": {
      "type": [
        "object",
        "null"
      ]
    },
    "spec": {
      "additionalProperties": false,
      "description": "CSIDriverConfigSpec defines the desired state of CSIDriverConfig",
      "properties": {
        "controllerEndpoint": {
          "description": "ControllerEndpoint is the gRPC endpoint for the CSI Controller service.\nMust be a valid network URI (e.g. dns:///csi-service:9000 or tcp://127.0.0.1:9000).",
          "pattern": "^(tcp|dns)://.+$",
          "type": "string"
        },
        "driverName": {
          "description": "DriverName is the standard CSI driver name (e.g. \"hostpath.csi.k8s.io\").\nMatches the StorageClass referenced in ActorTemplate volume definitions.",
          "maxLength": 63,
          "minLength": 1,
          "pattern": "^(substrate\\.io/)?([a-z0-9]([-a-z0-9]*[a-z0-9])?(\\.[a-z0-9]([-a-z0-9]*[a-z0-9])?)*)$",
          "type": "string"
        },
        "nodeSocketOverride": {
          "description": "NodeSocketOverride is an optional override for the CSI Node service socket\non the worker nodes. If empty, ATE defaults to unix:///var/lib/kubelet/plugins/[DriverName]/csi.sock.",
          "pattern": "^unix://.+$",
          "type": [
            "string",
            "null"
          ]
        }
      },
      "required": [
        "controllerEndpoint",
        "driverName"
      ],
      "type": "object"
    }
  },
  "required": [
    "spec"
  ],
  "type": "object"
}