{
  "description": "ImageSet is used to specify image digests for the images that the operator deploys.\nThe name of the ImageSet is expected to be in the format `<variant>-<release>`.\nThe `variant` used is `enterprise` if the InstallationSpec Variant is\n`TigeraSecureEnterprise` otherwise it is `calico`.\nThe `release` must match the version of the variant that the operator is built to deploy,\nthis version can be obtained by passing the `--version` flag to the operator binary.",
  "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"
    },
    "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"
    },
    "metadata": {
      "type": "object"
    },
    "spec": {
      "description": "ImageSetSpec defines the desired state of ImageSet.",
      "properties": {
        "images": {
          "description": "Images is the list of images to use digests. All images that the operator will deploy\nmust be specified.",
          "items": {
            "properties": {
              "digest": {
                "description": "Digest is the image identifier that will be used for the Image.\nThe field should not include a leading `@` and must be prefixed with `sha256:`.",
                "type": "string"
              },
              "image": {
                "description": "Image is an image that the operator deploys and instead of using the built in tag\nthe operator will use the Digest for the image identifier.\nThe value should be the *original* image name without registry or tag or digest.\nFor the image `docker.io/calico/node:v3.17.1` it should be represented as `calico/node`\nThe \"Installation\" spec allows defining custom image registries, paths or prefixes.\nEven for custom images such as example.com/custompath/customprefix-calico-node:v3.17.1,\nthis value should still be `calico/node`.",
                "type": "string"
              }
            },
            "required": [
              "digest",
              "image"
            ],
            "type": "object",
            "additionalProperties": false
          },
          "type": "array"
        }
      },
      "type": "object",
      "additionalProperties": false
    }
  },
  "type": "object"
}
