{
    "description": "TempoMonolithic manages a Tempo deployment in monolithic mode.",
    "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": "TempoMonolithicSpec defines the desired state of TempoMonolithic.",
            "properties": {
                "affinity": {
                    "description": "Affinity defines the Affinity rules for scheduling pods.",
                    "properties": {
                        "nodeAffinity": {
                            "description": "Describes node affinity scheduling rules for the pod.",
                            "properties": {
                                "preferredDuringSchedulingIgnoredDuringExecution": {
                                    "description": "The scheduler will prefer to schedule pods to nodes that satisfy\nthe affinity expressions specified by this field, but it may choose\na node that violates one or more of the expressions. The node that is\nmost preferred is the one with the greatest sum of weights, i.e.\nfor each node that meets all of the scheduling requirements (resource\nrequest, requiredDuringScheduling affinity expressions, etc.),\ncompute a sum by iterating through the elements of this field and adding\n\"weight\" to the sum if the node matches the corresponding matchExpressions; the\nnode(s) with the highest sum are the most preferred.",
                                    "items": {
                                        "description": "An empty preferred scheduling term matches all objects with implicit weight 0\n(i.e. it's a no-op). A null preferred scheduling term matches no objects (i.e. is also a no-op).",
                                        "properties": {
                                            "preference": {
                                                "description": "A node selector term, associated with the corresponding weight.",
                                                "properties": {
                                                    "matchExpressions": {
                                                        "description": "A list of node selector requirements by node's labels.",
                                                        "items": {
                                                            "description": "A node selector requirement is a selector that contains values, a key, and an operator\nthat relates the key and values.",
                                                            "properties": {
                                                                "key": {
                                                                    "description": "The label key that the selector applies to.",
                                                                    "type": "string"
                                                                },
                                                                "operator": {
                                                                    "description": "Represents a key's relationship to a set of values.\nValid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt.",
                                                                    "type": "string"
                                                                },
                                                                "values": {
                                                                    "description": "An array of string values. If the operator is In or NotIn,\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\nthe values array must be empty. If the operator is Gt or Lt, the values\narray must have a single element, which will be interpreted as an integer.\nThis array is replaced during a strategic merge patch.",
                                                                    "items": {
                                                                        "type": "string"
                                                                    },
                                                                    "type": "array",
                                                                    "x-kubernetes-list-type": "atomic"
                                                                }
                                                            },
                                                            "required": [
                                                                "key",
                                                                "operator"
                                                            ],
                                                            "type": "object",
                                                            "additionalProperties": false
                                                        },
                                                        "type": "array",
                                                        "x-kubernetes-list-type": "atomic"
                                                    },
                                                    "matchFields": {
                                                        "description": "A list of node selector requirements by node's fields.",
                                                        "items": {
                                                            "description": "A node selector requirement is a selector that contains values, a key, and an operator\nthat relates the key and values.",
                                                            "properties": {
                                                                "key": {
                                                                    "description": "The label key that the selector applies to.",
                                                                    "type": "string"
                                                                },
                                                                "operator": {
                                                                    "description": "Represents a key's relationship to a set of values.\nValid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt.",
                                                                    "type": "string"
                                                                },
                                                                "values": {
                                                                    "description": "An array of string values. If the operator is In or NotIn,\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\nthe values array must be empty. If the operator is Gt or Lt, the values\narray must have a single element, which will be interpreted as an integer.\nThis array is replaced during a strategic merge patch.",
                                                                    "items": {
                                                                        "type": "string"
                                                                    },
                                                                    "type": "array",
                                                                    "x-kubernetes-list-type": "atomic"
                                                                }
                                                            },
                                                            "required": [
                                                                "key",
                                                                "operator"
                                                            ],
                                                            "type": "object",
                                                            "additionalProperties": false
                                                        },
                                                        "type": "array",
                                                        "x-kubernetes-list-type": "atomic"
                                                    }
                                                },
                                                "type": "object",
                                                "x-kubernetes-map-type": "atomic",
                                                "additionalProperties": false
                                            },
                                            "weight": {
                                                "description": "Weight associated with matching the corresponding nodeSelectorTerm, in the range 1-100.",
                                                "format": "int32",
                                                "type": "integer",
                                                "minimum": -2147483648,
                                                "maximum": 2147483647
                                            }
                                        },
                                        "required": [
                                            "preference",
                                            "weight"
                                        ],
                                        "type": "object",
                                        "additionalProperties": false
                                    },
                                    "type": "array",
                                    "x-kubernetes-list-type": "atomic"
                                },
                                "requiredDuringSchedulingIgnoredDuringExecution": {
                                    "description": "If the affinity requirements specified by this field are not met at\nscheduling time, the pod will not be scheduled onto the node.\nIf the affinity requirements specified by this field cease to be met\nat some point during pod execution (e.g. due to an update), the system\nmay or may not try to eventually evict the pod from its node.",
                                    "properties": {
                                        "nodeSelectorTerms": {
                                            "description": "Required. A list of node selector terms. The terms are ORed.",
                                            "items": {
                                                "description": "A null or empty node selector term matches no objects. The requirements of\nthem are ANDed.\nThe TopologySelectorTerm type implements a subset of the NodeSelectorTerm.",
                                                "properties": {
                                                    "matchExpressions": {
                                                        "description": "A list of node selector requirements by node's labels.",
                                                        "items": {
                                                            "description": "A node selector requirement is a selector that contains values, a key, and an operator\nthat relates the key and values.",
                                                            "properties": {
                                                                "key": {
                                                                    "description": "The label key that the selector applies to.",
                                                                    "type": "string"
                                                                },
                                                                "operator": {
                                                                    "description": "Represents a key's relationship to a set of values.\nValid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt.",
                                                                    "type": "string"
                                                                },
                                                                "values": {
                                                                    "description": "An array of string values. If the operator is In or NotIn,\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\nthe values array must be empty. If the operator is Gt or Lt, the values\narray must have a single element, which will be interpreted as an integer.\nThis array is replaced during a strategic merge patch.",
                                                                    "items": {
                                                                        "type": "string"
                                                                    },
                                                                    "type": "array",
                                                                    "x-kubernetes-list-type": "atomic"
                                                                }
                                                            },
                                                            "required": [
                                                                "key",
                                                                "operator"
                                                            ],
                                                            "type": "object",
                                                            "additionalProperties": false
                                                        },
                                                        "type": "array",
                                                        "x-kubernetes-list-type": "atomic"
                                                    },
                                                    "matchFields": {
                                                        "description": "A list of node selector requirements by node's fields.",
                                                        "items": {
                                                            "description": "A node selector requirement is a selector that contains values, a key, and an operator\nthat relates the key and values.",
                                                            "properties": {
                                                                "key": {
                                                                    "description": "The label key that the selector applies to.",
                                                                    "type": "string"
                                                                },
                                                                "operator": {
                                                                    "description": "Represents a key's relationship to a set of values.\nValid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt.",
                                                                    "type": "string"
                                                                },
                                                                "values": {
                                                                    "description": "An array of string values. If the operator is In or NotIn,\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\nthe values array must be empty. If the operator is Gt or Lt, the values\narray must have a single element, which will be interpreted as an integer.\nThis array is replaced during a strategic merge patch.",
                                                                    "items": {
                                                                        "type": "string"
                                                                    },
                                                                    "type": "array",
                                                                    "x-kubernetes-list-type": "atomic"
                                                                }
                                                            },
                                                            "required": [
                                                                "key",
                                                                "operator"
                                                            ],
                                                            "type": "object",
                                                            "additionalProperties": false
                                                        },
                                                        "type": "array",
                                                        "x-kubernetes-list-type": "atomic"
                                                    }
                                                },
                                                "type": "object",
                                                "x-kubernetes-map-type": "atomic",
                                                "additionalProperties": false
                                            },
                                            "type": "array",
                                            "x-kubernetes-list-type": "atomic"
                                        }
                                    },
                                    "required": [
                                        "nodeSelectorTerms"
                                    ],
                                    "type": "object",
                                    "x-kubernetes-map-type": "atomic",
                                    "additionalProperties": false
                                }
                            },
                            "type": "object",
                            "additionalProperties": false
                        },
                        "podAffinity": {
                            "description": "Describes pod affinity scheduling rules (e.g. co-locate this pod in the same node, zone, etc. as some other pod(s)).",
                            "properties": {
                                "preferredDuringSchedulingIgnoredDuringExecution": {
                                    "description": "The scheduler will prefer to schedule pods to nodes that satisfy\nthe affinity expressions specified by this field, but it may choose\na node that violates one or more of the expressions. The node that is\nmost preferred is the one with the greatest sum of weights, i.e.\nfor each node that meets all of the scheduling requirements (resource\nrequest, requiredDuringScheduling affinity expressions, etc.),\ncompute a sum by iterating through the elements of this field and adding\n\"weight\" to the sum if the node has pods which matches the corresponding podAffinityTerm; the\nnode(s) with the highest sum are the most preferred.",
                                    "items": {
                                        "description": "The weights of all of the matched WeightedPodAffinityTerm fields are added per-node to find the most preferred node(s)",
                                        "properties": {
                                            "podAffinityTerm": {
                                                "description": "Required. A pod affinity term, associated with the corresponding weight.",
                                                "properties": {
                                                    "labelSelector": {
                                                        "description": "A label query over a set of resources, in this case pods.\nIf it's null, this PodAffinityTerm matches with no Pods.",
                                                        "properties": {
                                                            "matchExpressions": {
                                                                "description": "matchExpressions is a list of label selector requirements. The requirements are ANDed.",
                                                                "items": {
                                                                    "description": "A label selector requirement is a selector that contains values, a key, and an operator that\nrelates the key and values.",
                                                                    "properties": {
                                                                        "key": {
                                                                            "description": "key is the label key that the selector applies to.",
                                                                            "type": "string"
                                                                        },
                                                                        "operator": {
                                                                            "description": "operator represents a key's relationship to a set of values.\nValid operators are In, NotIn, Exists and DoesNotExist.",
                                                                            "type": "string"
                                                                        },
                                                                        "values": {
                                                                            "description": "values is an array of string values. If the operator is In or NotIn,\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\nthe values array must be empty. This array is replaced during a strategic\nmerge patch.",
                                                                            "items": {
                                                                                "type": "string"
                                                                            },
                                                                            "type": "array",
                                                                            "x-kubernetes-list-type": "atomic"
                                                                        }
                                                                    },
                                                                    "required": [
                                                                        "key",
                                                                        "operator"
                                                                    ],
                                                                    "type": "object",
                                                                    "additionalProperties": false
                                                                },
                                                                "type": "array",
                                                                "x-kubernetes-list-type": "atomic"
                                                            },
                                                            "matchLabels": {
                                                                "additionalProperties": {
                                                                    "type": "string"
                                                                },
                                                                "description": "matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\nmap is equivalent to an element of matchExpressions, whose key field is \"key\", the\noperator is \"In\", and the values array contains only \"value\". The requirements are ANDed.",
                                                                "type": "object"
                                                            }
                                                        },
                                                        "type": "object",
                                                        "x-kubernetes-map-type": "atomic",
                                                        "additionalProperties": false
                                                    },
                                                    "matchLabelKeys": {
                                                        "description": "MatchLabelKeys is a set of pod label keys to select which pods will\nbe taken into consideration. The keys are used to lookup values from the\nincoming pod labels, those key-value labels are merged with `labelSelector` as `key in (value)`\nto select the group of existing pods which pods will be taken into consideration\nfor the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming\npod labels will be ignored. The default value is empty.\nThe same key is forbidden to exist in both matchLabelKeys and labelSelector.\nAlso, matchLabelKeys cannot be set when labelSelector isn't set.",
                                                        "items": {
                                                            "type": "string"
                                                        },
                                                        "type": "array",
                                                        "x-kubernetes-list-type": "atomic"
                                                    },
                                                    "mismatchLabelKeys": {
                                                        "description": "MismatchLabelKeys is a set of pod label keys to select which pods will\nbe taken into consideration. The keys are used to lookup values from the\nincoming pod labels, those key-value labels are merged with `labelSelector` as `key notin (value)`\nto select the group of existing pods which pods will be taken into consideration\nfor the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming\npod labels will be ignored. The default value is empty.\nThe same key is forbidden to exist in both mismatchLabelKeys and labelSelector.\nAlso, mismatchLabelKeys cannot be set when labelSelector isn't set.",
                                                        "items": {
                                                            "type": "string"
                                                        },
                                                        "type": "array",
                                                        "x-kubernetes-list-type": "atomic"
                                                    },
                                                    "namespaceSelector": {
                                                        "description": "A label query over the set of namespaces that the term applies to.\nThe term is applied to the union of the namespaces selected by this field\nand the ones listed in the namespaces field.\nnull selector and null or empty namespaces list means \"this pod's namespace\".\nAn empty selector ({}) matches all namespaces.",
                                                        "properties": {
                                                            "matchExpressions": {
                                                                "description": "matchExpressions is a list of label selector requirements. The requirements are ANDed.",
                                                                "items": {
                                                                    "description": "A label selector requirement is a selector that contains values, a key, and an operator that\nrelates the key and values.",
                                                                    "properties": {
                                                                        "key": {
                                                                            "description": "key is the label key that the selector applies to.",
                                                                            "type": "string"
                                                                        },
                                                                        "operator": {
                                                                            "description": "operator represents a key's relationship to a set of values.\nValid operators are In, NotIn, Exists and DoesNotExist.",
                                                                            "type": "string"
                                                                        },
                                                                        "values": {
                                                                            "description": "values is an array of string values. If the operator is In or NotIn,\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\nthe values array must be empty. This array is replaced during a strategic\nmerge patch.",
                                                                            "items": {
                                                                                "type": "string"
                                                                            },
                                                                            "type": "array",
                                                                            "x-kubernetes-list-type": "atomic"
                                                                        }
                                                                    },
                                                                    "required": [
                                                                        "key",
                                                                        "operator"
                                                                    ],
                                                                    "type": "object",
                                                                    "additionalProperties": false
                                                                },
                                                                "type": "array",
                                                                "x-kubernetes-list-type": "atomic"
                                                            },
                                                            "matchLabels": {
                                                                "additionalProperties": {
                                                                    "type": "string"
                                                                },
                                                                "description": "matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\nmap is equivalent to an element of matchExpressions, whose key field is \"key\", the\noperator is \"In\", and the values array contains only \"value\". The requirements are ANDed.",
                                                                "type": "object"
                                                            }
                                                        },
                                                        "type": "object",
                                                        "x-kubernetes-map-type": "atomic",
                                                        "additionalProperties": false
                                                    },
                                                    "namespaces": {
                                                        "description": "namespaces specifies a static list of namespace names that the term applies to.\nThe term is applied to the union of the namespaces listed in this field\nand the ones selected by namespaceSelector.\nnull or empty namespaces list and null namespaceSelector means \"this pod's namespace\".",
                                                        "items": {
                                                            "type": "string"
                                                        },
                                                        "type": "array",
                                                        "x-kubernetes-list-type": "atomic"
                                                    },
                                                    "topologyKey": {
                                                        "description": "This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching\nthe labelSelector in the specified namespaces, where co-located is defined as running on a node\nwhose value of the label with key topologyKey matches that of any node on which any of the\nselected pods is running.\nEmpty topologyKey is not allowed.",
                                                        "type": "string"
                                                    }
                                                },
                                                "required": [
                                                    "topologyKey"
                                                ],
                                                "type": "object",
                                                "additionalProperties": false
                                            },
                                            "weight": {
                                                "description": "weight associated with matching the corresponding podAffinityTerm,\nin the range 1-100.",
                                                "format": "int32",
                                                "type": "integer",
                                                "minimum": -2147483648,
                                                "maximum": 2147483647
                                            }
                                        },
                                        "required": [
                                            "podAffinityTerm",
                                            "weight"
                                        ],
                                        "type": "object",
                                        "additionalProperties": false
                                    },
                                    "type": "array",
                                    "x-kubernetes-list-type": "atomic"
                                },
                                "requiredDuringSchedulingIgnoredDuringExecution": {
                                    "description": "If the affinity requirements specified by this field are not met at\nscheduling time, the pod will not be scheduled onto the node.\nIf the affinity requirements specified by this field cease to be met\nat some point during pod execution (e.g. due to a pod label update), the\nsystem may or may not try to eventually evict the pod from its node.\nWhen there are multiple elements, the lists of nodes corresponding to each\npodAffinityTerm are intersected, i.e. all terms must be satisfied.",
                                    "items": {
                                        "description": "Defines a set of pods (namely those matching the labelSelector\nrelative to the given namespace(s)) that this pod should be\nco-located (affinity) or not co-located (anti-affinity) with,\nwhere co-located is defined as running on a node whose value of\nthe label with key <topologyKey> matches that of any node on which\na pod of the set of pods is running",
                                        "properties": {
                                            "labelSelector": {
                                                "description": "A label query over a set of resources, in this case pods.\nIf it's null, this PodAffinityTerm matches with no Pods.",
                                                "properties": {
                                                    "matchExpressions": {
                                                        "description": "matchExpressions is a list of label selector requirements. The requirements are ANDed.",
                                                        "items": {
                                                            "description": "A label selector requirement is a selector that contains values, a key, and an operator that\nrelates the key and values.",
                                                            "properties": {
                                                                "key": {
                                                                    "description": "key is the label key that the selector applies to.",
                                                                    "type": "string"
                                                                },
                                                                "operator": {
                                                                    "description": "operator represents a key's relationship to a set of values.\nValid operators are In, NotIn, Exists and DoesNotExist.",
                                                                    "type": "string"
                                                                },
                                                                "values": {
                                                                    "description": "values is an array of string values. If the operator is In or NotIn,\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\nthe values array must be empty. This array is replaced during a strategic\nmerge patch.",
                                                                    "items": {
                                                                        "type": "string"
                                                                    },
                                                                    "type": "array",
                                                                    "x-kubernetes-list-type": "atomic"
                                                                }
                                                            },
                                                            "required": [
                                                                "key",
                                                                "operator"
                                                            ],
                                                            "type": "object",
                                                            "additionalProperties": false
                                                        },
                                                        "type": "array",
                                                        "x-kubernetes-list-type": "atomic"
                                                    },
                                                    "matchLabels": {
                                                        "additionalProperties": {
                                                            "type": "string"
                                                        },
                                                        "description": "matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\nmap is equivalent to an element of matchExpressions, whose key field is \"key\", the\noperator is \"In\", and the values array contains only \"value\". The requirements are ANDed.",
                                                        "type": "object"
                                                    }
                                                },
                                                "type": "object",
                                                "x-kubernetes-map-type": "atomic",
                                                "additionalProperties": false
                                            },
                                            "matchLabelKeys": {
                                                "description": "MatchLabelKeys is a set of pod label keys to select which pods will\nbe taken into consideration. The keys are used to lookup values from the\nincoming pod labels, those key-value labels are merged with `labelSelector` as `key in (value)`\nto select the group of existing pods which pods will be taken into consideration\nfor the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming\npod labels will be ignored. The default value is empty.\nThe same key is forbidden to exist in both matchLabelKeys and labelSelector.\nAlso, matchLabelKeys cannot be set when labelSelector isn't set.",
                                                "items": {
                                                    "type": "string"
                                                },
                                                "type": "array",
                                                "x-kubernetes-list-type": "atomic"
                                            },
                                            "mismatchLabelKeys": {
                                                "description": "MismatchLabelKeys is a set of pod label keys to select which pods will\nbe taken into consideration. The keys are used to lookup values from the\nincoming pod labels, those key-value labels are merged with `labelSelector` as `key notin (value)`\nto select the group of existing pods which pods will be taken into consideration\nfor the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming\npod labels will be ignored. The default value is empty.\nThe same key is forbidden to exist in both mismatchLabelKeys and labelSelector.\nAlso, mismatchLabelKeys cannot be set when labelSelector isn't set.",
                                                "items": {
                                                    "type": "string"
                                                },
                                                "type": "array",
                                                "x-kubernetes-list-type": "atomic"
                                            },
                                            "namespaceSelector": {
                                                "description": "A label query over the set of namespaces that the term applies to.\nThe term is applied to the union of the namespaces selected by this field\nand the ones listed in the namespaces field.\nnull selector and null or empty namespaces list means \"this pod's namespace\".\nAn empty selector ({}) matches all namespaces.",
                                                "properties": {
                                                    "matchExpressions": {
                                                        "description": "matchExpressions is a list of label selector requirements. The requirements are ANDed.",
                                                        "items": {
                                                            "description": "A label selector requirement is a selector that contains values, a key, and an operator that\nrelates the key and values.",
                                                            "properties": {
                                                                "key": {
                                                                    "description": "key is the label key that the selector applies to.",
                                                                    "type": "string"
                                                                },
                                                                "operator": {
                                                                    "description": "operator represents a key's relationship to a set of values.\nValid operators are In, NotIn, Exists and DoesNotExist.",
                                                                    "type": "string"
                                                                },
                                                                "values": {
                                                                    "description": "values is an array of string values. If the operator is In or NotIn,\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\nthe values array must be empty. This array is replaced during a strategic\nmerge patch.",
                                                                    "items": {
                                                                        "type": "string"
                                                                    },
                                                                    "type": "array",
                                                                    "x-kubernetes-list-type": "atomic"
                                                                }
                                                            },
                                                            "required": [
                                                                "key",
                                                                "operator"
                                                            ],
                                                            "type": "object",
                                                            "additionalProperties": false
                                                        },
                                                        "type": "array",
                                                        "x-kubernetes-list-type": "atomic"
                                                    },
                                                    "matchLabels": {
                                                        "additionalProperties": {
                                                            "type": "string"
                                                        },
                                                        "description": "matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\nmap is equivalent to an element of matchExpressions, whose key field is \"key\", the\noperator is \"In\", and the values array contains only \"value\". The requirements are ANDed.",
                                                        "type": "object"
                                                    }
                                                },
                                                "type": "object",
                                                "x-kubernetes-map-type": "atomic",
                                                "additionalProperties": false
                                            },
                                            "namespaces": {
                                                "description": "namespaces specifies a static list of namespace names that the term applies to.\nThe term is applied to the union of the namespaces listed in this field\nand the ones selected by namespaceSelector.\nnull or empty namespaces list and null namespaceSelector means \"this pod's namespace\".",
                                                "items": {
                                                    "type": "string"
                                                },
                                                "type": "array",
                                                "x-kubernetes-list-type": "atomic"
                                            },
                                            "topologyKey": {
                                                "description": "This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching\nthe labelSelector in the specified namespaces, where co-located is defined as running on a node\nwhose value of the label with key topologyKey matches that of any node on which any of the\nselected pods is running.\nEmpty topologyKey is not allowed.",
                                                "type": "string"
                                            }
                                        },
                                        "required": [
                                            "topologyKey"
                                        ],
                                        "type": "object",
                                        "additionalProperties": false
                                    },
                                    "type": "array",
                                    "x-kubernetes-list-type": "atomic"
                                }
                            },
                            "type": "object",
                            "additionalProperties": false
                        },
                        "podAntiAffinity": {
                            "description": "Describes pod anti-affinity scheduling rules (e.g. avoid putting this pod in the same node, zone, etc. as some other pod(s)).",
                            "properties": {
                                "preferredDuringSchedulingIgnoredDuringExecution": {
                                    "description": "The scheduler will prefer to schedule pods to nodes that satisfy\nthe anti-affinity expressions specified by this field, but it may choose\na node that violates one or more of the expressions. The node that is\nmost preferred is the one with the greatest sum of weights, i.e.\nfor each node that meets all of the scheduling requirements (resource\nrequest, requiredDuringScheduling anti-affinity expressions, etc.),\ncompute a sum by iterating through the elements of this field and subtracting\n\"weight\" from the sum if the node has pods which matches the corresponding podAffinityTerm; the\nnode(s) with the highest sum are the most preferred.",
                                    "items": {
                                        "description": "The weights of all of the matched WeightedPodAffinityTerm fields are added per-node to find the most preferred node(s)",
                                        "properties": {
                                            "podAffinityTerm": {
                                                "description": "Required. A pod affinity term, associated with the corresponding weight.",
                                                "properties": {
                                                    "labelSelector": {
                                                        "description": "A label query over a set of resources, in this case pods.\nIf it's null, this PodAffinityTerm matches with no Pods.",
                                                        "properties": {
                                                            "matchExpressions": {
                                                                "description": "matchExpressions is a list of label selector requirements. The requirements are ANDed.",
                                                                "items": {
                                                                    "description": "A label selector requirement is a selector that contains values, a key, and an operator that\nrelates the key and values.",
                                                                    "properties": {
                                                                        "key": {
                                                                            "description": "key is the label key that the selector applies to.",
                                                                            "type": "string"
                                                                        },
                                                                        "operator": {
                                                                            "description": "operator represents a key's relationship to a set of values.\nValid operators are In, NotIn, Exists and DoesNotExist.",
                                                                            "type": "string"
                                                                        },
                                                                        "values": {
                                                                            "description": "values is an array of string values. If the operator is In or NotIn,\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\nthe values array must be empty. This array is replaced during a strategic\nmerge patch.",
                                                                            "items": {
                                                                                "type": "string"
                                                                            },
                                                                            "type": "array",
                                                                            "x-kubernetes-list-type": "atomic"
                                                                        }
                                                                    },
                                                                    "required": [
                                                                        "key",
                                                                        "operator"
                                                                    ],
                                                                    "type": "object",
                                                                    "additionalProperties": false
                                                                },
                                                                "type": "array",
                                                                "x-kubernetes-list-type": "atomic"
                                                            },
                                                            "matchLabels": {
                                                                "additionalProperties": {
                                                                    "type": "string"
                                                                },
                                                                "description": "matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\nmap is equivalent to an element of matchExpressions, whose key field is \"key\", the\noperator is \"In\", and the values array contains only \"value\". The requirements are ANDed.",
                                                                "type": "object"
                                                            }
                                                        },
                                                        "type": "object",
                                                        "x-kubernetes-map-type": "atomic",
                                                        "additionalProperties": false
                                                    },
                                                    "matchLabelKeys": {
                                                        "description": "MatchLabelKeys is a set of pod label keys to select which pods will\nbe taken into consideration. The keys are used to lookup values from the\nincoming pod labels, those key-value labels are merged with `labelSelector` as `key in (value)`\nto select the group of existing pods which pods will be taken into consideration\nfor the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming\npod labels will be ignored. The default value is empty.\nThe same key is forbidden to exist in both matchLabelKeys and labelSelector.\nAlso, matchLabelKeys cannot be set when labelSelector isn't set.",
                                                        "items": {
                                                            "type": "string"
                                                        },
                                                        "type": "array",
                                                        "x-kubernetes-list-type": "atomic"
                                                    },
                                                    "mismatchLabelKeys": {
                                                        "description": "MismatchLabelKeys is a set of pod label keys to select which pods will\nbe taken into consideration. The keys are used to lookup values from the\nincoming pod labels, those key-value labels are merged with `labelSelector` as `key notin (value)`\nto select the group of existing pods which pods will be taken into consideration\nfor the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming\npod labels will be ignored. The default value is empty.\nThe same key is forbidden to exist in both mismatchLabelKeys and labelSelector.\nAlso, mismatchLabelKeys cannot be set when labelSelector isn't set.",
                                                        "items": {
                                                            "type": "string"
                                                        },
                                                        "type": "array",
                                                        "x-kubernetes-list-type": "atomic"
                                                    },
                                                    "namespaceSelector": {
                                                        "description": "A label query over the set of namespaces that the term applies to.\nThe term is applied to the union of the namespaces selected by this field\nand the ones listed in the namespaces field.\nnull selector and null or empty namespaces list means \"this pod's namespace\".\nAn empty selector ({}) matches all namespaces.",
                                                        "properties": {
                                                            "matchExpressions": {
                                                                "description": "matchExpressions is a list of label selector requirements. The requirements are ANDed.",
                                                                "items": {
                                                                    "description": "A label selector requirement is a selector that contains values, a key, and an operator that\nrelates the key and values.",
                                                                    "properties": {
                                                                        "key": {
                                                                            "description": "key is the label key that the selector applies to.",
                                                                            "type": "string"
                                                                        },
                                                                        "operator": {
                                                                            "description": "operator represents a key's relationship to a set of values.\nValid operators are In, NotIn, Exists and DoesNotExist.",
                                                                            "type": "string"
                                                                        },
                                                                        "values": {
                                                                            "description": "values is an array of string values. If the operator is In or NotIn,\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\nthe values array must be empty. This array is replaced during a strategic\nmerge patch.",
                                                                            "items": {
                                                                                "type": "string"
                                                                            },
                                                                            "type": "array",
                                                                            "x-kubernetes-list-type": "atomic"
                                                                        }
                                                                    },
                                                                    "required": [
                                                                        "key",
                                                                        "operator"
                                                                    ],
                                                                    "type": "object",
                                                                    "additionalProperties": false
                                                                },
                                                                "type": "array",
                                                                "x-kubernetes-list-type": "atomic"
                                                            },
                                                            "matchLabels": {
                                                                "additionalProperties": {
                                                                    "type": "string"
                                                                },
                                                                "description": "matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\nmap is equivalent to an element of matchExpressions, whose key field is \"key\", the\noperator is \"In\", and the values array contains only \"value\". The requirements are ANDed.",
                                                                "type": "object"
                                                            }
                                                        },
                                                        "type": "object",
                                                        "x-kubernetes-map-type": "atomic",
                                                        "additionalProperties": false
                                                    },
                                                    "namespaces": {
                                                        "description": "namespaces specifies a static list of namespace names that the term applies to.\nThe term is applied to the union of the namespaces listed in this field\nand the ones selected by namespaceSelector.\nnull or empty namespaces list and null namespaceSelector means \"this pod's namespace\".",
                                                        "items": {
                                                            "type": "string"
                                                        },
                                                        "type": "array",
                                                        "x-kubernetes-list-type": "atomic"
                                                    },
                                                    "topologyKey": {
                                                        "description": "This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching\nthe labelSelector in the specified namespaces, where co-located is defined as running on a node\nwhose value of the label with key topologyKey matches that of any node on which any of the\nselected pods is running.\nEmpty topologyKey is not allowed.",
                                                        "type": "string"
                                                    }
                                                },
                                                "required": [
                                                    "topologyKey"
                                                ],
                                                "type": "object",
                                                "additionalProperties": false
                                            },
                                            "weight": {
                                                "description": "weight associated with matching the corresponding podAffinityTerm,\nin the range 1-100.",
                                                "format": "int32",
                                                "type": "integer",
                                                "minimum": -2147483648,
                                                "maximum": 2147483647
                                            }
                                        },
                                        "required": [
                                            "podAffinityTerm",
                                            "weight"
                                        ],
                                        "type": "object",
                                        "additionalProperties": false
                                    },
                                    "type": "array",
                                    "x-kubernetes-list-type": "atomic"
                                },
                                "requiredDuringSchedulingIgnoredDuringExecution": {
                                    "description": "If the anti-affinity requirements specified by this field are not met at\nscheduling time, the pod will not be scheduled onto the node.\nIf the anti-affinity requirements specified by this field cease to be met\nat some point during pod execution (e.g. due to a pod label update), the\nsystem may or may not try to eventually evict the pod from its node.\nWhen there are multiple elements, the lists of nodes corresponding to each\npodAffinityTerm are intersected, i.e. all terms must be satisfied.",
                                    "items": {
                                        "description": "Defines a set of pods (namely those matching the labelSelector\nrelative to the given namespace(s)) that this pod should be\nco-located (affinity) or not co-located (anti-affinity) with,\nwhere co-located is defined as running on a node whose value of\nthe label with key <topologyKey> matches that of any node on which\na pod of the set of pods is running",
                                        "properties": {
                                            "labelSelector": {
                                                "description": "A label query over a set of resources, in this case pods.\nIf it's null, this PodAffinityTerm matches with no Pods.",
                                                "properties": {
                                                    "matchExpressions": {
                                                        "description": "matchExpressions is a list of label selector requirements. The requirements are ANDed.",
                                                        "items": {
                                                            "description": "A label selector requirement is a selector that contains values, a key, and an operator that\nrelates the key and values.",
                                                            "properties": {
                                                                "key": {
                                                                    "description": "key is the label key that the selector applies to.",
                                                                    "type": "string"
                                                                },
                                                                "operator": {
                                                                    "description": "operator represents a key's relationship to a set of values.\nValid operators are In, NotIn, Exists and DoesNotExist.",
                                                                    "type": "string"
                                                                },
                                                                "values": {
                                                                    "description": "values is an array of string values. If the operator is In or NotIn,\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\nthe values array must be empty. This array is replaced during a strategic\nmerge patch.",
                                                                    "items": {
                                                                        "type": "string"
                                                                    },
                                                                    "type": "array",
                                                                    "x-kubernetes-list-type": "atomic"
                                                                }
                                                            },
                                                            "required": [
                                                                "key",
                                                                "operator"
                                                            ],
                                                            "type": "object",
                                                            "additionalProperties": false
                                                        },
                                                        "type": "array",
                                                        "x-kubernetes-list-type": "atomic"
                                                    },
                                                    "matchLabels": {
                                                        "additionalProperties": {
                                                            "type": "string"
                                                        },
                                                        "description": "matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\nmap is equivalent to an element of matchExpressions, whose key field is \"key\", the\noperator is \"In\", and the values array contains only \"value\". The requirements are ANDed.",
                                                        "type": "object"
                                                    }
                                                },
                                                "type": "object",
                                                "x-kubernetes-map-type": "atomic",
                                                "additionalProperties": false
                                            },
                                            "matchLabelKeys": {
                                                "description": "MatchLabelKeys is a set of pod label keys to select which pods will\nbe taken into consideration. The keys are used to lookup values from the\nincoming pod labels, those key-value labels are merged with `labelSelector` as `key in (value)`\nto select the group of existing pods which pods will be taken into consideration\nfor the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming\npod labels will be ignored. The default value is empty.\nThe same key is forbidden to exist in both matchLabelKeys and labelSelector.\nAlso, matchLabelKeys cannot be set when labelSelector isn't set.",
                                                "items": {
                                                    "type": "string"
                                                },
                                                "type": "array",
                                                "x-kubernetes-list-type": "atomic"
                                            },
                                            "mismatchLabelKeys": {
                                                "description": "MismatchLabelKeys is a set of pod label keys to select which pods will\nbe taken into consideration. The keys are used to lookup values from the\nincoming pod labels, those key-value labels are merged with `labelSelector` as `key notin (value)`\nto select the group of existing pods which pods will be taken into consideration\nfor the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming\npod labels will be ignored. The default value is empty.\nThe same key is forbidden to exist in both mismatchLabelKeys and labelSelector.\nAlso, mismatchLabelKeys cannot be set when labelSelector isn't set.",
                                                "items": {
                                                    "type": "string"
                                                },
                                                "type": "array",
                                                "x-kubernetes-list-type": "atomic"
                                            },
                                            "namespaceSelector": {
                                                "description": "A label query over the set of namespaces that the term applies to.\nThe term is applied to the union of the namespaces selected by this field\nand the ones listed in the namespaces field.\nnull selector and null or empty namespaces list means \"this pod's namespace\".\nAn empty selector ({}) matches all namespaces.",
                                                "properties": {
                                                    "matchExpressions": {
                                                        "description": "matchExpressions is a list of label selector requirements. The requirements are ANDed.",
                                                        "items": {
                                                            "description": "A label selector requirement is a selector that contains values, a key, and an operator that\nrelates the key and values.",
                                                            "properties": {
                                                                "key": {
                                                                    "description": "key is the label key that the selector applies to.",
                                                                    "type": "string"
                                                                },
                                                                "operator": {
                                                                    "description": "operator represents a key's relationship to a set of values.\nValid operators are In, NotIn, Exists and DoesNotExist.",
                                                                    "type": "string"
                                                                },
                                                                "values": {
                                                                    "description": "values is an array of string values. If the operator is In or NotIn,\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\nthe values array must be empty. This array is replaced during a strategic\nmerge patch.",
                                                                    "items": {
                                                                        "type": "string"
                                                                    },
                                                                    "type": "array",
                                                                    "x-kubernetes-list-type": "atomic"
                                                                }
                                                            },
                                                            "required": [
                                                                "key",
                                                                "operator"
                                                            ],
                                                            "type": "object",
                                                            "additionalProperties": false
                                                        },
                                                        "type": "array",
                                                        "x-kubernetes-list-type": "atomic"
                                                    },
                                                    "matchLabels": {
                                                        "additionalProperties": {
                                                            "type": "string"
                                                        },
                                                        "description": "matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\nmap is equivalent to an element of matchExpressions, whose key field is \"key\", the\noperator is \"In\", and the values array contains only \"value\". The requirements are ANDed.",
                                                        "type": "object"
                                                    }
                                                },
                                                "type": "object",
                                                "x-kubernetes-map-type": "atomic",
                                                "additionalProperties": false
                                            },
                                            "namespaces": {
                                                "description": "namespaces specifies a static list of namespace names that the term applies to.\nThe term is applied to the union of the namespaces listed in this field\nand the ones selected by namespaceSelector.\nnull or empty namespaces list and null namespaceSelector means \"this pod's namespace\".",
                                                "items": {
                                                    "type": "string"
                                                },
                                                "type": "array",
                                                "x-kubernetes-list-type": "atomic"
                                            },
                                            "topologyKey": {
                                                "description": "This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching\nthe labelSelector in the specified namespaces, where co-located is defined as running on a node\nwhose value of the label with key topologyKey matches that of any node on which any of the\nselected pods is running.\nEmpty topologyKey is not allowed.",
                                                "type": "string"
                                            }
                                        },
                                        "required": [
                                            "topologyKey"
                                        ],
                                        "type": "object",
                                        "additionalProperties": false
                                    },
                                    "type": "array",
                                    "x-kubernetes-list-type": "atomic"
                                }
                            },
                            "type": "object",
                            "additionalProperties": false
                        }
                    },
                    "type": "object",
                    "additionalProperties": false
                },
                "extraConfig": {
                    "description": "ExtraConfig defines any extra (overlay) configuration of components.",
                    "properties": {
                        "tempo": {
                            "description": "Tempo defines any extra Tempo configuration, which will be merged with the operator's generated Tempo configuration",
                            "x-kubernetes-preserve-unknown-fields": true
                        }
                    },
                    "type": "object",
                    "additionalProperties": false
                },
                "ingestion": {
                    "description": "Ingestion defines the trace ingestion configuration.",
                    "properties": {
                        "otlp": {
                            "description": "OTLP defines the ingestion configuration for the OTLP protocol.",
                            "properties": {
                                "grpc": {
                                    "description": "GRPC defines the OTLP over gRPC configuration.",
                                    "properties": {
                                        "enabled": {
                                            "default": true,
                                            "description": "Enabled defines if OTLP over gRPC is enabled.\nDefault: enabled.",
                                            "type": "boolean"
                                        },
                                        "tls": {
                                            "description": "TLS defines the TLS configuration for OTLP/gRPC ingestion.\n\nOn OpenShift when operator config `servingCertsService`  and TLS is enabled  but no `certName` and `caName`\nare provided it will use OpenShift serving certificate service.",
                                            "properties": {
                                                "caName": {
                                                    "description": "CA is the name of a ConfigMap containing a CA certificate (service-ca.crt).\nIt needs to be in the same namespace as the Tempo custom resource.",
                                                    "type": "string"
                                                },
                                                "certName": {
                                                    "description": "Cert is the name of a Secret containing a certificate (tls.crt) and private key (tls.key).\nIt needs to be in the same namespace as the Tempo custom resource.",
                                                    "type": "string"
                                                },
                                                "cipherSuites": {
                                                    "description": "CipherSuites defines the list of acceptable TLS cipher suites.\n\nIf not set, the ciphers are set based on feature gate tlsProfile or obtained from the cluster if openshift.clusterTLSPolicy is enabled.",
                                                    "items": {
                                                        "type": "string"
                                                    },
                                                    "type": "array"
                                                },
                                                "enabled": {
                                                    "description": "Enabled defines if TLS is enabled.",
                                                    "type": "boolean"
                                                },
                                                "minVersion": {
                                                    "description": "MinVersion defines the minimum acceptable TLS version.\n\nIf not set, the version is set based on feature gate tlsProfile or obtained from the cluster if openshift.clusterTLSPolicy is enabled.",
                                                    "type": "string"
                                                }
                                            },
                                            "type": "object",
                                            "additionalProperties": false
                                        }
                                    },
                                    "required": [
                                        "enabled"
                                    ],
                                    "type": "object",
                                    "additionalProperties": false
                                },
                                "http": {
                                    "description": "HTTP defines the OTLP over HTTP configuration.",
                                    "properties": {
                                        "enabled": {
                                            "default": true,
                                            "description": "Enabled defines if OTLP over HTTP is enabled.\nDefault: enabled.",
                                            "type": "boolean"
                                        },
                                        "tls": {
                                            "description": "TLS defines the TLS configuration for OTLP/HTTP ingestion.\n\nOn OpenShift when operator config `servingCertsService`  and TLS is enabled  but no `certName` and `caName`\nare provided it will use OpenShift serving certificate service.",
                                            "properties": {
                                                "caName": {
                                                    "description": "CA is the name of a ConfigMap containing a CA certificate (service-ca.crt).\nIt needs to be in the same namespace as the Tempo custom resource.",
                                                    "type": "string"
                                                },
                                                "certName": {
                                                    "description": "Cert is the name of a Secret containing a certificate (tls.crt) and private key (tls.key).\nIt needs to be in the same namespace as the Tempo custom resource.",
                                                    "type": "string"
                                                },
                                                "cipherSuites": {
                                                    "description": "CipherSuites defines the list of acceptable TLS cipher suites.\n\nIf not set, the ciphers are set based on feature gate tlsProfile or obtained from the cluster if openshift.clusterTLSPolicy is enabled.",
                                                    "items": {
                                                        "type": "string"
                                                    },
                                                    "type": "array"
                                                },
                                                "enabled": {
                                                    "description": "Enabled defines if TLS is enabled.",
                                                    "type": "boolean"
                                                },
                                                "minVersion": {
                                                    "description": "MinVersion defines the minimum acceptable TLS version.\n\nIf not set, the version is set based on feature gate tlsProfile or obtained from the cluster if openshift.clusterTLSPolicy is enabled.",
                                                    "type": "string"
                                                }
                                            },
                                            "type": "object",
                                            "additionalProperties": false
                                        }
                                    },
                                    "required": [
                                        "enabled"
                                    ],
                                    "type": "object",
                                    "additionalProperties": false
                                }
                            },
                            "type": "object",
                            "additionalProperties": false
                        }
                    },
                    "type": "object",
                    "additionalProperties": false
                },
                "jaegerui": {
                    "description": "JaegerUI defines the Jaeger UI configuration.",
                    "properties": {
                        "authentication": {
                            "description": "Authentication defines the options for the oauth proxy used to protect jaeger UI",
                            "properties": {
                                "enabled": {
                                    "description": "Defines if the authentication will be enabled for jaeger UI.",
                                    "type": "boolean"
                                },
                                "resources": {
                                    "description": "Resources defines the compute resource requirements of the OAuth Proxy container.\nThe OAuth Proxy performs authentication and authorization of incoming requests to Jaeger UI when multi-tenancy is disabled.",
                                    "properties": {
                                        "claims": {
                                            "description": "Claims lists the names of resources, defined in spec.resourceClaims,\nthat are used by this container.\n\nThis field depends on the\nDynamicResourceAllocation feature gate.\n\nThis field is immutable. It can only be set for containers.",
                                            "items": {
                                                "description": "ResourceClaim references one entry in PodSpec.ResourceClaims.",
                                                "properties": {
                                                    "name": {
                                                        "description": "Name must match the name of one entry in pod.spec.resourceClaims of\nthe Pod where this field is used. It makes that resource available\ninside a container.",
                                                        "type": "string"
                                                    },
                                                    "request": {
                                                        "description": "Request is the name chosen for a request in the referenced claim.\nIf empty, everything from the claim is made available, otherwise\nonly the result of this request.",
                                                        "type": "string"
                                                    }
                                                },
                                                "required": [
                                                    "name"
                                                ],
                                                "type": "object",
                                                "additionalProperties": false
                                            },
                                            "type": "array",
                                            "x-kubernetes-list-map-keys": [
                                                "name"
                                            ],
                                            "x-kubernetes-list-type": "map"
                                        },
                                        "limits": {
                                            "additionalProperties": {
                                                "anyOf": [
                                                    {
                                                        "type": "integer"
                                                    },
                                                    {
                                                        "type": "string"
                                                    }
                                                ],
                                                "pattern": "^(\\+|-)?(([0-9]+(\\.[0-9]*)?)|(\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\+|-)?(([0-9]+(\\.[0-9]*)?)|(\\.[0-9]+))))?$",
                                                "x-kubernetes-int-or-string": true
                                            },
                                            "description": "Limits describes the maximum amount of compute resources allowed.\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/",
                                            "type": "object"
                                        },
                                        "requests": {
                                            "additionalProperties": {
                                                "anyOf": [
                                                    {
                                                        "type": "integer"
                                                    },
                                                    {
                                                        "type": "string"
                                                    }
                                                ],
                                                "pattern": "^(\\+|-)?(([0-9]+(\\.[0-9]*)?)|(\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\+|-)?(([0-9]+(\\.[0-9]*)?)|(\\.[0-9]+))))?$",
                                                "x-kubernetes-int-or-string": true
                                            },
                                            "description": "Requests describes the minimum amount of compute resources required.\nIf Requests is omitted for a container, it defaults to Limits if that is explicitly specified,\notherwise to an implementation-defined value. Requests cannot exceed Limits.\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/",
                                            "type": "object"
                                        }
                                    },
                                    "type": "object",
                                    "additionalProperties": false
                                },
                                "sar": {
                                    "description": "SAR defines the SAR to be used in the oauth-proxy\ndefault is \"{\"namespace\": \"<tempo_stack_namespace>\", \"resource\": \"pods\", \"verb\": \"get\"}",
                                    "type": "string"
                                }
                            },
                            "type": "object",
                            "additionalProperties": false
                        },
                        "enabled": {
                            "description": "Enabled defines if the Jaeger UI component should be created.",
                            "type": "boolean"
                        },
                        "findTracesConcurrentRequests": {
                            "description": "FindTracesConcurrentRequests defines how many concurrent request a single trace search can submit (defaults 2).\nThe search for traces in Jaeger submits limit+1 requests. First requests finds trace IDs and then it fetches\nentire traces by ID. This property allows Jaeger to fetch traces in parallel.\nNote that by default a single Tempo querier can process 20 concurrent search jobs.\nIncreasing this property might require scaling up querier instances, especially on error \"job queue full\"\nSee also Tempo's extraConfig:\nquerier.max_concurrent_queries (20 default)\nquery_frontend.max_outstanding_per_tenant: (2000 default). Increase if the query-frontend returns 429",
                            "type": "integer"
                        },
                        "ingress": {
                            "description": "Ingress defines the Ingress configuration for the Jaeger UI.",
                            "properties": {
                                "annotations": {
                                    "additionalProperties": {
                                        "type": "string"
                                    },
                                    "description": "Annotations defines the annotations of the Ingress object.",
                                    "type": "object"
                                },
                                "enabled": {
                                    "description": "Enabled defines if an Ingress object should be created for Jaeger UI.",
                                    "type": "boolean"
                                },
                                "host": {
                                    "description": "Host defines the hostname of the Ingress object.",
                                    "type": "string"
                                },
                                "ingressClassName": {
                                    "description": "IngressClassName defines the name of an IngressClass cluster resource.\nDefines which ingress controller serves this ingress resource.",
                                    "type": "string"
                                }
                            },
                            "required": [
                                "enabled"
                            ],
                            "type": "object",
                            "additionalProperties": false
                        },
                        "resources": {
                            "description": "Resources defines the compute resource requirements of the Jaeger UI container.",
                            "properties": {
                                "claims": {
                                    "description": "Claims lists the names of resources, defined in spec.resourceClaims,\nthat are used by this container.\n\nThis field depends on the\nDynamicResourceAllocation feature gate.\n\nThis field is immutable. It can only be set for containers.",
                                    "items": {
                                        "description": "ResourceClaim references one entry in PodSpec.ResourceClaims.",
                                        "properties": {
                                            "name": {
                                                "description": "Name must match the name of one entry in pod.spec.resourceClaims of\nthe Pod where this field is used. It makes that resource available\ninside a container.",
                                                "type": "string"
                                            },
                                            "request": {
                                                "description": "Request is the name chosen for a request in the referenced claim.\nIf empty, everything from the claim is made available, otherwise\nonly the result of this request.",
                                                "type": "string"
                                            }
                                        },
                                        "required": [
                                            "name"
                                        ],
                                        "type": "object",
                                        "additionalProperties": false
                                    },
                                    "type": "array",
                                    "x-kubernetes-list-map-keys": [
                                        "name"
                                    ],
                                    "x-kubernetes-list-type": "map"
                                },
                                "limits": {
                                    "additionalProperties": {
                                        "anyOf": [
                                            {
                                                "type": "integer"
                                            },
                                            {
                                                "type": "string"
                                            }
                                        ],
                                        "pattern": "^(\\+|-)?(([0-9]+(\\.[0-9]*)?)|(\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\+|-)?(([0-9]+(\\.[0-9]*)?)|(\\.[0-9]+))))?$",
                                        "x-kubernetes-int-or-string": true
                                    },
                                    "description": "Limits describes the maximum amount of compute resources allowed.\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/",
                                    "type": "object"
                                },
                                "requests": {
                                    "additionalProperties": {
                                        "anyOf": [
                                            {
                                                "type": "integer"
                                            },
                                            {
                                                "type": "string"
                                            }
                                        ],
                                        "pattern": "^(\\+|-)?(([0-9]+(\\.[0-9]*)?)|(\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\+|-)?(([0-9]+(\\.[0-9]*)?)|(\\.[0-9]+))))?$",
                                        "x-kubernetes-int-or-string": true
                                    },
                                    "description": "Requests describes the minimum amount of compute resources required.\nIf Requests is omitted for a container, it defaults to Limits if that is explicitly specified,\notherwise to an implementation-defined value. Requests cannot exceed Limits.\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/",
                                    "type": "object"
                                }
                            },
                            "type": "object",
                            "additionalProperties": false
                        },
                        "route": {
                            "description": "Route defines the OpenShift route configuration for the Jaeger UI.",
                            "properties": {
                                "annotations": {
                                    "additionalProperties": {
                                        "type": "string"
                                    },
                                    "description": "Annotations defines the annotations of the Route object.",
                                    "type": "object"
                                },
                                "enabled": {
                                    "description": "Enabled defines if a Route object should be created for Jaeger UI.",
                                    "type": "boolean"
                                },
                                "host": {
                                    "description": "Host defines the hostname of the Route object.",
                                    "type": "string"
                                },
                                "termination": {
                                    "description": "Termination specifies the termination type.",
                                    "enum": [
                                        "insecure",
                                        "edge",
                                        "passthrough",
                                        "reencrypt"
                                    ],
                                    "type": "string"
                                }
                            },
                            "required": [
                                "enabled"
                            ],
                            "type": "object",
                            "additionalProperties": false
                        },
                        "servicesQueryDuration": {
                            "description": "ServicesQueryDuration defines how long the services will be available in the services list",
                            "type": "string"
                        },
                        "tempoQueryResources": {
                            "description": "Resources defines the compute resource requirements of the Tempo Query container.",
                            "properties": {
                                "claims": {
                                    "description": "Claims lists the names of resources, defined in spec.resourceClaims,\nthat are used by this container.\n\nThis field depends on the\nDynamicResourceAllocation feature gate.\n\nThis field is immutable. It can only be set for containers.",
                                    "items": {
                                        "description": "ResourceClaim references one entry in PodSpec.ResourceClaims.",
                                        "properties": {
                                            "name": {
                                                "description": "Name must match the name of one entry in pod.spec.resourceClaims of\nthe Pod where this field is used. It makes that resource available\ninside a container.",
                                                "type": "string"
                                            },
                                            "request": {
                                                "description": "Request is the name chosen for a request in the referenced claim.\nIf empty, everything from the claim is made available, otherwise\nonly the result of this request.",
                                                "type": "string"
                                            }
                                        },
                                        "required": [
                                            "name"
                                        ],
                                        "type": "object",
                                        "additionalProperties": false
                                    },
                                    "type": "array",
                                    "x-kubernetes-list-map-keys": [
                                        "name"
                                    ],
                                    "x-kubernetes-list-type": "map"
                                },
                                "limits": {
                                    "additionalProperties": {
                                        "anyOf": [
                                            {
                                                "type": "integer"
                                            },
                                            {
                                                "type": "string"
                                            }
                                        ],
                                        "pattern": "^(\\+|-)?(([0-9]+(\\.[0-9]*)?)|(\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\+|-)?(([0-9]+(\\.[0-9]*)?)|(\\.[0-9]+))))?$",
                                        "x-kubernetes-int-or-string": true
                                    },
                                    "description": "Limits describes the maximum amount of compute resources allowed.\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/",
                                    "type": "object"
                                },
                                "requests": {
                                    "additionalProperties": {
                                        "anyOf": [
                                            {
                                                "type": "integer"
                                            },
                                            {
                                                "type": "string"
                                            }
                                        ],
                                        "pattern": "^(\\+|-)?(([0-9]+(\\.[0-9]*)?)|(\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\+|-)?(([0-9]+(\\.[0-9]*)?)|(\\.[0-9]+))))?$",
                                        "x-kubernetes-int-or-string": true
                                    },
                                    "description": "Requests describes the minimum amount of compute resources required.\nIf Requests is omitted for a container, it defaults to Limits if that is explicitly specified,\notherwise to an implementation-defined value. Requests cannot exceed Limits.\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/",
                                    "type": "object"
                                }
                            },
                            "type": "object",
                            "additionalProperties": false
                        }
                    },
                    "required": [
                        "enabled"
                    ],
                    "type": "object",
                    "additionalProperties": false
                },
                "management": {
                    "description": "ManagementState defines whether this instance is managed by the operator or self-managed.\nDefault: Managed.",
                    "enum": [
                        "Managed",
                        "Unmanaged"
                    ],
                    "type": "string"
                },
                "multitenancy": {
                    "description": "Multitenancy defines the multi-tenancy configuration.",
                    "properties": {
                        "authentication": {
                            "description": "Authentication defines the tempo-gateway component authentication configuration spec per tenant.",
                            "items": {
                                "description": "AuthenticationSpec defines the oidc configuration per tenant for tempo Gateway component.",
                                "properties": {
                                    "oidc": {
                                        "description": "OIDC defines the spec for the OIDC tenant's authentication.",
                                        "properties": {
                                            "groupClaim": {
                                                "description": "Group claim field from ID Token",
                                                "type": "string"
                                            },
                                            "issuerURL": {
                                                "description": "IssuerURL defines the URL for issuer.",
                                                "type": "string"
                                            },
                                            "redirectURL": {
                                                "description": "RedirectURL defines the URL for redirect.",
                                                "type": "string"
                                            },
                                            "secret": {
                                                "description": "Secret defines the spec for the clientID, clientSecret and issuerCAPath for tenant's authentication.",
                                                "properties": {
                                                    "name": {
                                                        "description": "Name of a secret in the namespace configured for tenant secrets.",
                                                        "type": "string"
                                                    }
                                                },
                                                "type": "object",
                                                "additionalProperties": false
                                            },
                                            "usernameClaim": {
                                                "description": "User claim field from ID Token",
                                                "type": "string"
                                            }
                                        },
                                        "type": "object",
                                        "additionalProperties": false
                                    },
                                    "tenantId": {
                                        "description": "TenantID defines a universally unique identifier of the tenant.\nUnlike the tenantName, which must be unique at a given time, the tenantId must be unique over the entire lifetime of the Tempo deployment.\nTempo uses this ID to prefix objects in the object storage.",
                                        "type": "string"
                                    },
                                    "tenantName": {
                                        "description": "TenantName defines a human readable, unique name of the tenant.\nThe value of this field must be specified in the X-Scope-OrgID header and in the resources field of a ClusterRole to identify the tenant.",
                                        "type": "string"
                                    }
                                },
                                "required": [
                                    "tenantId",
                                    "tenantName"
                                ],
                                "type": "object",
                                "additionalProperties": false
                            },
                            "type": "array"
                        },
                        "authorization": {
                            "description": "Authorization defines the tempo-gateway component authorization configuration spec per tenant.",
                            "properties": {
                                "roleBindings": {
                                    "description": "RoleBindings defines configuration to bind a set of roles to a set of subjects.",
                                    "items": {
                                        "description": "RoleBindingsSpec binds a set of roles to a set of subjects.",
                                        "properties": {
                                            "name": {
                                                "type": "string"
                                            },
                                            "roles": {
                                                "items": {
                                                    "type": "string"
                                                },
                                                "type": "array"
                                            },
                                            "subjects": {
                                                "items": {
                                                    "description": "Subject represents a subject that has been bound to a role.",
                                                    "properties": {
                                                        "kind": {
                                                            "description": "SubjectKind is a kind of Tempo Gateway RBAC subject.",
                                                            "enum": [
                                                                "user",
                                                                "group"
                                                            ],
                                                            "type": "string"
                                                        },
                                                        "name": {
                                                            "type": "string"
                                                        }
                                                    },
                                                    "required": [
                                                        "kind",
                                                        "name"
                                                    ],
                                                    "type": "object",
                                                    "additionalProperties": false
                                                },
                                                "type": "array"
                                            }
                                        },
                                        "required": [
                                            "name",
                                            "roles",
                                            "subjects"
                                        ],
                                        "type": "object",
                                        "additionalProperties": false
                                    },
                                    "type": "array"
                                },
                                "roles": {
                                    "description": "Roles defines a set of permissions to interact with a tenant.",
                                    "items": {
                                        "description": "RoleSpec describes a set of permissions to interact with a tenant.",
                                        "properties": {
                                            "name": {
                                                "type": "string"
                                            },
                                            "permissions": {
                                                "items": {
                                                    "description": "PermissionType is a Tempo Gateway RBAC permission.",
                                                    "enum": [
                                                        "read",
                                                        "write"
                                                    ],
                                                    "type": "string"
                                                },
                                                "type": "array"
                                            },
                                            "resources": {
                                                "items": {
                                                    "type": "string"
                                                },
                                                "type": "array"
                                            },
                                            "tenants": {
                                                "items": {
                                                    "type": "string"
                                                },
                                                "type": "array"
                                            }
                                        },
                                        "required": [
                                            "name",
                                            "permissions",
                                            "resources",
                                            "tenants"
                                        ],
                                        "type": "object",
                                        "additionalProperties": false
                                    },
                                    "type": "array"
                                }
                            },
                            "type": "object",
                            "additionalProperties": false
                        },
                        "enabled": {
                            "description": "Enabled defines if multi-tenancy is enabled.",
                            "type": "boolean"
                        },
                        "mode": {
                            "default": "static",
                            "description": "Mode defines the multitenancy mode.",
                            "enum": [
                                "static",
                                "openshift"
                            ],
                            "type": "string"
                        },
                        "resources": {
                            "description": "Resources defines the compute resource requirements of the gateway container.\nThe gateway performs authentication and authorization of incoming requests when multi-tenancy is enabled.",
                            "properties": {
                                "claims": {
                                    "description": "Claims lists the names of resources, defined in spec.resourceClaims,\nthat are used by this container.\n\nThis field depends on the\nDynamicResourceAllocation feature gate.\n\nThis field is immutable. It can only be set for containers.",
                                    "items": {
                                        "description": "ResourceClaim references one entry in PodSpec.ResourceClaims.",
                                        "properties": {
                                            "name": {
                                                "description": "Name must match the name of one entry in pod.spec.resourceClaims of\nthe Pod where this field is used. It makes that resource available\ninside a container.",
                                                "type": "string"
                                            },
                                            "request": {
                                                "description": "Request is the name chosen for a request in the referenced claim.\nIf empty, everything from the claim is made available, otherwise\nonly the result of this request.",
                                                "type": "string"
                                            }
                                        },
                                        "required": [
                                            "name"
                                        ],
                                        "type": "object",
                                        "additionalProperties": false
                                    },
                                    "type": "array",
                                    "x-kubernetes-list-map-keys": [
                                        "name"
                                    ],
                                    "x-kubernetes-list-type": "map"
                                },
                                "limits": {
                                    "additionalProperties": {
                                        "anyOf": [
                                            {
                                                "type": "integer"
                                            },
                                            {
                                                "type": "string"
                                            }
                                        ],
                                        "pattern": "^(\\+|-)?(([0-9]+(\\.[0-9]*)?)|(\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\+|-)?(([0-9]+(\\.[0-9]*)?)|(\\.[0-9]+))))?$",
                                        "x-kubernetes-int-or-string": true
                                    },
                                    "description": "Limits describes the maximum amount of compute resources allowed.\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/",
                                    "type": "object"
                                },
                                "requests": {
                                    "additionalProperties": {
                                        "anyOf": [
                                            {
                                                "type": "integer"
                                            },
                                            {
                                                "type": "string"
                                            }
                                        ],
                                        "pattern": "^(\\+|-)?(([0-9]+(\\.[0-9]*)?)|(\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\+|-)?(([0-9]+(\\.[0-9]*)?)|(\\.[0-9]+))))?$",
                                        "x-kubernetes-int-or-string": true
                                    },
                                    "description": "Requests describes the minimum amount of compute resources required.\nIf Requests is omitted for a container, it defaults to Limits if that is explicitly specified,\notherwise to an implementation-defined value. Requests cannot exceed Limits.\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/",
                                    "type": "object"
                                }
                            },
                            "type": "object",
                            "additionalProperties": false
                        }
                    },
                    "required": [
                        "enabled",
                        "mode"
                    ],
                    "type": "object",
                    "additionalProperties": false
                },
                "nodeSelector": {
                    "additionalProperties": {
                        "type": "string"
                    },
                    "description": "NodeSelector defines which labels are required by a node to schedule the pod onto it.",
                    "type": "object"
                },
                "observability": {
                    "description": "Observability defines the observability configuration of the Tempo deployment.",
                    "properties": {
                        "grafana": {
                            "description": "Grafana defines the Grafana configuration of the Tempo deployment.",
                            "properties": {
                                "dataSource": {
                                    "description": "DataSource defines the Grafana data source configuration.",
                                    "properties": {
                                        "enabled": {
                                            "description": "Enabled defines if a Grafana data source should be created for this Tempo deployment.",
                                            "type": "boolean"
                                        },
                                        "instanceSelector": {
                                            "description": "InstanceSelector defines the Grafana instance where the data source should be created.",
                                            "properties": {
                                                "matchExpressions": {
                                                    "description": "matchExpressions is a list of label selector requirements. The requirements are ANDed.",
                                                    "items": {
                                                        "description": "A label selector requirement is a selector that contains values, a key, and an operator that\nrelates the key and values.",
                                                        "properties": {
                                                            "key": {
                                                                "description": "key is the label key that the selector applies to.",
                                                                "type": "string"
                                                            },
                                                            "operator": {
                                                                "description": "operator represents a key's relationship to a set of values.\nValid operators are In, NotIn, Exists and DoesNotExist.",
                                                                "type": "string"
                                                            },
                                                            "values": {
                                                                "description": "values is an array of string values. If the operator is In or NotIn,\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\nthe values array must be empty. This array is replaced during a strategic\nmerge patch.",
                                                                "items": {
                                                                    "type": "string"
                                                                },
                                                                "type": "array",
                                                                "x-kubernetes-list-type": "atomic"
                                                            }
                                                        },
                                                        "required": [
                                                            "key",
                                                            "operator"
                                                        ],
                                                        "type": "object",
                                                        "additionalProperties": false
                                                    },
                                                    "type": "array",
                                                    "x-kubernetes-list-type": "atomic"
                                                },
                                                "matchLabels": {
                                                    "additionalProperties": {
                                                        "type": "string"
                                                    },
                                                    "description": "matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\nmap is equivalent to an element of matchExpressions, whose key field is \"key\", the\noperator is \"In\", and the values array contains only \"value\". The requirements are ANDed.",
                                                    "type": "object"
                                                }
                                            },
                                            "type": "object",
                                            "x-kubernetes-map-type": "atomic",
                                            "additionalProperties": false
                                        }
                                    },
                                    "required": [
                                        "enabled"
                                    ],
                                    "type": "object",
                                    "additionalProperties": false
                                }
                            },
                            "type": "object",
                            "additionalProperties": false
                        },
                        "metrics": {
                            "description": "Metrics defines the metric configuration of the Tempo deployment.",
                            "properties": {
                                "prometheusRules": {
                                    "description": "ServiceMonitors defines the PrometheusRule configuration.",
                                    "properties": {
                                        "enabled": {
                                            "description": "Enabled defines if PrometheusRule objects should be created for this Tempo deployment.",
                                            "type": "boolean"
                                        },
                                        "extraLabels": {
                                            "additionalProperties": {
                                                "type": "string"
                                            },
                                            "description": "ExtraLabels defines additional labels for the PrometheusRules objects.",
                                            "type": "object"
                                        }
                                    },
                                    "required": [
                                        "enabled"
                                    ],
                                    "type": "object",
                                    "additionalProperties": false
                                },
                                "serviceMonitors": {
                                    "description": "ServiceMonitors defines the ServiceMonitor configuration.",
                                    "properties": {
                                        "enabled": {
                                            "description": "Enabled defines if ServiceMonitor objects should be created for this Tempo deployment.",
                                            "type": "boolean"
                                        },
                                        "extraLabels": {
                                            "additionalProperties": {
                                                "type": "string"
                                            },
                                            "description": "ExtraLabels defines additional labels for the ServiceMonitor objects.",
                                            "type": "object"
                                        }
                                    },
                                    "required": [
                                        "enabled"
                                    ],
                                    "type": "object",
                                    "additionalProperties": false
                                }
                            },
                            "type": "object",
                            "additionalProperties": false
                        }
                    },
                    "type": "object",
                    "additionalProperties": false
                },
                "podSecurityContext": {
                    "description": "PodSecurityContext defines the security context that will be applied to the Tempo Pod.",
                    "properties": {
                        "appArmorProfile": {
                            "description": "appArmorProfile is the AppArmor options to use by the containers in this pod.\nNote that this field cannot be set when spec.os.name is windows.",
                            "properties": {
                                "localhostProfile": {
                                    "description": "localhostProfile indicates a profile loaded on the node that should be used.\nThe profile must be preconfigured on the node to work.\nMust match the loaded name of the profile.\nMust be set if and only if type is \"Localhost\".",
                                    "type": "string"
                                },
                                "type": {
                                    "description": "type indicates which kind of AppArmor profile will be applied.\nValid options are:\n  Localhost - a profile pre-loaded on the node.\n  RuntimeDefault - the container runtime's default profile.\n  Unconfined - no AppArmor enforcement.",
                                    "type": "string"
                                }
                            },
                            "required": [
                                "type"
                            ],
                            "type": "object",
                            "additionalProperties": false
                        },
                        "fsGroup": {
                            "description": "A special supplemental group that applies to all containers in a pod.\nSome volume types allow the Kubelet to change the ownership of that volume\nto be owned by the pod:\n\n1. The owning GID will be the FSGroup\n2. The setgid bit is set (new files created in the volume will be owned by FSGroup)\n3. The permission bits are OR'd with rw-rw----\n\nIf unset, the Kubelet will not modify the ownership and permissions of any volume.\nNote that this field cannot be set when spec.os.name is windows.",
                            "format": "int64",
                            "type": "integer",
                            "minimum": -9223372036854776000,
                            "maximum": 9223372036854776000
                        },
                        "fsGroupChangePolicy": {
                            "description": "fsGroupChangePolicy defines behavior of changing ownership and permission of the volume\nbefore being exposed inside Pod. This field will only apply to\nvolume types which support fsGroup based ownership(and permissions).\nIt will have no effect on ephemeral volume types such as: secret, configmaps\nand emptydir.\nValid values are \"OnRootMismatch\" and \"Always\". If not specified, \"Always\" is used.\nNote that this field cannot be set when spec.os.name is windows.",
                            "type": "string"
                        },
                        "runAsGroup": {
                            "description": "The GID to run the entrypoint of the container process.\nUses runtime default if unset.\nMay also be set in SecurityContext.  If set in both SecurityContext and\nPodSecurityContext, the value specified in SecurityContext takes precedence\nfor that container.\nNote that this field cannot be set when spec.os.name is windows.",
                            "format": "int64",
                            "type": "integer",
                            "minimum": -9223372036854776000,
                            "maximum": 9223372036854776000
                        },
                        "runAsNonRoot": {
                            "description": "Indicates that the container must run as a non-root user.\nIf true, the Kubelet will validate the image at runtime to ensure that it\ndoes not run as UID 0 (root) and fail to start the container if it does.\nIf unset or false, no such validation will be performed.\nMay also be set in SecurityContext.  If set in both SecurityContext and\nPodSecurityContext, the value specified in SecurityContext takes precedence.",
                            "type": "boolean"
                        },
                        "runAsUser": {
                            "description": "The UID to run the entrypoint of the container process.\nDefaults to user specified in image metadata if unspecified.\nMay also be set in SecurityContext.  If set in both SecurityContext and\nPodSecurityContext, the value specified in SecurityContext takes precedence\nfor that container.\nNote that this field cannot be set when spec.os.name is windows.",
                            "format": "int64",
                            "type": "integer",
                            "minimum": -9223372036854776000,
                            "maximum": 9223372036854776000
                        },
                        "seLinuxChangePolicy": {
                            "description": "seLinuxChangePolicy defines how the container's SELinux label is applied to all volumes used by the Pod.\nIt has no effect on nodes that do not support SELinux or to volumes does not support SELinux.\nValid values are \"MountOption\" and \"Recursive\".\n\n\"Recursive\" means relabeling of all files on all Pod volumes by the container runtime.\nThis may be slow for large volumes, but allows mixing privileged and unprivileged Pods sharing the same volume on the same node.\n\n\"MountOption\" mounts all eligible Pod volumes with `-o context` mount option.\nThis requires all Pods that share the same volume to use the same SELinux label.\nIt is not possible to share the same volume among privileged and unprivileged Pods.\nEligible volumes are in-tree FibreChannel and iSCSI volumes, and all CSI volumes\nwhose CSI driver announces SELinux support by setting spec.seLinuxMount: true in their\nCSIDriver instance. Other volumes are always re-labelled recursively.\n\"MountOption\" value is allowed only when SELinuxMount feature gate is enabled.\n\nIf not specified and SELinuxMount feature gate is enabled, \"MountOption\" is used.\nIf not specified and SELinuxMount feature gate is disabled, \"MountOption\" is used for ReadWriteOncePod volumes\nand \"Recursive\" for all other volumes.\n\nThis field affects only Pods that have SELinux label set, either in PodSecurityContext or in SecurityContext of all containers.\n\nAll Pods that use the same volume should use the same seLinuxChangePolicy, otherwise some pods can get stuck in ContainerCreating state.\nNote that this field cannot be set when spec.os.name is windows.",
                            "type": "string"
                        },
                        "seLinuxOptions": {
                            "description": "The SELinux context to be applied to all containers.\nIf unspecified, the container runtime will allocate a random SELinux context for each\ncontainer.  May also be set in SecurityContext.  If set in\nboth SecurityContext and PodSecurityContext, the value specified in SecurityContext\ntakes precedence for that container.\nNote that this field cannot be set when spec.os.name is windows.",
                            "properties": {
                                "level": {
                                    "description": "Level is SELinux level label that applies to the container.",
                                    "type": "string"
                                },
                                "role": {
                                    "description": "Role is a SELinux role label that applies to the container.",
                                    "type": "string"
                                },
                                "type": {
                                    "description": "Type is a SELinux type label that applies to the container.",
                                    "type": "string"
                                },
                                "user": {
                                    "description": "User is a SELinux user label that applies to the container.",
                                    "type": "string"
                                }
                            },
                            "type": "object",
                            "additionalProperties": false
                        },
                        "seccompProfile": {
                            "description": "The seccomp options to use by the containers in this pod.\nNote that this field cannot be set when spec.os.name is windows.",
                            "properties": {
                                "localhostProfile": {
                                    "description": "localhostProfile indicates a profile defined in a file on the node should be used.\nThe profile must be preconfigured on the node to work.\nMust be a descending path, relative to the kubelet's configured seccomp profile location.\nMust be set if type is \"Localhost\". Must NOT be set for any other type.",
                                    "type": "string"
                                },
                                "type": {
                                    "description": "type indicates which kind of seccomp profile will be applied.\nValid options are:\n\nLocalhost - a profile defined in a file on the node should be used.\nRuntimeDefault - the container runtime default profile should be used.\nUnconfined - no profile should be applied.",
                                    "type": "string"
                                }
                            },
                            "required": [
                                "type"
                            ],
                            "type": "object",
                            "additionalProperties": false
                        },
                        "supplementalGroups": {
                            "description": "A list of groups applied to the first process run in each container, in\naddition to the container's primary GID and fsGroup (if specified).  If\nthe SupplementalGroupsPolicy feature is enabled, the\nsupplementalGroupsPolicy field determines whether these are in addition\nto or instead of any group memberships defined in the container image.\nIf unspecified, no additional groups are added, though group memberships\ndefined in the container image may still be used, depending on the\nsupplementalGroupsPolicy field.\nNote that this field cannot be set when spec.os.name is windows.",
                            "items": {
                                "format": "int64",
                                "type": "integer",
                                "minimum": -9223372036854776000,
                                "maximum": 9223372036854776000
                            },
                            "type": "array",
                            "x-kubernetes-list-type": "atomic"
                        },
                        "supplementalGroupsPolicy": {
                            "description": "Defines how supplemental groups of the first container processes are calculated.\nValid values are \"Merge\" and \"Strict\". If not specified, \"Merge\" is used.\n(Alpha) Using the field requires the SupplementalGroupsPolicy feature gate to be enabled\nand the container runtime must implement support for this feature.\nNote that this field cannot be set when spec.os.name is windows.",
                            "type": "string"
                        },
                        "sysctls": {
                            "description": "Sysctls hold a list of namespaced sysctls used for the pod. Pods with unsupported\nsysctls (by the container runtime) might fail to launch.\nNote that this field cannot be set when spec.os.name is windows.",
                            "items": {
                                "description": "Sysctl defines a kernel parameter to be set",
                                "properties": {
                                    "name": {
                                        "description": "Name of a property to set",
                                        "type": "string"
                                    },
                                    "value": {
                                        "description": "Value of a property to set",
                                        "type": "string"
                                    }
                                },
                                "required": [
                                    "name",
                                    "value"
                                ],
                                "type": "object",
                                "additionalProperties": false
                            },
                            "type": "array",
                            "x-kubernetes-list-type": "atomic"
                        },
                        "windowsOptions": {
                            "description": "The Windows specific settings applied to all containers.\nIf unspecified, the options within a container's SecurityContext will be used.\nIf set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.\nNote that this field cannot be set when spec.os.name is linux.",
                            "properties": {
                                "gmsaCredentialSpec": {
                                    "description": "GMSACredentialSpec is where the GMSA admission webhook\n(https://github.com/kubernetes-sigs/windows-gmsa) inlines the contents of the\nGMSA credential spec named by the GMSACredentialSpecName field.",
                                    "type": "string"
                                },
                                "gmsaCredentialSpecName": {
                                    "description": "GMSACredentialSpecName is the name of the GMSA credential spec to use.",
                                    "type": "string"
                                },
                                "hostProcess": {
                                    "description": "HostProcess determines if a container should be run as a 'Host Process' container.\nAll of a Pod's containers must have the same effective HostProcess value\n(it is not allowed to have a mix of HostProcess containers and non-HostProcess containers).\nIn addition, if HostProcess is true then HostNetwork must also be set to true.",
                                    "type": "boolean"
                                },
                                "runAsUserName": {
                                    "description": "The UserName in Windows to run the entrypoint of the container process.\nDefaults to the user specified in image metadata if unspecified.\nMay also be set in PodSecurityContext. If set in both SecurityContext and\nPodSecurityContext, the value specified in SecurityContext takes precedence.",
                                    "type": "string"
                                }
                            },
                            "type": "object",
                            "additionalProperties": false
                        }
                    },
                    "type": "object",
                    "additionalProperties": false
                },
                "query": {
                    "description": "Query defines query configuration.",
                    "properties": {
                        "mcpServer": {
                            "description": "MCPServer defines the MCP (Model Context Protocol) server configuration.\nThe MCP server allows AI assistants to query tracing data.",
                            "properties": {
                                "enabled": {
                                    "description": "Enabled defines if the MCP (Model Context Protocol) server should be enabled.",
                                    "type": "boolean"
                                }
                            },
                            "type": "object",
                            "additionalProperties": false
                        },
                        "rbac": {
                            "description": "RBAC defines query RBAC options.\nThis option can be used only with multi-tenancy.",
                            "properties": {
                                "enabled": {
                                    "description": "Enabled defines if the query RBAC should be enabled.",
                                    "type": "boolean"
                                }
                            },
                            "type": "object",
                            "additionalProperties": false
                        }
                    },
                    "type": "object",
                    "additionalProperties": false
                },
                "resources": {
                    "description": "Resources defines the compute resource requirements of the Tempo container.",
                    "properties": {
                        "claims": {
                            "description": "Claims lists the names of resources, defined in spec.resourceClaims,\nthat are used by this container.\n\nThis field depends on the\nDynamicResourceAllocation feature gate.\n\nThis field is immutable. It can only be set for containers.",
                            "items": {
                                "description": "ResourceClaim references one entry in PodSpec.ResourceClaims.",
                                "properties": {
                                    "name": {
                                        "description": "Name must match the name of one entry in pod.spec.resourceClaims of\nthe Pod where this field is used. It makes that resource available\ninside a container.",
                                        "type": "string"
                                    },
                                    "request": {
                                        "description": "Request is the name chosen for a request in the referenced claim.\nIf empty, everything from the claim is made available, otherwise\nonly the result of this request.",
                                        "type": "string"
                                    }
                                },
                                "required": [
                                    "name"
                                ],
                                "type": "object",
                                "additionalProperties": false
                            },
                            "type": "array",
                            "x-kubernetes-list-map-keys": [
                                "name"
                            ],
                            "x-kubernetes-list-type": "map"
                        },
                        "limits": {
                            "additionalProperties": {
                                "anyOf": [
                                    {
                                        "type": "integer"
                                    },
                                    {
                                        "type": "string"
                                    }
                                ],
                                "pattern": "^(\\+|-)?(([0-9]+(\\.[0-9]*)?)|(\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\+|-)?(([0-9]+(\\.[0-9]*)?)|(\\.[0-9]+))))?$",
                                "x-kubernetes-int-or-string": true
                            },
                            "description": "Limits describes the maximum amount of compute resources allowed.\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/",
                            "type": "object"
                        },
                        "requests": {
                            "additionalProperties": {
                                "anyOf": [
                                    {
                                        "type": "integer"
                                    },
                                    {
                                        "type": "string"
                                    }
                                ],
                                "pattern": "^(\\+|-)?(([0-9]+(\\.[0-9]*)?)|(\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\+|-)?(([0-9]+(\\.[0-9]*)?)|(\\.[0-9]+))))?$",
                                "x-kubernetes-int-or-string": true
                            },
                            "description": "Requests describes the minimum amount of compute resources required.\nIf Requests is omitted for a container, it defaults to Limits if that is explicitly specified,\notherwise to an implementation-defined value. Requests cannot exceed Limits.\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/",
                            "type": "object"
                        }
                    },
                    "type": "object",
                    "additionalProperties": false
                },
                "serviceAccount": {
                    "description": "ServiceAccount defines the Service Account to use for all Tempo components.",
                    "type": "string"
                },
                "storage": {
                    "description": "Storage defines the storage configuration.",
                    "properties": {
                        "traces": {
                            "description": "Traces defines the storage configuration for traces.",
                            "properties": {
                                "azure": {
                                    "description": "Azure defines the configuration for Azure Storage.",
                                    "properties": {
                                        "secret": {
                                            "description": "Secret is the name of a Secret containing credentials for accessing object storage.\nIt needs to be in the same namespace as the TempoMonolithic custom resource.",
                                            "minLength": 1,
                                            "type": "string"
                                        }
                                    },
                                    "required": [
                                        "secret"
                                    ],
                                    "type": "object",
                                    "additionalProperties": false
                                },
                                "backend": {
                                    "default": "memory",
                                    "description": "Backend defines the backend for storing traces.\nDefault: memory.",
                                    "enum": [
                                        "memory",
                                        "pv",
                                        "azure",
                                        "gcs",
                                        "s3"
                                    ],
                                    "type": "string"
                                },
                                "gcs": {
                                    "description": "GCP defines the configuration for Google Cloud Storage.",
                                    "properties": {
                                        "secret": {
                                            "description": "Secret is the name of a Secret containing credentials for accessing object storage.\nIt needs to be in the same namespace as the TempoMonolithic custom resource.",
                                            "minLength": 1,
                                            "type": "string"
                                        }
                                    },
                                    "required": [
                                        "secret"
                                    ],
                                    "type": "object",
                                    "additionalProperties": false
                                },
                                "s3": {
                                    "description": "S3 defines the configuration for Amazon S3.",
                                    "properties": {
                                        "credentialMode": {
                                            "description": "CredentialMode can be used to set the desired credential mode for authenticating with the object storage.\nIf this is not set, then the operator tries to infer the credential mode from the provided secret and its\nown configuration.",
                                            "enum": [
                                                "static",
                                                "token",
                                                "token-cco"
                                            ],
                                            "type": "string"
                                        },
                                        "secret": {
                                            "description": "Secret is the name of a Secret containing credentials for accessing object storage.\nIt needs to be in the same namespace as the TempoMonolithic custom resource.",
                                            "minLength": 1,
                                            "type": "string"
                                        },
                                        "tls": {
                                            "description": "TLS defines the TLS configuration for Amazon S3.",
                                            "properties": {
                                                "caName": {
                                                    "description": "CA is the name of a ConfigMap containing a CA certificate (service-ca.crt).\nIt needs to be in the same namespace as the Tempo custom resource.",
                                                    "type": "string"
                                                },
                                                "certName": {
                                                    "description": "Cert is the name of a Secret containing a certificate (tls.crt) and private key (tls.key).\nIt needs to be in the same namespace as the Tempo custom resource.",
                                                    "type": "string"
                                                },
                                                "cipherSuites": {
                                                    "description": "CipherSuites defines the list of acceptable TLS cipher suites.\n\nIf not set, the ciphers are set based on feature gate tlsProfile or obtained from the cluster if openshift.clusterTLSPolicy is enabled.",
                                                    "items": {
                                                        "type": "string"
                                                    },
                                                    "type": "array"
                                                },
                                                "enabled": {
                                                    "description": "Enabled defines if TLS is enabled.",
                                                    "type": "boolean"
                                                },
                                                "minVersion": {
                                                    "description": "MinVersion defines the minimum acceptable TLS version.\n\nIf not set, the version is set based on feature gate tlsProfile or obtained from the cluster if openshift.clusterTLSPolicy is enabled.",
                                                    "type": "string"
                                                }
                                            },
                                            "type": "object",
                                            "additionalProperties": false
                                        }
                                    },
                                    "required": [
                                        "secret"
                                    ],
                                    "type": "object",
                                    "additionalProperties": false
                                },
                                "size": {
                                    "anyOf": [
                                        {
                                            "type": "integer"
                                        },
                                        {
                                            "type": "string"
                                        }
                                    ],
                                    "description": "Size defines the size of the volume where traces are stored.\nFor in-memory storage, this defines the size of the tmpfs volume.\nFor persistent volume storage, this defines the size of the persistent volume.\nFor object storage, this defines the size of the persistent volume containing the Write-Ahead Log (WAL) of Tempo.\nDefault: 2Gi for memory, 10Gi for all other backends.",
                                    "pattern": "^(\\+|-)?(([0-9]+(\\.[0-9]*)?)|(\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\+|-)?(([0-9]+(\\.[0-9]*)?)|(\\.[0-9]+))))?$",
                                    "x-kubernetes-int-or-string": true
                                },
                                "storageClassName": {
                                    "description": "StorageClassName for the PVC used by the Tempo Pod. Defaults to nil (uses the default storage class in the cluster).",
                                    "type": "string"
                                }
                            },
                            "required": [
                                "backend"
                            ],
                            "type": "object",
                            "additionalProperties": false
                        }
                    },
                    "required": [
                        "traces"
                    ],
                    "type": "object",
                    "additionalProperties": false
                },
                "timeout": {
                    "description": "Timeout configures the same timeout on all components starting at ingress down to the ingestor/querier.\nTimeout configuration on a specific component has a higher precedence.\nDefault is 30 seconds.",
                    "type": "string"
                },
                "tolerations": {
                    "description": "Tolerations defines the tolerations of a node to schedule the pod onto it.",
                    "items": {
                        "description": "The pod this Toleration is attached to tolerates any taint that matches\nthe triple <key,value,effect> using the matching operator <operator>.",
                        "properties": {
                            "effect": {
                                "description": "Effect indicates the taint effect to match. Empty means match all taint effects.\nWhen specified, allowed values are NoSchedule, PreferNoSchedule and NoExecute.",
                                "type": "string"
                            },
                            "key": {
                                "description": "Key is the taint key that the toleration applies to. Empty means match all taint keys.\nIf the key is empty, operator must be Exists; this combination means to match all values and all keys.",
                                "type": "string"
                            },
                            "operator": {
                                "description": "Operator represents a key's relationship to the value.\nValid operators are Exists and Equal. Defaults to Equal.\nExists is equivalent to wildcard for value, so that a pod can\ntolerate all taints of a particular category.",
                                "type": "string"
                            },
                            "tolerationSeconds": {
                                "description": "TolerationSeconds represents the period of time the toleration (which must be\nof effect NoExecute, otherwise this field is ignored) tolerates the taint. By default,\nit is not set, which means tolerate the taint forever (do not evict). Zero and\nnegative values will be treated as 0 (evict immediately) by the system.",
                                "format": "int64",
                                "type": "integer",
                                "minimum": -9223372036854776000,
                                "maximum": 9223372036854776000
                            },
                            "value": {
                                "description": "Value is the taint value the toleration matches to.\nIf the operator is Exists, the value should be empty, otherwise just a regular string.",
                                "type": "string"
                            }
                        },
                        "type": "object",
                        "additionalProperties": false
                    },
                    "type": "array"
                }
            },
            "type": "object",
            "additionalProperties": false
        },
        "status": {
            "description": "TempoMonolithicStatus defines the observed state of TempoMonolithic.",
            "properties": {
                "components": {
                    "description": "Components provides summary of all Tempo pod status, grouped per component.",
                    "properties": {
                        "tempo": {
                            "additionalProperties": {
                                "items": {
                                    "type": "string"
                                },
                                "type": "array"
                            },
                            "description": "Tempo is a map of the pod status of the Tempo pods.",
                            "type": "object"
                        }
                    },
                    "type": "object",
                    "additionalProperties": false
                },
                "conditions": {
                    "description": "Conditions of the Tempo deployment health.",
                    "items": {
                        "description": "Condition contains details for one aspect of the current state of this API Resource.",
                        "properties": {
                            "lastTransitionTime": {
                                "description": "lastTransitionTime is the last time the condition transitioned from one status to another.\nThis should be when the underlying condition changed.  If that is not known, then using the time when the API field changed is acceptable.",
                                "format": "date-time",
                                "type": "string"
                            },
                            "message": {
                                "description": "message is a human readable message indicating details about the transition.\nThis may be an empty string.",
                                "maxLength": 32768,
                                "type": "string"
                            },
                            "observedGeneration": {
                                "description": "observedGeneration represents the .metadata.generation that the condition was set based upon.\nFor instance, if .metadata.generation is currently 12, but the .status.conditions[x].observedGeneration is 9, the condition is out of date\nwith respect to the current state of the instance.",
                                "format": "int64",
                                "minimum": 0,
                                "type": "integer",
                                "maximum": 9223372036854776000
                            },
                            "reason": {
                                "description": "reason contains a programmatic identifier indicating the reason for the condition's last transition.\nProducers of specific condition types may define expected values and meanings for this field,\nand whether the values are considered a guaranteed API.\nThe value should be a CamelCase string.\nThis field may not be empty.",
                                "maxLength": 1024,
                                "minLength": 1,
                                "pattern": "^[A-Za-z]([A-Za-z0-9_,:]*[A-Za-z0-9_])?$",
                                "type": "string"
                            },
                            "status": {
                                "description": "status of the condition, one of True, False, Unknown.",
                                "enum": [
                                    "True",
                                    "False",
                                    "Unknown"
                                ],
                                "type": "string"
                            },
                            "type": {
                                "description": "type of condition in CamelCase or in foo.example.com/CamelCase.",
                                "maxLength": 316,
                                "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])$",
                                "type": "string"
                            }
                        },
                        "required": [
                            "lastTransitionTime",
                            "message",
                            "reason",
                            "status",
                            "type"
                        ],
                        "type": "object",
                        "additionalProperties": false
                    },
                    "type": "array"
                },
                "operatorVersion": {
                    "description": "Version of the Tempo Operator.",
                    "type": "string"
                },
                "tempoVersion": {
                    "description": "Version of the managed Tempo instance.",
                    "type": "string"
                }
            },
            "type": "object",
            "additionalProperties": false
        }
    },
    "type": "object",
    "additionalProperties": false,
    "$schema": "http://json-schema.org/draft-04/schema#"
}
