From be3eae4670efe462432226a8088d226b1cb74c07 Mon Sep 17 00:00:00 2001 From: vk-px Date: Mon, 20 Jul 2026 21:44:03 +0530 Subject: [PATCH 1/2] PB-15811 | Helm 4 changes to move CRD installation from helm to operator --- charts/px-central/crds/crd-alertmanager.yaml | 3212 ----------- .../crds/crd-alertmanagerconfigs.yaml | 2441 -------- charts/px-central/crds/crd-podmonitor.yaml | 347 -- charts/px-central/crds/crd-probes.yaml | 569 -- charts/px-central/crds/crd-prometheus.yaml | 4437 --------------- .../px-central/crds/crd-prometheusrules.yaml | 84 - .../px-central/crds/crd-servicemonitor.yaml | 366 -- charts/px-central/crds/crd-thanosrulers.yaml | 5033 ----------------- .../pre-install-hook/pre-install-check.yaml | 63 + .../pre-upgrade-hook/pre-upgrade-check.yaml | 55 +- .../px-backup/pxcentral-alertmanager.yaml | 215 +- .../px-backup/pxcentral-monitoring-crs.yaml | 822 +++ .../px-backup/pxcentral-prometheus.yaml | 604 +- .../px-central-ui/pxcentral-ui-configmap.yaml | 1 - charts/px-central/values.yaml | 1 - 15 files changed, 956 insertions(+), 17294 deletions(-) delete mode 100644 charts/px-central/crds/crd-alertmanager.yaml delete mode 100644 charts/px-central/crds/crd-alertmanagerconfigs.yaml delete mode 100644 charts/px-central/crds/crd-podmonitor.yaml delete mode 100644 charts/px-central/crds/crd-probes.yaml delete mode 100644 charts/px-central/crds/crd-prometheus.yaml delete mode 100644 charts/px-central/crds/crd-prometheusrules.yaml delete mode 100644 charts/px-central/crds/crd-servicemonitor.yaml delete mode 100644 charts/px-central/crds/crd-thanosrulers.yaml create mode 100644 charts/px-central/templates/px-backup/pxcentral-monitoring-crs.yaml diff --git a/charts/px-central/crds/crd-alertmanager.yaml b/charts/px-central/crds/crd-alertmanager.yaml deleted file mode 100644 index 398e56f7c..000000000 --- a/charts/px-central/crds/crd-alertmanager.yaml +++ /dev/null @@ -1,3212 +0,0 @@ -# https://raw.githubusercontent.com/prometheus-operator/prometheus-operator/v0.47.0/example/prometheus-operator-crd/monitoring.coreos.com_alertmanagers.yaml -apiVersion: apiextensions.k8s.io/v1 -kind: CustomResourceDefinition -metadata: - name: alertmanagers.monitoring.coreos.com - labels: - app: prometheus-operator - annotations: - "helm.sh/hook": crd-install -spec: - group: monitoring.coreos.com - names: - categories: - - prometheus-operator - kind: Alertmanager - listKind: AlertmanagerList - plural: alertmanagers - singular: alertmanager - preserveUnknownFields: false - scope: Namespaced - versions: - - additionalPrinterColumns: - - description: The version of Alertmanager - jsonPath: .spec.version - name: Version - type: string - - description: The desired replicas number of Alertmanagers - jsonPath: .spec.replicas - name: Replicas - type: integer - - jsonPath: .metadata.creationTimestamp - name: Age - type: date - name: v1 - schema: - openAPIV3Schema: - description: Alertmanager describes an Alertmanager cluster. - properties: - apiVersion: - description: 'APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More 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. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds' - type: string - metadata: - type: object - spec: - description: 'Specification of the desired behavior of the Alertmanager cluster. More info: https://github.com/kubernetes/community/blob/master/contributors/devel/sig-architecture/api-conventions.md#spec-and-status' - properties: - additionalPeers: - description: AdditionalPeers allows injecting a set of additional Alertmanagers to peer with to form a highly available cluster. - items: - type: string - type: array - affinity: - description: If specified, the pod's scheduling constraints. - 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 the affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding "weight" to the sum if the node matches the corresponding matchExpressions; the node(s) with the highest sum are the most preferred. - items: - description: An empty preferred scheduling term matches all objects with implicit weight 0 (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 that 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. Valid 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, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer. This array is replaced during a strategic merge patch. - items: - type: string - type: array - required: - - key - - operator - type: object - type: array - 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 that 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. Valid 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, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer. This array is replaced during a strategic merge patch. - items: - type: string - type: array - required: - - key - - operator - type: object - type: array - type: object - weight: - description: Weight associated with matching the corresponding nodeSelectorTerm, in the range 1-100. - format: int32 - type: integer - required: - - preference - - weight - type: object - type: array - requiredDuringSchedulingIgnoredDuringExecution: - description: If the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to an update), the system may 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 them are ANDed. The 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 that 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. Valid 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, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer. This array is replaced during a strategic merge patch. - items: - type: string - type: array - required: - - key - - operator - type: object - type: array - 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 that 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. Valid 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, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer. This array is replaced during a strategic merge patch. - items: - type: string - type: array - required: - - key - - operator - type: object - type: array - type: object - type: array - required: - - nodeSelectorTerms - type: object - type: object - 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 the affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding "weight" to the sum if the node has pods which matches the corresponding podAffinityTerm; the node(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. - 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 relates 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. Valid 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, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch. - items: - type: string - type: array - required: - - key - - operator - type: object - type: array - matchLabels: - additionalProperties: - type: string - description: matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed. - type: object - type: object - namespaces: - description: namespaces specifies which namespaces the labelSelector applies to (matches against); null or empty list means "this pod's namespace" - items: - type: string - type: array - topologyKey: - description: This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running. Empty topologyKey is not allowed. - type: string - required: - - topologyKey - type: object - weight: - description: weight associated with matching the corresponding podAffinityTerm, in the range 1-100. - format: int32 - type: integer - required: - - podAffinityTerm - - weight - type: object - type: array - requiredDuringSchedulingIgnoredDuringExecution: - description: If the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to a pod label update), the system may or may not try to eventually evict the pod from its node. When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, i.e. all terms must be satisfied. - items: - description: Defines a set of pods (namely those matching the labelSelector relative to the given namespace(s)) that this pod should be co-located (affinity) or not co-located (anti-affinity) with, where co-located is defined as running on a node whose value of the label with key matches that of any node on which a pod of the set of pods is running - properties: - labelSelector: - description: A label query over a set of resources, in this case 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 relates 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. Valid 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, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch. - items: - type: string - type: array - required: - - key - - operator - type: object - type: array - matchLabels: - additionalProperties: - type: string - description: matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed. - type: object - type: object - namespaces: - description: namespaces specifies which namespaces the labelSelector applies to (matches against); null or empty list means "this pod's namespace" - items: - type: string - type: array - topologyKey: - description: This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running. Empty topologyKey is not allowed. - type: string - required: - - topologyKey - type: object - type: array - type: object - 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 the anti-affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling anti-affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding "weight" to the sum if the node has pods which matches the corresponding podAffinityTerm; the node(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. - 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 relates 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. Valid 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, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch. - items: - type: string - type: array - required: - - key - - operator - type: object - type: array - matchLabels: - additionalProperties: - type: string - description: matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed. - type: object - type: object - namespaces: - description: namespaces specifies which namespaces the labelSelector applies to (matches against); null or empty list means "this pod's namespace" - items: - type: string - type: array - topologyKey: - description: This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running. Empty topologyKey is not allowed. - type: string - required: - - topologyKey - type: object - weight: - description: weight associated with matching the corresponding podAffinityTerm, in the range 1-100. - format: int32 - type: integer - required: - - podAffinityTerm - - weight - type: object - type: array - requiredDuringSchedulingIgnoredDuringExecution: - description: If the anti-affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the anti-affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to a pod label update), the system may or may not try to eventually evict the pod from its node. When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, i.e. all terms must be satisfied. - items: - description: Defines a set of pods (namely those matching the labelSelector relative to the given namespace(s)) that this pod should be co-located (affinity) or not co-located (anti-affinity) with, where co-located is defined as running on a node whose value of the label with key matches that of any node on which a pod of the set of pods is running - properties: - labelSelector: - description: A label query over a set of resources, in this case 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 relates 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. Valid 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, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch. - items: - type: string - type: array - required: - - key - - operator - type: object - type: array - matchLabels: - additionalProperties: - type: string - description: matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed. - type: object - type: object - namespaces: - description: namespaces specifies which namespaces the labelSelector applies to (matches against); null or empty list means "this pod's namespace" - items: - type: string - type: array - topologyKey: - description: This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running. Empty topologyKey is not allowed. - type: string - required: - - topologyKey - type: object - type: array - type: object - type: object - alertmanagerConfigNamespaceSelector: - description: Namespaces to be selected for AlertmanagerConfig discovery. If nil, only check own namespace. - 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 relates 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. Valid 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, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch. - items: - type: string - type: array - required: - - key - - operator - type: object - type: array - matchLabels: - additionalProperties: - type: string - description: matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed. - type: object - type: object - alertmanagerConfigSelector: - description: AlertmanagerConfigs to be selected for to merge and configure Alertmanager with. - 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 relates 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. Valid 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, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch. - items: - type: string - type: array - required: - - key - - operator - type: object - type: array - matchLabels: - additionalProperties: - type: string - description: matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed. - type: object - type: object - baseImage: - description: 'Base image that is used to deploy pods, without tag. Deprecated: use ''image'' instead' - type: string - clusterAdvertiseAddress: - description: 'ClusterAdvertiseAddress is the explicit address to advertise in cluster. Needs to be provided for non RFC1918 [1] (public) addresses. [1] RFC1918: https://tools.ietf.org/html/rfc1918' - type: string - clusterGossipInterval: - description: Interval between gossip attempts. - type: string - clusterPeerTimeout: - description: Timeout for cluster peering. - type: string - clusterPushpullInterval: - description: Interval between pushpull attempts. - type: string - configMaps: - description: ConfigMaps is a list of ConfigMaps in the same namespace as the Alertmanager object, which shall be mounted into the Alertmanager Pods. The ConfigMaps are mounted into /etc/alertmanager/configmaps/. - items: - type: string - type: array - configSecret: - description: ConfigSecret is the name of a Kubernetes Secret in the same namespace as the Alertmanager object, which contains configuration for this Alertmanager instance. Defaults to 'alertmanager-' The secret is mounted into /etc/alertmanager/config. - type: string - containers: - description: 'Containers allows injecting additional containers. This is meant to allow adding an authentication proxy to an Alertmanager pod. Containers described here modify an operator generated container if they share the same name and modifications are done via a strategic merge patch. The current container names are: `alertmanager` and `config-reloader`. Overriding containers is entirely outside the scope of what the maintainers will support and by doing so, you accept that this behaviour may break at any time without notice.' - items: - description: A single application container that you want to run within a pod. - properties: - args: - description: 'Arguments to the entrypoint. The docker image''s CMD is used if this is not provided. Variable references $(VAR_NAME) are expanded using the container''s environment. If a variable cannot be resolved, the reference in the input string will be unchanged. The $(VAR_NAME) syntax can be escaped with a double $$, ie: $$(VAR_NAME). Escaped references will never be expanded, regardless of whether the variable exists or not. Cannot be updated. More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell' - items: - type: string - type: array - command: - description: 'Entrypoint array. Not executed within a shell. The docker image''s ENTRYPOINT is used if this is not provided. Variable references $(VAR_NAME) are expanded using the container''s environment. If a variable cannot be resolved, the reference in the input string will be unchanged. The $(VAR_NAME) syntax can be escaped with a double $$, ie: $$(VAR_NAME). Escaped references will never be expanded, regardless of whether the variable exists or not. Cannot be updated. More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell' - items: - type: string - type: array - env: - description: List of environment variables to set in the container. Cannot be updated. - items: - description: EnvVar represents an environment variable present in a Container. - properties: - name: - description: Name of the environment variable. Must be a C_IDENTIFIER. - type: string - value: - description: 'Variable references $(VAR_NAME) are expanded using the previous defined environment variables in the container and any service environment variables. If a variable cannot be resolved, the reference in the input string will be unchanged. The $(VAR_NAME) syntax can be escaped with a double $$, ie: $$(VAR_NAME). Escaped references will never be expanded, regardless of whether the variable exists or not. Defaults to "".' - type: string - valueFrom: - description: Source for the environment variable's value. Cannot be used if value is not empty. - properties: - configMapKeyRef: - description: Selects a key of a ConfigMap. - properties: - key: - description: The key to select. - type: string - name: - description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?' - type: string - optional: - description: Specify whether the ConfigMap or its key must be defined - type: boolean - required: - - key - type: object - fieldRef: - description: 'Selects a field of the pod: supports metadata.name, metadata.namespace, metadata.labels, metadata.annotations, spec.nodeName, spec.serviceAccountName, status.hostIP, status.podIP, status.podIPs.' - properties: - apiVersion: - description: Version of the schema the FieldPath is written in terms of, defaults to "v1". - type: string - fieldPath: - description: Path of the field to select in the specified API version. - type: string - required: - - fieldPath - type: object - resourceFieldRef: - description: 'Selects a resource of the container: only resources limits and requests (limits.cpu, limits.memory, limits.ephemeral-storage, requests.cpu, requests.memory and requests.ephemeral-storage) are currently supported.' - properties: - containerName: - description: 'Container name: required for volumes, optional for env vars' - type: string - divisor: - anyOf: - - type: integer - - type: string - description: Specifies the output format of the exposed resources, defaults to "1" - pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ - x-kubernetes-int-or-string: true - resource: - description: 'Required: resource to select' - type: string - required: - - resource - type: object - secretKeyRef: - description: Selects a key of a secret in the pod's namespace - properties: - key: - description: The key of the secret to select from. Must be a valid secret key. - type: string - name: - description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?' - type: string - optional: - description: Specify whether the Secret or its key must be defined - type: boolean - required: - - key - type: object - type: object - required: - - name - type: object - type: array - envFrom: - description: List of sources to populate environment variables in the container. The keys defined within a source must be a C_IDENTIFIER. All invalid keys will be reported as an event when the container is starting. When a key exists in multiple sources, the value associated with the last source will take precedence. Values defined by an Env with a duplicate key will take precedence. Cannot be updated. - items: - description: EnvFromSource represents the source of a set of ConfigMaps - properties: - configMapRef: - description: The ConfigMap to select from - properties: - name: - description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?' - type: string - optional: - description: Specify whether the ConfigMap must be defined - type: boolean - type: object - prefix: - description: An optional identifier to prepend to each key in the ConfigMap. Must be a C_IDENTIFIER. - type: string - secretRef: - description: The Secret to select from - properties: - name: - description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?' - type: string - optional: - description: Specify whether the Secret must be defined - type: boolean - type: object - type: object - type: array - image: - description: 'Docker image name. More info: https://kubernetes.io/docs/concepts/containers/images This field is optional to allow higher level config management to default or override container images in workload controllers like Deployments and StatefulSets.' - type: string - imagePullPolicy: - description: 'Image pull policy. One of Always, Never, IfNotPresent. Defaults to Always if :latest tag is specified, or IfNotPresent otherwise. Cannot be updated. More info: https://kubernetes.io/docs/concepts/containers/images#updating-images' - type: string - lifecycle: - description: Actions that the management system should take in response to container lifecycle events. Cannot be updated. - properties: - postStart: - description: 'PostStart is called immediately after a container is created. If the handler fails, the container is terminated and restarted according to its restart policy. Other management of the container blocks until the hook completes. More info: https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks' - properties: - exec: - description: One and only one of the following should be specified. Exec specifies the action to take. - properties: - command: - description: Command is the command line to execute inside the container, the working directory for the command is root ('/') in the container's filesystem. The command is simply exec'd, it is not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use a shell, you need to explicitly call out to that shell. Exit status of 0 is treated as live/healthy and non-zero is unhealthy. - items: - type: string - type: array - type: object - httpGet: - description: HTTPGet specifies the http request to perform. - properties: - host: - description: Host name to connect to, defaults to the pod IP. You probably want to set "Host" in httpHeaders instead. - type: string - httpHeaders: - description: Custom headers to set in the request. HTTP allows repeated headers. - items: - description: HTTPHeader describes a custom header to be used in HTTP probes - properties: - name: - description: The header field name - type: string - value: - description: The header field value - type: string - required: - - name - - value - type: object - type: array - path: - description: Path to access on the HTTP server. - type: string - port: - anyOf: - - type: integer - - type: string - description: Name or number of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME. - x-kubernetes-int-or-string: true - scheme: - description: Scheme to use for connecting to the host. Defaults to HTTP. - type: string - required: - - port - type: object - tcpSocket: - description: 'TCPSocket specifies an action involving a TCP port. TCP hooks not yet supported TODO: implement a realistic TCP lifecycle hook' - properties: - host: - description: 'Optional: Host name to connect to, defaults to the pod IP.' - type: string - port: - anyOf: - - type: integer - - type: string - description: Number or name of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME. - x-kubernetes-int-or-string: true - required: - - port - type: object - type: object - preStop: - description: 'PreStop is called immediately before a container is terminated due to an API request or management event such as liveness/startup probe failure, preemption, resource contention, etc. The handler is not called if the container crashes or exits. The reason for termination is passed to the handler. The Pod''s termination grace period countdown begins before the PreStop hooked is executed. Regardless of the outcome of the handler, the container will eventually terminate within the Pod''s termination grace period. Other management of the container blocks until the hook completes or until the termination grace period is reached. More info: https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks' - properties: - exec: - description: One and only one of the following should be specified. Exec specifies the action to take. - properties: - command: - description: Command is the command line to execute inside the container, the working directory for the command is root ('/') in the container's filesystem. The command is simply exec'd, it is not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use a shell, you need to explicitly call out to that shell. Exit status of 0 is treated as live/healthy and non-zero is unhealthy. - items: - type: string - type: array - type: object - httpGet: - description: HTTPGet specifies the http request to perform. - properties: - host: - description: Host name to connect to, defaults to the pod IP. You probably want to set "Host" in httpHeaders instead. - type: string - httpHeaders: - description: Custom headers to set in the request. HTTP allows repeated headers. - items: - description: HTTPHeader describes a custom header to be used in HTTP probes - properties: - name: - description: The header field name - type: string - value: - description: The header field value - type: string - required: - - name - - value - type: object - type: array - path: - description: Path to access on the HTTP server. - type: string - port: - anyOf: - - type: integer - - type: string - description: Name or number of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME. - x-kubernetes-int-or-string: true - scheme: - description: Scheme to use for connecting to the host. Defaults to HTTP. - type: string - required: - - port - type: object - tcpSocket: - description: 'TCPSocket specifies an action involving a TCP port. TCP hooks not yet supported TODO: implement a realistic TCP lifecycle hook' - properties: - host: - description: 'Optional: Host name to connect to, defaults to the pod IP.' - type: string - port: - anyOf: - - type: integer - - type: string - description: Number or name of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME. - x-kubernetes-int-or-string: true - required: - - port - type: object - type: object - type: object - livenessProbe: - description: 'Periodic probe of container liveness. Container will be restarted if the probe fails. Cannot be updated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes' - properties: - exec: - description: One and only one of the following should be specified. Exec specifies the action to take. - properties: - command: - description: Command is the command line to execute inside the container, the working directory for the command is root ('/') in the container's filesystem. The command is simply exec'd, it is not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use a shell, you need to explicitly call out to that shell. Exit status of 0 is treated as live/healthy and non-zero is unhealthy. - items: - type: string - type: array - type: object - failureThreshold: - description: Minimum consecutive failures for the probe to be considered failed after having succeeded. Defaults to 3. Minimum value is 1. - format: int32 - type: integer - httpGet: - description: HTTPGet specifies the http request to perform. - properties: - host: - description: Host name to connect to, defaults to the pod IP. You probably want to set "Host" in httpHeaders instead. - type: string - httpHeaders: - description: Custom headers to set in the request. HTTP allows repeated headers. - items: - description: HTTPHeader describes a custom header to be used in HTTP probes - properties: - name: - description: The header field name - type: string - value: - description: The header field value - type: string - required: - - name - - value - type: object - type: array - path: - description: Path to access on the HTTP server. - type: string - port: - anyOf: - - type: integer - - type: string - description: Name or number of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME. - x-kubernetes-int-or-string: true - scheme: - description: Scheme to use for connecting to the host. Defaults to HTTP. - type: string - required: - - port - type: object - initialDelaySeconds: - description: 'Number of seconds after the container has started before liveness probes are initiated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes' - format: int32 - type: integer - periodSeconds: - description: How often (in seconds) to perform the probe. Default to 10 seconds. Minimum value is 1. - format: int32 - type: integer - successThreshold: - description: Minimum consecutive successes for the probe to be considered successful after having failed. Defaults to 1. Must be 1 for liveness and startup. Minimum value is 1. - format: int32 - type: integer - tcpSocket: - description: 'TCPSocket specifies an action involving a TCP port. TCP hooks not yet supported TODO: implement a realistic TCP lifecycle hook' - properties: - host: - description: 'Optional: Host name to connect to, defaults to the pod IP.' - type: string - port: - anyOf: - - type: integer - - type: string - description: Number or name of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME. - x-kubernetes-int-or-string: true - required: - - port - type: object - timeoutSeconds: - description: 'Number of seconds after which the probe times out. Defaults to 1 second. Minimum value is 1. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes' - format: int32 - type: integer - type: object - name: - description: Name of the container specified as a DNS_LABEL. Each container in a pod must have a unique name (DNS_LABEL). Cannot be updated. - type: string - ports: - description: List of ports to expose from the container. Exposing a port here gives the system additional information about the network connections a container uses, but is primarily informational. Not specifying a port here DOES NOT prevent that port from being exposed. Any port which is listening on the default "0.0.0.0" address inside a container will be accessible from the network. Cannot be updated. - items: - description: ContainerPort represents a network port in a single container. - properties: - containerPort: - description: Number of port to expose on the pod's IP address. This must be a valid port number, 0 < x < 65536. - format: int32 - type: integer - hostIP: - description: What host IP to bind the external port to. - type: string - hostPort: - description: Number of port to expose on the host. If specified, this must be a valid port number, 0 < x < 65536. If HostNetwork is specified, this must match ContainerPort. Most containers do not need this. - format: int32 - type: integer - name: - description: If specified, this must be an IANA_SVC_NAME and unique within the pod. Each named port in a pod must have a unique name. Name for the port that can be referred to by services. - type: string - protocol: - default: TCP - description: Protocol for port. Must be UDP, TCP, or SCTP. Defaults to "TCP". - type: string - required: - - containerPort - type: object - type: array - x-kubernetes-list-map-keys: - - containerPort - - protocol - x-kubernetes-list-type: map - readinessProbe: - description: 'Periodic probe of container service readiness. Container will be removed from service endpoints if the probe fails. Cannot be updated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes' - properties: - exec: - description: One and only one of the following should be specified. Exec specifies the action to take. - properties: - command: - description: Command is the command line to execute inside the container, the working directory for the command is root ('/') in the container's filesystem. The command is simply exec'd, it is not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use a shell, you need to explicitly call out to that shell. Exit status of 0 is treated as live/healthy and non-zero is unhealthy. - items: - type: string - type: array - type: object - failureThreshold: - description: Minimum consecutive failures for the probe to be considered failed after having succeeded. Defaults to 3. Minimum value is 1. - format: int32 - type: integer - httpGet: - description: HTTPGet specifies the http request to perform. - properties: - host: - description: Host name to connect to, defaults to the pod IP. You probably want to set "Host" in httpHeaders instead. - type: string - httpHeaders: - description: Custom headers to set in the request. HTTP allows repeated headers. - items: - description: HTTPHeader describes a custom header to be used in HTTP probes - properties: - name: - description: The header field name - type: string - value: - description: The header field value - type: string - required: - - name - - value - type: object - type: array - path: - description: Path to access on the HTTP server. - type: string - port: - anyOf: - - type: integer - - type: string - description: Name or number of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME. - x-kubernetes-int-or-string: true - scheme: - description: Scheme to use for connecting to the host. Defaults to HTTP. - type: string - required: - - port - type: object - initialDelaySeconds: - description: 'Number of seconds after the container has started before liveness probes are initiated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes' - format: int32 - type: integer - periodSeconds: - description: How often (in seconds) to perform the probe. Default to 10 seconds. Minimum value is 1. - format: int32 - type: integer - successThreshold: - description: Minimum consecutive successes for the probe to be considered successful after having failed. Defaults to 1. Must be 1 for liveness and startup. Minimum value is 1. - format: int32 - type: integer - tcpSocket: - description: 'TCPSocket specifies an action involving a TCP port. TCP hooks not yet supported TODO: implement a realistic TCP lifecycle hook' - properties: - host: - description: 'Optional: Host name to connect to, defaults to the pod IP.' - type: string - port: - anyOf: - - type: integer - - type: string - description: Number or name of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME. - x-kubernetes-int-or-string: true - required: - - port - type: object - timeoutSeconds: - description: 'Number of seconds after which the probe times out. Defaults to 1 second. Minimum value is 1. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes' - format: int32 - type: integer - type: object - resources: - description: 'Compute Resources required by this container. Cannot be updated. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/' - properties: - 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. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/' - 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. If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/' - type: object - type: object - securityContext: - description: 'Security options the pod should run with. More info: https://kubernetes.io/docs/concepts/policy/security-context/ More info: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/' - properties: - allowPrivilegeEscalation: - description: 'AllowPrivilegeEscalation controls whether a process can gain more privileges than its parent process. This bool directly controls if the no_new_privs flag will be set on the container process. AllowPrivilegeEscalation is true always when the container is: 1) run as Privileged 2) has CAP_SYS_ADMIN' - type: boolean - capabilities: - description: The capabilities to add/drop when running containers. Defaults to the default set of capabilities granted by the container runtime. - properties: - add: - description: Added capabilities - items: - description: Capability represent POSIX capabilities type - type: string - type: array - drop: - description: Removed capabilities - items: - description: Capability represent POSIX capabilities type - type: string - type: array - type: object - privileged: - description: Run container in privileged mode. Processes in privileged containers are essentially equivalent to root on the host. Defaults to false. - type: boolean - procMount: - description: procMount denotes the type of proc mount to use for the containers. The default is DefaultProcMount which uses the container runtime defaults for readonly paths and masked paths. This requires the ProcMountType feature flag to be enabled. - type: string - readOnlyRootFilesystem: - description: Whether this container has a read-only root filesystem. Default is false. - type: boolean - runAsGroup: - description: The GID to run the entrypoint of the container process. Uses runtime default if unset. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence. - format: int64 - type: integer - runAsNonRoot: - description: Indicates that the container must run as a non-root user. If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does. If unset or false, no such validation will be performed. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence. - type: boolean - runAsUser: - description: The UID to run the entrypoint of the container process. Defaults to user specified in image metadata if unspecified. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence. - format: int64 - type: integer - seLinuxOptions: - description: The SELinux context to be applied to the container. If unspecified, the container runtime will allocate a random SELinux context for each container. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence. - 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 - windowsOptions: - description: The Windows specific settings applied to all containers. If unspecified, the options from the PodSecurityContext will be used. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence. - properties: - gmsaCredentialSpec: - description: GMSACredentialSpec is where the GMSA admission webhook (https://github.com/kubernetes-sigs/windows-gmsa) inlines the contents of the GMSA credential spec named by the GMSACredentialSpecName field. - type: string - gmsaCredentialSpecName: - description: GMSACredentialSpecName is the name of the GMSA credential spec to use. - type: string - runAsUserName: - description: The UserName in Windows to run the entrypoint of the container process. Defaults to the user specified in image metadata if unspecified. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence. - type: string - type: object - type: object - startupProbe: - description: 'StartupProbe indicates that the Pod has successfully initialized. If specified, no other probes are executed until this completes successfully. If this probe fails, the Pod will be restarted, just as if the livenessProbe failed. This can be used to provide different probe parameters at the beginning of a Pod''s lifecycle, when it might take a long time to load data or warm a cache, than during steady-state operation. This cannot be updated. This is a beta feature enabled by the StartupProbe feature flag. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes' - properties: - exec: - description: One and only one of the following should be specified. Exec specifies the action to take. - properties: - command: - description: Command is the command line to execute inside the container, the working directory for the command is root ('/') in the container's filesystem. The command is simply exec'd, it is not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use a shell, you need to explicitly call out to that shell. Exit status of 0 is treated as live/healthy and non-zero is unhealthy. - items: - type: string - type: array - type: object - failureThreshold: - description: Minimum consecutive failures for the probe to be considered failed after having succeeded. Defaults to 3. Minimum value is 1. - format: int32 - type: integer - httpGet: - description: HTTPGet specifies the http request to perform. - properties: - host: - description: Host name to connect to, defaults to the pod IP. You probably want to set "Host" in httpHeaders instead. - type: string - httpHeaders: - description: Custom headers to set in the request. HTTP allows repeated headers. - items: - description: HTTPHeader describes a custom header to be used in HTTP probes - properties: - name: - description: The header field name - type: string - value: - description: The header field value - type: string - required: - - name - - value - type: object - type: array - path: - description: Path to access on the HTTP server. - type: string - port: - anyOf: - - type: integer - - type: string - description: Name or number of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME. - x-kubernetes-int-or-string: true - scheme: - description: Scheme to use for connecting to the host. Defaults to HTTP. - type: string - required: - - port - type: object - initialDelaySeconds: - description: 'Number of seconds after the container has started before liveness probes are initiated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes' - format: int32 - type: integer - periodSeconds: - description: How often (in seconds) to perform the probe. Default to 10 seconds. Minimum value is 1. - format: int32 - type: integer - successThreshold: - description: Minimum consecutive successes for the probe to be considered successful after having failed. Defaults to 1. Must be 1 for liveness and startup. Minimum value is 1. - format: int32 - type: integer - tcpSocket: - description: 'TCPSocket specifies an action involving a TCP port. TCP hooks not yet supported TODO: implement a realistic TCP lifecycle hook' - properties: - host: - description: 'Optional: Host name to connect to, defaults to the pod IP.' - type: string - port: - anyOf: - - type: integer - - type: string - description: Number or name of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME. - x-kubernetes-int-or-string: true - required: - - port - type: object - timeoutSeconds: - description: 'Number of seconds after which the probe times out. Defaults to 1 second. Minimum value is 1. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes' - format: int32 - type: integer - type: object - stdin: - description: Whether this container should allocate a buffer for stdin in the container runtime. If this is not set, reads from stdin in the container will always result in EOF. Default is false. - type: boolean - stdinOnce: - description: Whether the container runtime should close the stdin channel after it has been opened by a single attach. When stdin is true the stdin stream will remain open across multiple attach sessions. If stdinOnce is set to true, stdin is opened on container start, is empty until the first client attaches to stdin, and then remains open and accepts data until the client disconnects, at which time stdin is closed and remains closed until the container is restarted. If this flag is false, a container processes that reads from stdin will never receive an EOF. Default is false - type: boolean - terminationMessagePath: - description: 'Optional: Path at which the file to which the container''s termination message will be written is mounted into the container''s filesystem. Message written is intended to be brief final status, such as an assertion failure message. Will be truncated by the node if greater than 4096 bytes. The total message length across all containers will be limited to 12kb. Defaults to /dev/termination-log. Cannot be updated.' - type: string - terminationMessagePolicy: - description: Indicate how the termination message should be populated. File will use the contents of terminationMessagePath to populate the container status message on both success and failure. FallbackToLogsOnError will use the last chunk of container log output if the termination message file is empty and the container exited with an error. The log output is limited to 2048 bytes or 80 lines, whichever is smaller. Defaults to File. Cannot be updated. - type: string - tty: - description: Whether this container should allocate a TTY for itself, also requires 'stdin' to be true. Default is false. - type: boolean - volumeDevices: - description: volumeDevices is the list of block devices to be used by the container. - items: - description: volumeDevice describes a mapping of a raw block device within a container. - properties: - devicePath: - description: devicePath is the path inside of the container that the device will be mapped to. - type: string - name: - description: name must match the name of a persistentVolumeClaim in the pod - type: string - required: - - devicePath - - name - type: object - type: array - volumeMounts: - description: Pod volumes to mount into the container's filesystem. Cannot be updated. - items: - description: VolumeMount describes a mounting of a Volume within a container. - properties: - mountPath: - description: Path within the container at which the volume should be mounted. Must not contain ':'. - type: string - mountPropagation: - description: mountPropagation determines how mounts are propagated from the host to container and the other way around. When not set, MountPropagationNone is used. This field is beta in 1.10. - type: string - name: - description: This must match the Name of a Volume. - type: string - readOnly: - description: Mounted read-only if true, read-write otherwise (false or unspecified). Defaults to false. - type: boolean - subPath: - description: Path within the volume from which the container's volume should be mounted. Defaults to "" (volume's root). - type: string - subPathExpr: - description: Expanded path within the volume from which the container's volume should be mounted. Behaves similarly to SubPath but environment variable references $(VAR_NAME) are expanded using the container's environment. Defaults to "" (volume's root). SubPathExpr and SubPath are mutually exclusive. - type: string - required: - - mountPath - - name - type: object - type: array - workingDir: - description: Container's working directory. If not specified, the container runtime's default will be used, which might be configured in the container image. Cannot be updated. - type: string - required: - - name - type: object - type: array - externalUrl: - description: The external URL the Alertmanager instances will be available under. This is necessary to generate correct URLs. This is necessary if Alertmanager is not served from root of a DNS name. - type: string - forceEnableClusterMode: - description: ForceEnableClusterMode ensures Alertmanager does not deactivate the cluster mode when running with a single replica. Use case is e.g. spanning an Alertmanager cluster across Kubernetes clusters with a single replica in each. - type: boolean - image: - description: Image if specified has precedence over baseImage, tag and sha combinations. Specifying the version is still necessary to ensure the Prometheus Operator knows what version of Alertmanager is being configured. - type: string - imagePullSecrets: - description: An optional list of references to secrets in the same namespace to use for pulling prometheus and alertmanager images from registries see http://kubernetes.io/docs/user-guide/images#specifying-imagepullsecrets-on-a-pod - items: - description: LocalObjectReference contains enough information to let you locate the referenced object inside the same namespace. - properties: - name: - description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?' - type: string - type: object - type: array - initContainers: - description: 'InitContainers allows adding initContainers to the pod definition. Those can be used to e.g. fetch secrets for injection into the Alertmanager configuration from external sources. Any errors during the execution of an initContainer will lead to a restart of the Pod. More info: https://kubernetes.io/docs/concepts/workloads/pods/init-containers/ Using initContainers for any use case other then secret fetching is entirely outside the scope of what the maintainers will support and by doing so, you accept that this behaviour may break at any time without notice.' - items: - description: A single application container that you want to run within a pod. - properties: - args: - description: 'Arguments to the entrypoint. The docker image''s CMD is used if this is not provided. Variable references $(VAR_NAME) are expanded using the container''s environment. If a variable cannot be resolved, the reference in the input string will be unchanged. The $(VAR_NAME) syntax can be escaped with a double $$, ie: $$(VAR_NAME). Escaped references will never be expanded, regardless of whether the variable exists or not. Cannot be updated. More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell' - items: - type: string - type: array - command: - description: 'Entrypoint array. Not executed within a shell. The docker image''s ENTRYPOINT is used if this is not provided. Variable references $(VAR_NAME) are expanded using the container''s environment. If a variable cannot be resolved, the reference in the input string will be unchanged. The $(VAR_NAME) syntax can be escaped with a double $$, ie: $$(VAR_NAME). Escaped references will never be expanded, regardless of whether the variable exists or not. Cannot be updated. More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell' - items: - type: string - type: array - env: - description: List of environment variables to set in the container. Cannot be updated. - items: - description: EnvVar represents an environment variable present in a Container. - properties: - name: - description: Name of the environment variable. Must be a C_IDENTIFIER. - type: string - value: - description: 'Variable references $(VAR_NAME) are expanded using the previous defined environment variables in the container and any service environment variables. If a variable cannot be resolved, the reference in the input string will be unchanged. The $(VAR_NAME) syntax can be escaped with a double $$, ie: $$(VAR_NAME). Escaped references will never be expanded, regardless of whether the variable exists or not. Defaults to "".' - type: string - valueFrom: - description: Source for the environment variable's value. Cannot be used if value is not empty. - properties: - configMapKeyRef: - description: Selects a key of a ConfigMap. - properties: - key: - description: The key to select. - type: string - name: - description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?' - type: string - optional: - description: Specify whether the ConfigMap or its key must be defined - type: boolean - required: - - key - type: object - fieldRef: - description: 'Selects a field of the pod: supports metadata.name, metadata.namespace, metadata.labels, metadata.annotations, spec.nodeName, spec.serviceAccountName, status.hostIP, status.podIP, status.podIPs.' - properties: - apiVersion: - description: Version of the schema the FieldPath is written in terms of, defaults to "v1". - type: string - fieldPath: - description: Path of the field to select in the specified API version. - type: string - required: - - fieldPath - type: object - resourceFieldRef: - description: 'Selects a resource of the container: only resources limits and requests (limits.cpu, limits.memory, limits.ephemeral-storage, requests.cpu, requests.memory and requests.ephemeral-storage) are currently supported.' - properties: - containerName: - description: 'Container name: required for volumes, optional for env vars' - type: string - divisor: - anyOf: - - type: integer - - type: string - description: Specifies the output format of the exposed resources, defaults to "1" - pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ - x-kubernetes-int-or-string: true - resource: - description: 'Required: resource to select' - type: string - required: - - resource - type: object - secretKeyRef: - description: Selects a key of a secret in the pod's namespace - properties: - key: - description: The key of the secret to select from. Must be a valid secret key. - type: string - name: - description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?' - type: string - optional: - description: Specify whether the Secret or its key must be defined - type: boolean - required: - - key - type: object - type: object - required: - - name - type: object - type: array - envFrom: - description: List of sources to populate environment variables in the container. The keys defined within a source must be a C_IDENTIFIER. All invalid keys will be reported as an event when the container is starting. When a key exists in multiple sources, the value associated with the last source will take precedence. Values defined by an Env with a duplicate key will take precedence. Cannot be updated. - items: - description: EnvFromSource represents the source of a set of ConfigMaps - properties: - configMapRef: - description: The ConfigMap to select from - properties: - name: - description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?' - type: string - optional: - description: Specify whether the ConfigMap must be defined - type: boolean - type: object - prefix: - description: An optional identifier to prepend to each key in the ConfigMap. Must be a C_IDENTIFIER. - type: string - secretRef: - description: The Secret to select from - properties: - name: - description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?' - type: string - optional: - description: Specify whether the Secret must be defined - type: boolean - type: object - type: object - type: array - image: - description: 'Docker image name. More info: https://kubernetes.io/docs/concepts/containers/images This field is optional to allow higher level config management to default or override container images in workload controllers like Deployments and StatefulSets.' - type: string - imagePullPolicy: - description: 'Image pull policy. One of Always, Never, IfNotPresent. Defaults to Always if :latest tag is specified, or IfNotPresent otherwise. Cannot be updated. More info: https://kubernetes.io/docs/concepts/containers/images#updating-images' - type: string - lifecycle: - description: Actions that the management system should take in response to container lifecycle events. Cannot be updated. - properties: - postStart: - description: 'PostStart is called immediately after a container is created. If the handler fails, the container is terminated and restarted according to its restart policy. Other management of the container blocks until the hook completes. More info: https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks' - properties: - exec: - description: One and only one of the following should be specified. Exec specifies the action to take. - properties: - command: - description: Command is the command line to execute inside the container, the working directory for the command is root ('/') in the container's filesystem. The command is simply exec'd, it is not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use a shell, you need to explicitly call out to that shell. Exit status of 0 is treated as live/healthy and non-zero is unhealthy. - items: - type: string - type: array - type: object - httpGet: - description: HTTPGet specifies the http request to perform. - properties: - host: - description: Host name to connect to, defaults to the pod IP. You probably want to set "Host" in httpHeaders instead. - type: string - httpHeaders: - description: Custom headers to set in the request. HTTP allows repeated headers. - items: - description: HTTPHeader describes a custom header to be used in HTTP probes - properties: - name: - description: The header field name - type: string - value: - description: The header field value - type: string - required: - - name - - value - type: object - type: array - path: - description: Path to access on the HTTP server. - type: string - port: - anyOf: - - type: integer - - type: string - description: Name or number of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME. - x-kubernetes-int-or-string: true - scheme: - description: Scheme to use for connecting to the host. Defaults to HTTP. - type: string - required: - - port - type: object - tcpSocket: - description: 'TCPSocket specifies an action involving a TCP port. TCP hooks not yet supported TODO: implement a realistic TCP lifecycle hook' - properties: - host: - description: 'Optional: Host name to connect to, defaults to the pod IP.' - type: string - port: - anyOf: - - type: integer - - type: string - description: Number or name of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME. - x-kubernetes-int-or-string: true - required: - - port - type: object - type: object - preStop: - description: 'PreStop is called immediately before a container is terminated due to an API request or management event such as liveness/startup probe failure, preemption, resource contention, etc. The handler is not called if the container crashes or exits. The reason for termination is passed to the handler. The Pod''s termination grace period countdown begins before the PreStop hooked is executed. Regardless of the outcome of the handler, the container will eventually terminate within the Pod''s termination grace period. Other management of the container blocks until the hook completes or until the termination grace period is reached. More info: https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks' - properties: - exec: - description: One and only one of the following should be specified. Exec specifies the action to take. - properties: - command: - description: Command is the command line to execute inside the container, the working directory for the command is root ('/') in the container's filesystem. The command is simply exec'd, it is not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use a shell, you need to explicitly call out to that shell. Exit status of 0 is treated as live/healthy and non-zero is unhealthy. - items: - type: string - type: array - type: object - httpGet: - description: HTTPGet specifies the http request to perform. - properties: - host: - description: Host name to connect to, defaults to the pod IP. You probably want to set "Host" in httpHeaders instead. - type: string - httpHeaders: - description: Custom headers to set in the request. HTTP allows repeated headers. - items: - description: HTTPHeader describes a custom header to be used in HTTP probes - properties: - name: - description: The header field name - type: string - value: - description: The header field value - type: string - required: - - name - - value - type: object - type: array - path: - description: Path to access on the HTTP server. - type: string - port: - anyOf: - - type: integer - - type: string - description: Name or number of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME. - x-kubernetes-int-or-string: true - scheme: - description: Scheme to use for connecting to the host. Defaults to HTTP. - type: string - required: - - port - type: object - tcpSocket: - description: 'TCPSocket specifies an action involving a TCP port. TCP hooks not yet supported TODO: implement a realistic TCP lifecycle hook' - properties: - host: - description: 'Optional: Host name to connect to, defaults to the pod IP.' - type: string - port: - anyOf: - - type: integer - - type: string - description: Number or name of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME. - x-kubernetes-int-or-string: true - required: - - port - type: object - type: object - type: object - livenessProbe: - description: 'Periodic probe of container liveness. Container will be restarted if the probe fails. Cannot be updated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes' - properties: - exec: - description: One and only one of the following should be specified. Exec specifies the action to take. - properties: - command: - description: Command is the command line to execute inside the container, the working directory for the command is root ('/') in the container's filesystem. The command is simply exec'd, it is not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use a shell, you need to explicitly call out to that shell. Exit status of 0 is treated as live/healthy and non-zero is unhealthy. - items: - type: string - type: array - type: object - failureThreshold: - description: Minimum consecutive failures for the probe to be considered failed after having succeeded. Defaults to 3. Minimum value is 1. - format: int32 - type: integer - httpGet: - description: HTTPGet specifies the http request to perform. - properties: - host: - description: Host name to connect to, defaults to the pod IP. You probably want to set "Host" in httpHeaders instead. - type: string - httpHeaders: - description: Custom headers to set in the request. HTTP allows repeated headers. - items: - description: HTTPHeader describes a custom header to be used in HTTP probes - properties: - name: - description: The header field name - type: string - value: - description: The header field value - type: string - required: - - name - - value - type: object - type: array - path: - description: Path to access on the HTTP server. - type: string - port: - anyOf: - - type: integer - - type: string - description: Name or number of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME. - x-kubernetes-int-or-string: true - scheme: - description: Scheme to use for connecting to the host. Defaults to HTTP. - type: string - required: - - port - type: object - initialDelaySeconds: - description: 'Number of seconds after the container has started before liveness probes are initiated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes' - format: int32 - type: integer - periodSeconds: - description: How often (in seconds) to perform the probe. Default to 10 seconds. Minimum value is 1. - format: int32 - type: integer - successThreshold: - description: Minimum consecutive successes for the probe to be considered successful after having failed. Defaults to 1. Must be 1 for liveness and startup. Minimum value is 1. - format: int32 - type: integer - tcpSocket: - description: 'TCPSocket specifies an action involving a TCP port. TCP hooks not yet supported TODO: implement a realistic TCP lifecycle hook' - properties: - host: - description: 'Optional: Host name to connect to, defaults to the pod IP.' - type: string - port: - anyOf: - - type: integer - - type: string - description: Number or name of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME. - x-kubernetes-int-or-string: true - required: - - port - type: object - timeoutSeconds: - description: 'Number of seconds after which the probe times out. Defaults to 1 second. Minimum value is 1. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes' - format: int32 - type: integer - type: object - name: - description: Name of the container specified as a DNS_LABEL. Each container in a pod must have a unique name (DNS_LABEL). Cannot be updated. - type: string - ports: - description: List of ports to expose from the container. Exposing a port here gives the system additional information about the network connections a container uses, but is primarily informational. Not specifying a port here DOES NOT prevent that port from being exposed. Any port which is listening on the default "0.0.0.0" address inside a container will be accessible from the network. Cannot be updated. - items: - description: ContainerPort represents a network port in a single container. - properties: - containerPort: - description: Number of port to expose on the pod's IP address. This must be a valid port number, 0 < x < 65536. - format: int32 - type: integer - hostIP: - description: What host IP to bind the external port to. - type: string - hostPort: - description: Number of port to expose on the host. If specified, this must be a valid port number, 0 < x < 65536. If HostNetwork is specified, this must match ContainerPort. Most containers do not need this. - format: int32 - type: integer - name: - description: If specified, this must be an IANA_SVC_NAME and unique within the pod. Each named port in a pod must have a unique name. Name for the port that can be referred to by services. - type: string - protocol: - default: TCP - description: Protocol for port. Must be UDP, TCP, or SCTP. Defaults to "TCP". - type: string - required: - - containerPort - type: object - type: array - x-kubernetes-list-map-keys: - - containerPort - - protocol - x-kubernetes-list-type: map - readinessProbe: - description: 'Periodic probe of container service readiness. Container will be removed from service endpoints if the probe fails. Cannot be updated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes' - properties: - exec: - description: One and only one of the following should be specified. Exec specifies the action to take. - properties: - command: - description: Command is the command line to execute inside the container, the working directory for the command is root ('/') in the container's filesystem. The command is simply exec'd, it is not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use a shell, you need to explicitly call out to that shell. Exit status of 0 is treated as live/healthy and non-zero is unhealthy. - items: - type: string - type: array - type: object - failureThreshold: - description: Minimum consecutive failures for the probe to be considered failed after having succeeded. Defaults to 3. Minimum value is 1. - format: int32 - type: integer - httpGet: - description: HTTPGet specifies the http request to perform. - properties: - host: - description: Host name to connect to, defaults to the pod IP. You probably want to set "Host" in httpHeaders instead. - type: string - httpHeaders: - description: Custom headers to set in the request. HTTP allows repeated headers. - items: - description: HTTPHeader describes a custom header to be used in HTTP probes - properties: - name: - description: The header field name - type: string - value: - description: The header field value - type: string - required: - - name - - value - type: object - type: array - path: - description: Path to access on the HTTP server. - type: string - port: - anyOf: - - type: integer - - type: string - description: Name or number of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME. - x-kubernetes-int-or-string: true - scheme: - description: Scheme to use for connecting to the host. Defaults to HTTP. - type: string - required: - - port - type: object - initialDelaySeconds: - description: 'Number of seconds after the container has started before liveness probes are initiated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes' - format: int32 - type: integer - periodSeconds: - description: How often (in seconds) to perform the probe. Default to 10 seconds. Minimum value is 1. - format: int32 - type: integer - successThreshold: - description: Minimum consecutive successes for the probe to be considered successful after having failed. Defaults to 1. Must be 1 for liveness and startup. Minimum value is 1. - format: int32 - type: integer - tcpSocket: - description: 'TCPSocket specifies an action involving a TCP port. TCP hooks not yet supported TODO: implement a realistic TCP lifecycle hook' - properties: - host: - description: 'Optional: Host name to connect to, defaults to the pod IP.' - type: string - port: - anyOf: - - type: integer - - type: string - description: Number or name of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME. - x-kubernetes-int-or-string: true - required: - - port - type: object - timeoutSeconds: - description: 'Number of seconds after which the probe times out. Defaults to 1 second. Minimum value is 1. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes' - format: int32 - type: integer - type: object - resources: - description: 'Compute Resources required by this container. Cannot be updated. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/' - properties: - 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. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/' - 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. If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/' - type: object - type: object - securityContext: - description: 'Security options the pod should run with. More info: https://kubernetes.io/docs/concepts/policy/security-context/ More info: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/' - properties: - allowPrivilegeEscalation: - description: 'AllowPrivilegeEscalation controls whether a process can gain more privileges than its parent process. This bool directly controls if the no_new_privs flag will be set on the container process. AllowPrivilegeEscalation is true always when the container is: 1) run as Privileged 2) has CAP_SYS_ADMIN' - type: boolean - capabilities: - description: The capabilities to add/drop when running containers. Defaults to the default set of capabilities granted by the container runtime. - properties: - add: - description: Added capabilities - items: - description: Capability represent POSIX capabilities type - type: string - type: array - drop: - description: Removed capabilities - items: - description: Capability represent POSIX capabilities type - type: string - type: array - type: object - privileged: - description: Run container in privileged mode. Processes in privileged containers are essentially equivalent to root on the host. Defaults to false. - type: boolean - procMount: - description: procMount denotes the type of proc mount to use for the containers. The default is DefaultProcMount which uses the container runtime defaults for readonly paths and masked paths. This requires the ProcMountType feature flag to be enabled. - type: string - readOnlyRootFilesystem: - description: Whether this container has a read-only root filesystem. Default is false. - type: boolean - runAsGroup: - description: The GID to run the entrypoint of the container process. Uses runtime default if unset. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence. - format: int64 - type: integer - runAsNonRoot: - description: Indicates that the container must run as a non-root user. If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does. If unset or false, no such validation will be performed. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence. - type: boolean - runAsUser: - description: The UID to run the entrypoint of the container process. Defaults to user specified in image metadata if unspecified. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence. - format: int64 - type: integer - seLinuxOptions: - description: The SELinux context to be applied to the container. If unspecified, the container runtime will allocate a random SELinux context for each container. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence. - 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 - windowsOptions: - description: The Windows specific settings applied to all containers. If unspecified, the options from the PodSecurityContext will be used. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence. - properties: - gmsaCredentialSpec: - description: GMSACredentialSpec is where the GMSA admission webhook (https://github.com/kubernetes-sigs/windows-gmsa) inlines the contents of the GMSA credential spec named by the GMSACredentialSpecName field. - type: string - gmsaCredentialSpecName: - description: GMSACredentialSpecName is the name of the GMSA credential spec to use. - type: string - runAsUserName: - description: The UserName in Windows to run the entrypoint of the container process. Defaults to the user specified in image metadata if unspecified. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence. - type: string - type: object - type: object - startupProbe: - description: 'StartupProbe indicates that the Pod has successfully initialized. If specified, no other probes are executed until this completes successfully. If this probe fails, the Pod will be restarted, just as if the livenessProbe failed. This can be used to provide different probe parameters at the beginning of a Pod''s lifecycle, when it might take a long time to load data or warm a cache, than during steady-state operation. This cannot be updated. This is a beta feature enabled by the StartupProbe feature flag. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes' - properties: - exec: - description: One and only one of the following should be specified. Exec specifies the action to take. - properties: - command: - description: Command is the command line to execute inside the container, the working directory for the command is root ('/') in the container's filesystem. The command is simply exec'd, it is not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use a shell, you need to explicitly call out to that shell. Exit status of 0 is treated as live/healthy and non-zero is unhealthy. - items: - type: string - type: array - type: object - failureThreshold: - description: Minimum consecutive failures for the probe to be considered failed after having succeeded. Defaults to 3. Minimum value is 1. - format: int32 - type: integer - httpGet: - description: HTTPGet specifies the http request to perform. - properties: - host: - description: Host name to connect to, defaults to the pod IP. You probably want to set "Host" in httpHeaders instead. - type: string - httpHeaders: - description: Custom headers to set in the request. HTTP allows repeated headers. - items: - description: HTTPHeader describes a custom header to be used in HTTP probes - properties: - name: - description: The header field name - type: string - value: - description: The header field value - type: string - required: - - name - - value - type: object - type: array - path: - description: Path to access on the HTTP server. - type: string - port: - anyOf: - - type: integer - - type: string - description: Name or number of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME. - x-kubernetes-int-or-string: true - scheme: - description: Scheme to use for connecting to the host. Defaults to HTTP. - type: string - required: - - port - type: object - initialDelaySeconds: - description: 'Number of seconds after the container has started before liveness probes are initiated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes' - format: int32 - type: integer - periodSeconds: - description: How often (in seconds) to perform the probe. Default to 10 seconds. Minimum value is 1. - format: int32 - type: integer - successThreshold: - description: Minimum consecutive successes for the probe to be considered successful after having failed. Defaults to 1. Must be 1 for liveness and startup. Minimum value is 1. - format: int32 - type: integer - tcpSocket: - description: 'TCPSocket specifies an action involving a TCP port. TCP hooks not yet supported TODO: implement a realistic TCP lifecycle hook' - properties: - host: - description: 'Optional: Host name to connect to, defaults to the pod IP.' - type: string - port: - anyOf: - - type: integer - - type: string - description: Number or name of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME. - x-kubernetes-int-or-string: true - required: - - port - type: object - timeoutSeconds: - description: 'Number of seconds after which the probe times out. Defaults to 1 second. Minimum value is 1. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes' - format: int32 - type: integer - type: object - stdin: - description: Whether this container should allocate a buffer for stdin in the container runtime. If this is not set, reads from stdin in the container will always result in EOF. Default is false. - type: boolean - stdinOnce: - description: Whether the container runtime should close the stdin channel after it has been opened by a single attach. When stdin is true the stdin stream will remain open across multiple attach sessions. If stdinOnce is set to true, stdin is opened on container start, is empty until the first client attaches to stdin, and then remains open and accepts data until the client disconnects, at which time stdin is closed and remains closed until the container is restarted. If this flag is false, a container processes that reads from stdin will never receive an EOF. Default is false - type: boolean - terminationMessagePath: - description: 'Optional: Path at which the file to which the container''s termination message will be written is mounted into the container''s filesystem. Message written is intended to be brief final status, such as an assertion failure message. Will be truncated by the node if greater than 4096 bytes. The total message length across all containers will be limited to 12kb. Defaults to /dev/termination-log. Cannot be updated.' - type: string - terminationMessagePolicy: - description: Indicate how the termination message should be populated. File will use the contents of terminationMessagePath to populate the container status message on both success and failure. FallbackToLogsOnError will use the last chunk of container log output if the termination message file is empty and the container exited with an error. The log output is limited to 2048 bytes or 80 lines, whichever is smaller. Defaults to File. Cannot be updated. - type: string - tty: - description: Whether this container should allocate a TTY for itself, also requires 'stdin' to be true. Default is false. - type: boolean - volumeDevices: - description: volumeDevices is the list of block devices to be used by the container. - items: - description: volumeDevice describes a mapping of a raw block device within a container. - properties: - devicePath: - description: devicePath is the path inside of the container that the device will be mapped to. - type: string - name: - description: name must match the name of a persistentVolumeClaim in the pod - type: string - required: - - devicePath - - name - type: object - type: array - volumeMounts: - description: Pod volumes to mount into the container's filesystem. Cannot be updated. - items: - description: VolumeMount describes a mounting of a Volume within a container. - properties: - mountPath: - description: Path within the container at which the volume should be mounted. Must not contain ':'. - type: string - mountPropagation: - description: mountPropagation determines how mounts are propagated from the host to container and the other way around. When not set, MountPropagationNone is used. This field is beta in 1.10. - type: string - name: - description: This must match the Name of a Volume. - type: string - readOnly: - description: Mounted read-only if true, read-write otherwise (false or unspecified). Defaults to false. - type: boolean - subPath: - description: Path within the volume from which the container's volume should be mounted. Defaults to "" (volume's root). - type: string - subPathExpr: - description: Expanded path within the volume from which the container's volume should be mounted. Behaves similarly to SubPath but environment variable references $(VAR_NAME) are expanded using the container's environment. Defaults to "" (volume's root). SubPathExpr and SubPath are mutually exclusive. - type: string - required: - - mountPath - - name - type: object - type: array - workingDir: - description: Container's working directory. If not specified, the container runtime's default will be used, which might be configured in the container image. Cannot be updated. - type: string - required: - - name - type: object - type: array - listenLocal: - description: ListenLocal makes the Alertmanager server listen on loopback, so that it does not bind against the Pod IP. Note this is only for the Alertmanager UI, not the gossip communication. - type: boolean - logFormat: - description: Log format for Alertmanager to be configured with. - type: string - logLevel: - description: Log level for Alertmanager to be configured with. - type: string - nodeSelector: - additionalProperties: - type: string - description: Define which Nodes the Pods are scheduled on. - type: object - paused: - description: If set to true all actions on the underlying managed objects are not goint to be performed, except for delete actions. - type: boolean - podMetadata: - description: PodMetadata configures Labels and Annotations which are propagated to the alertmanager pods. - properties: - annotations: - additionalProperties: - type: string - description: 'Annotations is an unstructured key value map stored with a resource that may be set by external tools to store and retrieve arbitrary metadata. They are not queryable and should be preserved when modifying objects. More info: http://kubernetes.io/docs/user-guide/annotations' - type: object - labels: - additionalProperties: - type: string - description: 'Map of string keys and values that can be used to organize and categorize (scope and select) objects. May match selectors of replication controllers and services. More info: http://kubernetes.io/docs/user-guide/labels' - type: object - name: - description: 'Name must be unique within a namespace. Is required when creating resources, although some resources may allow a client to request the generation of an appropriate name automatically. Name is primarily intended for creation idempotence and configuration definition. Cannot be updated. More info: http://kubernetes.io/docs/user-guide/identifiers#names' - type: string - type: object - portName: - description: Port name used for the pods and governing service. This defaults to web - type: string - priorityClassName: - description: Priority class assigned to the Pods - type: string - replicas: - description: Size is the expected size of the alertmanager cluster. The controller will eventually make the size of the running cluster equal to the expected size. - format: int32 - type: integer - resources: - description: Define resources requests and limits for single Pods. - properties: - 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. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/' - 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. If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/' - type: object - type: object - retention: - description: Time duration Alertmanager shall retain data for. Default is '120h', and must match the regular expression `[0-9]+(ms|s|m|h)` (milliseconds seconds minutes hours). - type: string - routePrefix: - description: The route prefix Alertmanager registers HTTP handlers for. This is useful, if using ExternalURL and a proxy is rewriting HTTP routes of a request, and the actual ExternalURL is still true, but the server serves requests under a different route prefix. For example for use with `kubectl proxy`. - type: string - secrets: - description: Secrets is a list of Secrets in the same namespace as the Alertmanager object, which shall be mounted into the Alertmanager Pods. The Secrets are mounted into /etc/alertmanager/secrets/. - items: - type: string - type: array - securityContext: - description: SecurityContext holds pod-level security attributes and common container settings. This defaults to the default PodSecurityContext. - properties: - fsGroup: - description: "A special supplemental group that applies to all containers in a pod. Some volume types allow the Kubelet to change the ownership of that volume to be owned by the pod: \n 1. The owning GID will be the FSGroup 2. The setgid bit is set (new files created in the volume will be owned by FSGroup) 3. The permission bits are OR'd with rw-rw---- \n If unset, the Kubelet will not modify the ownership and permissions of any volume." - format: int64 - type: integer - fsGroupChangePolicy: - description: 'fsGroupChangePolicy defines behavior of changing ownership and permission of the volume before being exposed inside Pod. This field will only apply to volume types which support fsGroup based ownership(and permissions). It will have no effect on ephemeral volume types such as: secret, configmaps and emptydir. Valid values are "OnRootMismatch" and "Always". If not specified defaults to "Always".' - type: string - runAsGroup: - description: The GID to run the entrypoint of the container process. Uses runtime default if unset. May also be set in SecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container. - format: int64 - type: integer - runAsNonRoot: - description: Indicates that the container must run as a non-root user. If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does. If unset or false, no such validation will be performed. May also be set in SecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence. - type: boolean - runAsUser: - description: The UID to run the entrypoint of the container process. Defaults to user specified in image metadata if unspecified. May also be set in SecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container. - format: int64 - type: integer - seLinuxOptions: - description: The SELinux context to be applied to all containers. If unspecified, the container runtime will allocate a random SELinux context for each container. May also be set in SecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container. - 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 - supplementalGroups: - description: A list of groups applied to the first process run in each container, in addition to the container's primary GID. If unspecified, no groups will be added to any container. - items: - format: int64 - type: integer - type: array - sysctls: - description: Sysctls hold a list of namespaced sysctls used for the pod. Pods with unsupported sysctls (by the container runtime) might fail to launch. - 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 - type: array - windowsOptions: - description: The Windows specific settings applied to all containers. If unspecified, the options within a container's SecurityContext will be used. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence. - properties: - gmsaCredentialSpec: - description: GMSACredentialSpec is where the GMSA admission webhook (https://github.com/kubernetes-sigs/windows-gmsa) inlines the contents of the GMSA credential spec named by the GMSACredentialSpecName field. - type: string - gmsaCredentialSpecName: - description: GMSACredentialSpecName is the name of the GMSA credential spec to use. - type: string - runAsUserName: - description: The UserName in Windows to run the entrypoint of the container process. Defaults to the user specified in image metadata if unspecified. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence. - type: string - type: object - type: object - serviceAccountName: - description: ServiceAccountName is the name of the ServiceAccount to use to run the Prometheus Pods. - type: string - sha: - description: 'SHA of Alertmanager container image to be deployed. Defaults to the value of `version`. Similar to a tag, but the SHA explicitly deploys an immutable container image. Version and Tag are ignored if SHA is set. Deprecated: use ''image'' instead. The image digest can be specified as part of the image URL.' - type: string - storage: - description: Storage is the definition of how storage will be used by the Alertmanager instances. - properties: - disableMountSubPath: - description: 'Deprecated: subPath usage will be disabled by default in a future release, this option will become unnecessary. DisableMountSubPath allows to remove any subPath usage in volume mounts.' - type: boolean - emptyDir: - description: 'EmptyDirVolumeSource to be used by the Prometheus StatefulSets. If specified, used in place of any volumeClaimTemplate. More info: https://kubernetes.io/docs/concepts/storage/volumes/#emptydir' - properties: - medium: - description: 'What type of storage medium should back this directory. The default is "" which means to use the node''s default medium. Must be an empty string (default) or Memory. More info: https://kubernetes.io/docs/concepts/storage/volumes#emptydir' - type: string - sizeLimit: - anyOf: - - type: integer - - type: string - description: 'Total amount of local storage required for this EmptyDir volume. The size limit is also applicable for memory medium. The maximum usage on memory medium EmptyDir would be the minimum value between the SizeLimit specified here and the sum of memory limits of all containers in a pod. The default is nil which means that the limit is undefined. More info: http://kubernetes.io/docs/user-guide/volumes#emptydir' - pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ - x-kubernetes-int-or-string: true - type: object - volumeClaimTemplate: - description: A PVC spec to be used by the Prometheus StatefulSets. - properties: - apiVersion: - description: 'APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More 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. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds' - type: string - metadata: - description: EmbeddedMetadata contains metadata relevant to an EmbeddedResource. - properties: - annotations: - additionalProperties: - type: string - description: 'Annotations is an unstructured key value map stored with a resource that may be set by external tools to store and retrieve arbitrary metadata. They are not queryable and should be preserved when modifying objects. More info: http://kubernetes.io/docs/user-guide/annotations' - type: object - labels: - additionalProperties: - type: string - description: 'Map of string keys and values that can be used to organize and categorize (scope and select) objects. May match selectors of replication controllers and services. More info: http://kubernetes.io/docs/user-guide/labels' - type: object - name: - description: 'Name must be unique within a namespace. Is required when creating resources, although some resources may allow a client to request the generation of an appropriate name automatically. Name is primarily intended for creation idempotence and configuration definition. Cannot be updated. More info: http://kubernetes.io/docs/user-guide/identifiers#names' - type: string - type: object - spec: - description: 'Spec defines the desired characteristics of a volume requested by a pod author. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims' - properties: - accessModes: - description: 'AccessModes contains the desired access modes the volume should have. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#access-modes-1' - items: - type: string - type: array - dataSource: - description: 'This field can be used to specify either: * An existing VolumeSnapshot object (snapshot.storage.k8s.io/VolumeSnapshot - Beta) * An existing PVC (PersistentVolumeClaim) * An existing custom resource/object that implements data population (Alpha) In order to use VolumeSnapshot object types, the appropriate feature gate must be enabled (VolumeSnapshotDataSource or AnyVolumeDataSource) If the provisioner or an external controller can support the specified data source, it will create a new volume based on the contents of the specified data source. If the specified data source is not supported, the volume will not be created and the failure will be reported as an event. In the future, we plan to support more data source types and the behavior of the provisioner may change.' - properties: - apiGroup: - description: APIGroup is the group for the resource being referenced. If APIGroup is not specified, the specified Kind must be in the core API group. For any other third-party types, APIGroup is required. - type: string - kind: - description: Kind is the type of resource being referenced - type: string - name: - description: Name is the name of resource being referenced - type: string - required: - - kind - - name - type: object - resources: - description: 'Resources represents the minimum resources the volume should have. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#resources' - properties: - 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. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/' - 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. If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/' - type: object - type: object - selector: - description: A label query over volumes to consider for binding. - 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 relates 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. Valid 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, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch. - items: - type: string - type: array - required: - - key - - operator - type: object - type: array - matchLabels: - additionalProperties: - type: string - description: matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed. - type: object - type: object - storageClassName: - description: 'Name of the StorageClass required by the claim. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#class-1' - type: string - volumeMode: - description: volumeMode defines what type of volume is required by the claim. Value of Filesystem is implied when not included in claim spec. - type: string - volumeName: - description: VolumeName is the binding reference to the PersistentVolume backing this claim. - type: string - type: object - status: - description: 'Status represents the current information/status of a persistent volume claim. Read-only. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims' - properties: - accessModes: - description: 'AccessModes contains the actual access modes the volume backing the PVC has. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#access-modes-1' - items: - type: string - type: array - capacity: - 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: Represents the actual resources of the underlying volume. - type: object - conditions: - description: Current Condition of persistent volume claim. If underlying persistent volume is being resized then the Condition will be set to 'ResizeStarted'. - items: - description: PersistentVolumeClaimCondition contails details about state of pvc - properties: - lastProbeTime: - description: Last time we probed the condition. - format: date-time - type: string - lastTransitionTime: - description: Last time the condition transitioned from one status to another. - format: date-time - type: string - message: - description: Human-readable message indicating details about last transition. - type: string - reason: - description: Unique, this should be a short, machine understandable string that gives the reason for condition's last transition. If it reports "ResizeStarted" that means the underlying persistent volume is being resized. - type: string - status: - type: string - type: - description: PersistentVolumeClaimConditionType is a valid value of PersistentVolumeClaimCondition.Type - type: string - required: - - status - - type - type: object - type: array - phase: - description: Phase represents the current phase of PersistentVolumeClaim. - type: string - type: object - type: object - type: object - tag: - description: 'Tag of Alertmanager container image to be deployed. Defaults to the value of `version`. Version is ignored if Tag is set. Deprecated: use ''image'' instead. The image tag can be specified as part of the image URL.' - type: string - tolerations: - description: If specified, the pod's tolerations. - items: - description: The pod this Toleration is attached to tolerates any taint that matches the triple using the matching operator . - properties: - effect: - description: Effect indicates the taint effect to match. Empty means match all taint effects. When 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. If 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. Valid operators are Exists and Equal. Defaults to Equal. Exists is equivalent to wildcard for value, so that a pod can tolerate all taints of a particular category. - type: string - tolerationSeconds: - description: TolerationSeconds represents the period of time the toleration (which must be of effect NoExecute, otherwise this field is ignored) tolerates the taint. By default, it is not set, which means tolerate the taint forever (do not evict). Zero and negative values will be treated as 0 (evict immediately) by the system. - format: int64 - type: integer - value: - description: Value is the taint value the toleration matches to. If the operator is Exists, the value should be empty, otherwise just a regular string. - type: string - type: object - type: array - topologySpreadConstraints: - description: If specified, the pod's topology spread constraints. - items: - description: TopologySpreadConstraint specifies how to spread matching pods among the given topology. - properties: - labelSelector: - description: LabelSelector is used to find matching pods. Pods that match this label selector are counted to determine the number of pods in their corresponding topology domain. - 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 relates 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. Valid 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, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch. - items: - type: string - type: array - required: - - key - - operator - type: object - type: array - matchLabels: - additionalProperties: - type: string - description: matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed. - type: object - type: object - maxSkew: - description: 'MaxSkew describes the degree to which pods may be unevenly distributed. It''s the maximum permitted difference between the number of matching pods in any two topology domains of a given topology type. For example, in a 3-zone cluster, MaxSkew is set to 1, and pods with the same labelSelector spread as 1/1/0: | zone1 | zone2 | zone3 | | P | P | | - if MaxSkew is 1, incoming pod can only be scheduled to zone3 to become 1/1/1; scheduling it onto zone1(zone2) would make the ActualSkew(2-0) on zone1(zone2) violate MaxSkew(1). - if MaxSkew is 2, incoming pod can be scheduled onto any zone. It''s a required field. Default value is 1 and 0 is not allowed.' - format: int32 - type: integer - topologyKey: - description: TopologyKey is the key of node labels. Nodes that have a label with this key and identical values are considered to be in the same topology. We consider each as a "bucket", and try to put balanced number of pods into each bucket. It's a required field. - type: string - whenUnsatisfiable: - description: 'WhenUnsatisfiable indicates how to deal with a pod if it doesn''t satisfy the spread constraint. - DoNotSchedule (default) tells the scheduler not to schedule it - ScheduleAnyway tells the scheduler to still schedule it It''s considered as "Unsatisfiable" if and only if placing incoming pod on any topology violates "MaxSkew". For example, in a 3-zone cluster, MaxSkew is set to 1, and pods with the same labelSelector spread as 3/1/1: | zone1 | zone2 | zone3 | | P P P | P | P | If WhenUnsatisfiable is set to DoNotSchedule, incoming pod can only be scheduled to zone2(zone3) to become 3/2/1(3/1/2) as ActualSkew(2-1) on zone2(zone3) satisfies MaxSkew(1). In other words, the cluster can still be imbalanced, but scheduler won''t make it *more* imbalanced. It''s a required field.' - type: string - required: - - maxSkew - - topologyKey - - whenUnsatisfiable - type: object - type: array - version: - description: Version the cluster should be on. - type: string - volumeMounts: - description: VolumeMounts allows configuration of additional VolumeMounts on the output StatefulSet definition. VolumeMounts specified will be appended to other VolumeMounts in the alertmanager container, that are generated as a result of StorageSpec objects. - items: - description: VolumeMount describes a mounting of a Volume within a container. - properties: - mountPath: - description: Path within the container at which the volume should be mounted. Must not contain ':'. - type: string - mountPropagation: - description: mountPropagation determines how mounts are propagated from the host to container and the other way around. When not set, MountPropagationNone is used. This field is beta in 1.10. - type: string - name: - description: This must match the Name of a Volume. - type: string - readOnly: - description: Mounted read-only if true, read-write otherwise (false or unspecified). Defaults to false. - type: boolean - subPath: - description: Path within the volume from which the container's volume should be mounted. Defaults to "" (volume's root). - type: string - subPathExpr: - description: Expanded path within the volume from which the container's volume should be mounted. Behaves similarly to SubPath but environment variable references $(VAR_NAME) are expanded using the container's environment. Defaults to "" (volume's root). SubPathExpr and SubPath are mutually exclusive. - type: string - required: - - mountPath - - name - type: object - type: array - volumes: - description: Volumes allows configuration of additional volumes on the output StatefulSet definition. Volumes specified will be appended to other volumes that are generated as a result of StorageSpec objects. - items: - description: Volume represents a named volume in a pod that may be accessed by any container in the pod. - properties: - awsElasticBlockStore: - description: 'AWSElasticBlockStore represents an AWS Disk resource that is attached to a kubelet''s host machine and then exposed to the pod. More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore' - properties: - fsType: - description: 'Filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore TODO: how do we prevent errors in the filesystem from compromising the machine' - type: string - partition: - description: 'The partition in the volume that you want to mount. If omitted, the default is to mount by volume name. Examples: For volume /dev/sda1, you specify the partition as "1". Similarly, the volume partition for /dev/sda is "0" (or you can leave the property empty).' - format: int32 - type: integer - readOnly: - description: 'Specify "true" to force and set the ReadOnly property in VolumeMounts to "true". If omitted, the default is "false". More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore' - type: boolean - volumeID: - description: 'Unique ID of the persistent disk resource in AWS (Amazon EBS volume). More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore' - type: string - required: - - volumeID - type: object - azureDisk: - description: AzureDisk represents an Azure Data Disk mount on the host and bind mount to the pod. - properties: - cachingMode: - description: 'Host Caching mode: None, Read Only, Read Write.' - type: string - diskName: - description: The Name of the data disk in the blob storage - type: string - diskURI: - description: The URI the data disk in the blob storage - type: string - fsType: - description: Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. - type: string - kind: - description: 'Expected values Shared: multiple blob disks per storage account Dedicated: single blob disk per storage account Managed: azure managed data disk (only in managed availability set). defaults to shared' - type: string - readOnly: - description: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. - type: boolean - required: - - diskName - - diskURI - type: object - azureFile: - description: AzureFile represents an Azure File Service mount on the host and bind mount to the pod. - properties: - readOnly: - description: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. - type: boolean - secretName: - description: the name of secret that contains Azure Storage Account Name and Key - type: string - shareName: - description: Share Name - type: string - required: - - secretName - - shareName - type: object - cephfs: - description: CephFS represents a Ceph FS mount on the host that shares a pod's lifetime - properties: - monitors: - description: 'Required: Monitors is a collection of Ceph monitors More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it' - items: - type: string - type: array - path: - description: 'Optional: Used as the mounted root, rather than the full Ceph tree, default is /' - type: string - readOnly: - description: 'Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it' - type: boolean - secretFile: - description: 'Optional: SecretFile is the path to key ring for User, default is /etc/ceph/user.secret More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it' - type: string - secretRef: - description: 'Optional: SecretRef is reference to the authentication secret for User, default is empty. More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it' - properties: - name: - description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?' - type: string - type: object - user: - description: 'Optional: User is the rados user name, default is admin More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it' - type: string - required: - - monitors - type: object - cinder: - description: 'Cinder represents a cinder volume attached and mounted on kubelets host machine. More info: https://examples.k8s.io/mysql-cinder-pd/README.md' - properties: - fsType: - description: 'Filesystem type to mount. Must be a filesystem type supported by the host operating system. Examples: "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. More info: https://examples.k8s.io/mysql-cinder-pd/README.md' - type: string - readOnly: - description: 'Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. More info: https://examples.k8s.io/mysql-cinder-pd/README.md' - type: boolean - secretRef: - description: 'Optional: points to a secret object containing parameters used to connect to OpenStack.' - properties: - name: - description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?' - type: string - type: object - volumeID: - description: 'volume id used to identify the volume in cinder. More info: https://examples.k8s.io/mysql-cinder-pd/README.md' - type: string - required: - - volumeID - type: object - configMap: - description: ConfigMap represents a configMap that should populate this volume - properties: - defaultMode: - description: 'Optional: mode bits to use on created files by default. Must be a value between 0 and 0777. Defaults to 0644. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.' - format: int32 - type: integer - items: - description: If unspecified, each key-value pair in the Data field of the referenced ConfigMap will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the ConfigMap, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the '..' path or start with '..'. - items: - description: Maps a string key to a path within a volume. - properties: - key: - description: The key to project. - type: string - mode: - description: 'Optional: mode bits to use on this file, must be a value between 0 and 0777. If not specified, the volume defaultMode will be used. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.' - format: int32 - type: integer - path: - description: The relative path of the file to map the key to. May not be an absolute path. May not contain the path element '..'. May not start with the string '..'. - type: string - required: - - key - - path - type: object - type: array - name: - description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?' - type: string - optional: - description: Specify whether the ConfigMap or its keys must be defined - type: boolean - type: object - csi: - description: CSI (Container Storage Interface) represents storage that is handled by an external CSI driver (Alpha feature). - properties: - driver: - description: Driver is the name of the CSI driver that handles this volume. Consult with your admin for the correct name as registered in the cluster. - type: string - fsType: - description: Filesystem type to mount. Ex. "ext4", "xfs", "ntfs". If not provided, the empty value is passed to the associated CSI driver which will determine the default filesystem to apply. - type: string - nodePublishSecretRef: - description: NodePublishSecretRef is a reference to the secret object containing sensitive information to pass to the CSI driver to complete the CSI NodePublishVolume and NodeUnpublishVolume calls. This field is optional, and may be empty if no secret is required. If the secret object contains more than one secret, all secret references are passed. - properties: - name: - description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?' - type: string - type: object - readOnly: - description: Specifies a read-only configuration for the volume. Defaults to false (read/write). - type: boolean - volumeAttributes: - additionalProperties: - type: string - description: VolumeAttributes stores driver-specific properties that are passed to the CSI driver. Consult your driver's documentation for supported values. - type: object - required: - - driver - type: object - downwardAPI: - description: DownwardAPI represents downward API about the pod that should populate this volume - properties: - defaultMode: - description: 'Optional: mode bits to use on created files by default. Must be a value between 0 and 0777. Defaults to 0644. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.' - format: int32 - type: integer - items: - description: Items is a list of downward API volume file - items: - description: DownwardAPIVolumeFile represents information to create the file containing the pod field - properties: - fieldRef: - description: 'Required: Selects a field of the pod: only annotations, labels, name and namespace are supported.' - properties: - apiVersion: - description: Version of the schema the FieldPath is written in terms of, defaults to "v1". - type: string - fieldPath: - description: Path of the field to select in the specified API version. - type: string - required: - - fieldPath - type: object - mode: - description: 'Optional: mode bits to use on this file, must be a value between 0 and 0777. If not specified, the volume defaultMode will be used. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.' - format: int32 - type: integer - path: - description: 'Required: Path is the relative path name of the file to be created. Must not be absolute or contain the ''..'' path. Must be utf-8 encoded. The first item of the relative path must not start with ''..''' - type: string - resourceFieldRef: - description: 'Selects a resource of the container: only resources limits and requests (limits.cpu, limits.memory, requests.cpu and requests.memory) are currently supported.' - properties: - containerName: - description: 'Container name: required for volumes, optional for env vars' - type: string - divisor: - anyOf: - - type: integer - - type: string - description: Specifies the output format of the exposed resources, defaults to "1" - pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ - x-kubernetes-int-or-string: true - resource: - description: 'Required: resource to select' - type: string - required: - - resource - type: object - required: - - path - type: object - type: array - type: object - emptyDir: - description: 'EmptyDir represents a temporary directory that shares a pod''s lifetime. More info: https://kubernetes.io/docs/concepts/storage/volumes#emptydir' - properties: - medium: - description: 'What type of storage medium should back this directory. The default is "" which means to use the node''s default medium. Must be an empty string (default) or Memory. More info: https://kubernetes.io/docs/concepts/storage/volumes#emptydir' - type: string - sizeLimit: - anyOf: - - type: integer - - type: string - description: 'Total amount of local storage required for this EmptyDir volume. The size limit is also applicable for memory medium. The maximum usage on memory medium EmptyDir would be the minimum value between the SizeLimit specified here and the sum of memory limits of all containers in a pod. The default is nil which means that the limit is undefined. More info: http://kubernetes.io/docs/user-guide/volumes#emptydir' - pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ - x-kubernetes-int-or-string: true - type: object - fc: - description: FC represents a Fibre Channel resource that is attached to a kubelet's host machine and then exposed to the pod. - properties: - fsType: - description: 'Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. TODO: how do we prevent errors in the filesystem from compromising the machine' - type: string - lun: - description: 'Optional: FC target lun number' - format: int32 - type: integer - readOnly: - description: 'Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.' - type: boolean - targetWWNs: - description: 'Optional: FC target worldwide names (WWNs)' - items: - type: string - type: array - wwids: - description: 'Optional: FC volume world wide identifiers (wwids) Either wwids or combination of targetWWNs and lun must be set, but not both simultaneously.' - items: - type: string - type: array - type: object - flexVolume: - description: FlexVolume represents a generic volume resource that is provisioned/attached using an exec based plugin. - properties: - driver: - description: Driver is the name of the driver to use for this volume. - type: string - fsType: - description: Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. "ext4", "xfs", "ntfs". The default filesystem depends on FlexVolume script. - type: string - options: - additionalProperties: - type: string - description: 'Optional: Extra command options if any.' - type: object - readOnly: - description: 'Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.' - type: boolean - secretRef: - description: 'Optional: SecretRef is reference to the secret object containing sensitive information to pass to the plugin scripts. This may be empty if no secret object is specified. If the secret object contains more than one secret, all secrets are passed to the plugin scripts.' - properties: - name: - description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?' - type: string - type: object - required: - - driver - type: object - flocker: - description: Flocker represents a Flocker volume attached to a kubelet's host machine. This depends on the Flocker control service being running - properties: - datasetName: - description: Name of the dataset stored as metadata -> name on the dataset for Flocker should be considered as deprecated - type: string - datasetUUID: - description: UUID of the dataset. This is unique identifier of a Flocker dataset - type: string - type: object - gcePersistentDisk: - description: 'GCEPersistentDisk represents a GCE Disk resource that is attached to a kubelet''s host machine and then exposed to the pod. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk' - properties: - fsType: - description: 'Filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk TODO: how do we prevent errors in the filesystem from compromising the machine' - type: string - partition: - description: 'The partition in the volume that you want to mount. If omitted, the default is to mount by volume name. Examples: For volume /dev/sda1, you specify the partition as "1". Similarly, the volume partition for /dev/sda is "0" (or you can leave the property empty). More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk' - format: int32 - type: integer - pdName: - description: 'Unique name of the PD resource in GCE. Used to identify the disk in GCE. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk' - type: string - readOnly: - description: 'ReadOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk' - type: boolean - required: - - pdName - type: object - gitRepo: - description: 'GitRepo represents a git repository at a particular revision. DEPRECATED: GitRepo is deprecated. To provision a container with a git repo, mount an EmptyDir into an InitContainer that clones the repo using git, then mount the EmptyDir into the Pod''s container.' - properties: - directory: - description: Target directory name. Must not contain or start with '..'. If '.' is supplied, the volume directory will be the git repository. Otherwise, if specified, the volume will contain the git repository in the subdirectory with the given name. - type: string - repository: - description: Repository URL - type: string - revision: - description: Commit hash for the specified revision. - type: string - required: - - repository - type: object - glusterfs: - description: 'Glusterfs represents a Glusterfs mount on the host that shares a pod''s lifetime. More info: https://examples.k8s.io/volumes/glusterfs/README.md' - properties: - endpoints: - description: 'EndpointsName is the endpoint name that details Glusterfs topology. More info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod' - type: string - path: - description: 'Path is the Glusterfs volume path. More info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod' - type: string - readOnly: - description: 'ReadOnly here will force the Glusterfs volume to be mounted with read-only permissions. Defaults to false. More info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod' - type: boolean - required: - - endpoints - - path - type: object - hostPath: - description: 'HostPath represents a pre-existing file or directory on the host machine that is directly exposed to the container. This is generally used for system agents or other privileged things that are allowed to see the host machine. Most containers will NOT need this. More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath --- TODO(jonesdl) We need to restrict who can use host directory mounts and who can/can not mount host directories as read/write.' - properties: - path: - description: 'Path of the directory on the host. If the path is a symlink, it will follow the link to the real path. More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath' - type: string - type: - description: 'Type for HostPath Volume Defaults to "" More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath' - type: string - required: - - path - type: object - iscsi: - description: 'ISCSI represents an ISCSI Disk resource that is attached to a kubelet''s host machine and then exposed to the pod. More info: https://examples.k8s.io/volumes/iscsi/README.md' - properties: - chapAuthDiscovery: - description: whether support iSCSI Discovery CHAP authentication - type: boolean - chapAuthSession: - description: whether support iSCSI Session CHAP authentication - type: boolean - fsType: - description: 'Filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#iscsi TODO: how do we prevent errors in the filesystem from compromising the machine' - type: string - initiatorName: - description: Custom iSCSI Initiator Name. If initiatorName is specified with iscsiInterface simultaneously, new iSCSI interface : will be created for the connection. - type: string - iqn: - description: Target iSCSI Qualified Name. - type: string - iscsiInterface: - description: iSCSI Interface Name that uses an iSCSI transport. Defaults to 'default' (tcp). - type: string - lun: - description: iSCSI Target Lun number. - format: int32 - type: integer - portals: - description: iSCSI Target Portal List. The portal is either an IP or ip_addr:port if the port is other than default (typically TCP ports 860 and 3260). - items: - type: string - type: array - readOnly: - description: ReadOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false. - type: boolean - secretRef: - description: CHAP Secret for iSCSI target and initiator authentication - properties: - name: - description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?' - type: string - type: object - targetPortal: - description: iSCSI Target Portal. The Portal is either an IP or ip_addr:port if the port is other than default (typically TCP ports 860 and 3260). - type: string - required: - - iqn - - lun - - targetPortal - type: object - name: - description: 'Volume''s name. Must be a DNS_LABEL and unique within the pod. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' - type: string - nfs: - description: 'NFS represents an NFS mount on the host that shares a pod''s lifetime More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs' - properties: - path: - description: 'Path that is exported by the NFS server. More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs' - type: string - readOnly: - description: 'ReadOnly here will force the NFS export to be mounted with read-only permissions. Defaults to false. More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs' - type: boolean - server: - description: 'Server is the hostname or IP address of the NFS server. More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs' - type: string - required: - - path - - server - type: object - persistentVolumeClaim: - description: 'PersistentVolumeClaimVolumeSource represents a reference to a PersistentVolumeClaim in the same namespace. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims' - properties: - claimName: - description: 'ClaimName is the name of a PersistentVolumeClaim in the same namespace as the pod using this volume. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims' - type: string - readOnly: - description: Will force the ReadOnly setting in VolumeMounts. Default false. - type: boolean - required: - - claimName - type: object - photonPersistentDisk: - description: PhotonPersistentDisk represents a PhotonController persistent disk attached and mounted on kubelets host machine - properties: - fsType: - description: Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. - type: string - pdID: - description: ID that identifies Photon Controller persistent disk - type: string - required: - - pdID - type: object - portworxVolume: - description: PortworxVolume represents a portworx volume attached and mounted on kubelets host machine - properties: - fsType: - description: FSType represents the filesystem type to mount Must be a filesystem type supported by the host operating system. Ex. "ext4", "xfs". Implicitly inferred to be "ext4" if unspecified. - type: string - readOnly: - description: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. - type: boolean - volumeID: - description: VolumeID uniquely identifies a Portworx volume - type: string - required: - - volumeID - type: object - projected: - description: Items for all in one resources secrets, configmaps, and downward API - properties: - defaultMode: - description: Mode bits to use on created files by default. Must be a value between 0 and 0777. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set. - format: int32 - type: integer - sources: - description: list of volume projections - items: - description: Projection that may be projected along with other supported volume types - properties: - configMap: - description: information about the configMap data to project - properties: - items: - description: If unspecified, each key-value pair in the Data field of the referenced ConfigMap will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the ConfigMap, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the '..' path or start with '..'. - items: - description: Maps a string key to a path within a volume. - properties: - key: - description: The key to project. - type: string - mode: - description: 'Optional: mode bits to use on this file, must be a value between 0 and 0777. If not specified, the volume defaultMode will be used. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.' - format: int32 - type: integer - path: - description: The relative path of the file to map the key to. May not be an absolute path. May not contain the path element '..'. May not start with the string '..'. - type: string - required: - - key - - path - type: object - type: array - name: - description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?' - type: string - optional: - description: Specify whether the ConfigMap or its keys must be defined - type: boolean - type: object - downwardAPI: - description: information about the downwardAPI data to project - properties: - items: - description: Items is a list of DownwardAPIVolume file - items: - description: DownwardAPIVolumeFile represents information to create the file containing the pod field - properties: - fieldRef: - description: 'Required: Selects a field of the pod: only annotations, labels, name and namespace are supported.' - properties: - apiVersion: - description: Version of the schema the FieldPath is written in terms of, defaults to "v1". - type: string - fieldPath: - description: Path of the field to select in the specified API version. - type: string - required: - - fieldPath - type: object - mode: - description: 'Optional: mode bits to use on this file, must be a value between 0 and 0777. If not specified, the volume defaultMode will be used. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.' - format: int32 - type: integer - path: - description: 'Required: Path is the relative path name of the file to be created. Must not be absolute or contain the ''..'' path. Must be utf-8 encoded. The first item of the relative path must not start with ''..''' - type: string - resourceFieldRef: - description: 'Selects a resource of the container: only resources limits and requests (limits.cpu, limits.memory, requests.cpu and requests.memory) are currently supported.' - properties: - containerName: - description: 'Container name: required for volumes, optional for env vars' - type: string - divisor: - anyOf: - - type: integer - - type: string - description: Specifies the output format of the exposed resources, defaults to "1" - pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ - x-kubernetes-int-or-string: true - resource: - description: 'Required: resource to select' - type: string - required: - - resource - type: object - required: - - path - type: object - type: array - type: object - secret: - description: information about the secret data to project - properties: - items: - description: If unspecified, each key-value pair in the Data field of the referenced Secret will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the Secret, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the '..' path or start with '..'. - items: - description: Maps a string key to a path within a volume. - properties: - key: - description: The key to project. - type: string - mode: - description: 'Optional: mode bits to use on this file, must be a value between 0 and 0777. If not specified, the volume defaultMode will be used. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.' - format: int32 - type: integer - path: - description: The relative path of the file to map the key to. May not be an absolute path. May not contain the path element '..'. May not start with the string '..'. - type: string - required: - - key - - path - type: object - type: array - name: - description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?' - type: string - optional: - description: Specify whether the Secret or its key must be defined - type: boolean - type: object - serviceAccountToken: - description: information about the serviceAccountToken data to project - properties: - audience: - description: Audience is the intended audience of the token. A recipient of a token must identify itself with an identifier specified in the audience of the token, and otherwise should reject the token. The audience defaults to the identifier of the apiserver. - type: string - expirationSeconds: - description: ExpirationSeconds is the requested duration of validity of the service account token. As the token approaches expiration, the kubelet volume plugin will proactively rotate the service account token. The kubelet will start trying to rotate the token if the token is older than 80 percent of its time to live or if the token is older than 24 hours.Defaults to 1 hour and must be at least 10 minutes. - format: int64 - type: integer - path: - description: Path is the path relative to the mount point of the file to project the token into. - type: string - required: - - path - type: object - type: object - type: array - required: - - sources - type: object - quobyte: - description: Quobyte represents a Quobyte mount on the host that shares a pod's lifetime - properties: - group: - description: Group to map volume access to Default is no group - type: string - readOnly: - description: ReadOnly here will force the Quobyte volume to be mounted with read-only permissions. Defaults to false. - type: boolean - registry: - description: Registry represents a single or multiple Quobyte Registry services specified as a string as host:port pair (multiple entries are separated with commas) which acts as the central registry for volumes - type: string - tenant: - description: Tenant owning the given Quobyte volume in the Backend Used with dynamically provisioned Quobyte volumes, value is set by the plugin - type: string - user: - description: User to map volume access to Defaults to serivceaccount user - type: string - volume: - description: Volume is a string that references an already created Quobyte volume by name. - type: string - required: - - registry - - volume - type: object - rbd: - description: 'RBD represents a Rados Block Device mount on the host that shares a pod''s lifetime. More info: https://examples.k8s.io/volumes/rbd/README.md' - properties: - fsType: - description: 'Filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#rbd TODO: how do we prevent errors in the filesystem from compromising the machine' - type: string - image: - description: 'The rados image name. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it' - type: string - keyring: - description: 'Keyring is the path to key ring for RBDUser. Default is /etc/ceph/keyring. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it' - type: string - monitors: - description: 'A collection of Ceph monitors. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it' - items: - type: string - type: array - pool: - description: 'The rados pool name. Default is rbd. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it' - type: string - readOnly: - description: 'ReadOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it' - type: boolean - secretRef: - description: 'SecretRef is name of the authentication secret for RBDUser. If provided overrides keyring. Default is nil. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it' - properties: - name: - description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?' - type: string - type: object - user: - description: 'The rados user name. Default is admin. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it' - type: string - required: - - image - - monitors - type: object - scaleIO: - description: ScaleIO represents a ScaleIO persistent volume attached and mounted on Kubernetes nodes. - properties: - fsType: - description: Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. "ext4", "xfs", "ntfs". Default is "xfs". - type: string - gateway: - description: The host address of the ScaleIO API Gateway. - type: string - protectionDomain: - description: The name of the ScaleIO Protection Domain for the configured storage. - type: string - readOnly: - description: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. - type: boolean - secretRef: - description: SecretRef references to the secret for ScaleIO user and other sensitive information. If this is not provided, Login operation will fail. - properties: - name: - description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?' - type: string - type: object - sslEnabled: - description: Flag to enable/disable SSL communication with Gateway, default false - type: boolean - storageMode: - description: Indicates whether the storage for a volume should be ThickProvisioned or ThinProvisioned. Default is ThinProvisioned. - type: string - storagePool: - description: The ScaleIO Storage Pool associated with the protection domain. - type: string - system: - description: The name of the storage system as configured in ScaleIO. - type: string - volumeName: - description: The name of a volume already created in the ScaleIO system that is associated with this volume source. - type: string - required: - - gateway - - secretRef - - system - type: object - secret: - description: 'Secret represents a secret that should populate this volume. More info: https://kubernetes.io/docs/concepts/storage/volumes#secret' - properties: - defaultMode: - description: 'Optional: mode bits to use on created files by default. Must be a value between 0 and 0777. Defaults to 0644. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.' - format: int32 - type: integer - items: - description: If unspecified, each key-value pair in the Data field of the referenced Secret will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the Secret, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the '..' path or start with '..'. - items: - description: Maps a string key to a path within a volume. - properties: - key: - description: The key to project. - type: string - mode: - description: 'Optional: mode bits to use on this file, must be a value between 0 and 0777. If not specified, the volume defaultMode will be used. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.' - format: int32 - type: integer - path: - description: The relative path of the file to map the key to. May not be an absolute path. May not contain the path element '..'. May not start with the string '..'. - type: string - required: - - key - - path - type: object - type: array - optional: - description: Specify whether the Secret or its keys must be defined - type: boolean - secretName: - description: 'Name of the secret in the pod''s namespace to use. More info: https://kubernetes.io/docs/concepts/storage/volumes#secret' - type: string - type: object - storageos: - description: StorageOS represents a StorageOS volume attached and mounted on Kubernetes nodes. - properties: - fsType: - description: Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. - type: string - readOnly: - description: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. - type: boolean - secretRef: - description: SecretRef specifies the secret to use for obtaining the StorageOS API credentials. If not specified, default values will be attempted. - properties: - name: - description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?' - type: string - type: object - volumeName: - description: VolumeName is the human-readable name of the StorageOS volume. Volume names are only unique within a namespace. - type: string - volumeNamespace: - description: VolumeNamespace specifies the scope of the volume within StorageOS. If no namespace is specified then the Pod's namespace will be used. This allows the Kubernetes name scoping to be mirrored within StorageOS for tighter integration. Set VolumeName to any name to override the default behaviour. Set to "default" if you are not using namespaces within StorageOS. Namespaces that do not pre-exist within StorageOS will be created. - type: string - type: object - vsphereVolume: - description: VsphereVolume represents a vSphere volume attached and mounted on kubelets host machine - properties: - fsType: - description: Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. - type: string - storagePolicyID: - description: Storage Policy Based Management (SPBM) profile ID associated with the StoragePolicyName. - type: string - storagePolicyName: - description: Storage Policy Based Management (SPBM) profile name. - type: string - volumePath: - description: Path that identifies vSphere volume vmdk - type: string - required: - - volumePath - type: object - required: - - name - type: object - type: array - type: object - status: - description: 'Most recent observed status of the Alertmanager cluster. Read-only. Not included when requesting from the apiserver, only from the Prometheus Operator API itself. More info: https://github.com/kubernetes/community/blob/master/contributors/devel/sig-architecture/api-conventions.md#spec-and-status' - properties: - availableReplicas: - description: Total number of available pods (ready for at least minReadySeconds) targeted by this Alertmanager cluster. - format: int32 - type: integer - paused: - description: Represents whether any actions on the underlying managed objects are being performed. Only delete actions will be performed. - type: boolean - replicas: - description: Total number of non-terminated pods targeted by this Alertmanager cluster (their labels match the selector). - format: int32 - type: integer - unavailableReplicas: - description: Total number of unavailable pods targeted by this Alertmanager cluster. - format: int32 - type: integer - updatedReplicas: - description: Total number of non-terminated pods targeted by this Alertmanager cluster that have the desired version spec. - format: int32 - type: integer - required: - - availableReplicas - - paused - - replicas - - unavailableReplicas - - updatedReplicas - type: object - required: - - spec - type: object - served: true - storage: true - subresources: {} \ No newline at end of file diff --git a/charts/px-central/crds/crd-alertmanagerconfigs.yaml b/charts/px-central/crds/crd-alertmanagerconfigs.yaml deleted file mode 100644 index 873dcfe9b..000000000 --- a/charts/px-central/crds/crd-alertmanagerconfigs.yaml +++ /dev/null @@ -1,2441 +0,0 @@ -# https://raw.githubusercontent.com/prometheus-operator/prometheus-operator/v0.50.0/example/prometheus-operator-crd/monitoring.coreos.com_alertmanagerconfigs.yaml - ---- -apiVersion: apiextensions.k8s.io/v1 -kind: CustomResourceDefinition -metadata: - annotations: - controller-gen.kubebuilder.io/version: v0.4.1 - creationTimestamp: null - name: alertmanagerconfigs.monitoring.coreos.com -spec: - group: monitoring.coreos.com - names: - categories: - - prometheus-operator - kind: AlertmanagerConfig - listKind: AlertmanagerConfigList - plural: alertmanagerconfigs - singular: alertmanagerconfig - scope: Namespaced - versions: - - name: v1alpha1 - schema: - openAPIV3Schema: - description: AlertmanagerConfig defines a namespaced AlertmanagerConfig to - be aggregated across multiple namespaces configuring one Alertmanager cluster. - properties: - apiVersion: - description: 'APIVersion defines the versioned schema of this representation - of an object. Servers should convert recognized schemas to the latest - internal value, and may reject unrecognized values. More 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. Servers may infer this from the endpoint the client - submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds' - type: string - metadata: - type: object - spec: - description: AlertmanagerConfigSpec is a specification of the desired - behavior of the Alertmanager configuration. By definition, the Alertmanager - configuration only applies to alerts for which the `namespace` label - is equal to the namespace of the AlertmanagerConfig resource. - properties: - inhibitRules: - description: List of inhibition rules. The rules will only apply to - alerts matching the resource’s namespace. - items: - description: InhibitRule defines an inhibition rule that allows - to mute alerts when other alerts are already firing. See https://prometheus.io/docs/alerting/latest/configuration/#inhibit_rule - properties: - equal: - description: Labels that must have an equal value in the source - and target alert for the inhibition to take effect. - items: - type: string - type: array - sourceMatch: - description: Matchers for which one or more alerts have to exist - for the inhibition to take effect. The operator enforces that - the alert matches the resource’s namespace. - items: - description: Matcher defines how to match on alert's labels. - properties: - name: - description: Label to match. - minLength: 1 - type: string - regex: - description: Whether to match on equality (false) or regular-expression - (true). - type: boolean - value: - description: Label value to match. - type: string - required: - - name - type: object - type: array - targetMatch: - description: Matchers that have to be fulfilled in the alerts - to be muted. The operator enforces that the alert matches - the resource’s namespace. - items: - description: Matcher defines how to match on alert's labels. - properties: - name: - description: Label to match. - minLength: 1 - type: string - regex: - description: Whether to match on equality (false) or regular-expression - (true). - type: boolean - value: - description: Label value to match. - type: string - required: - - name - type: object - type: array - type: object - type: array - receivers: - description: List of receivers. - items: - description: Receiver defines one or more notification integrations. - properties: - emailConfigs: - description: List of Email configurations. - items: - description: EmailConfig configures notifications via Email. - properties: - authIdentity: - description: The identity to use for authentication. - type: string - authPassword: - description: The secret's key that contains the password - to use for authentication. The secret needs to be in - the same namespace as the AlertmanagerConfig object - and accessible by the Prometheus Operator. - properties: - key: - description: The key of the secret to select from. Must - be a valid secret key. - type: string - name: - description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names - TODO: Add other useful fields. apiVersion, kind, - uid?' - type: string - optional: - description: Specify whether the Secret or its key - must be defined - type: boolean - required: - - key - type: object - authSecret: - description: The secret's key that contains the CRAM-MD5 - secret. The secret needs to be in the same namespace - as the AlertmanagerConfig object and accessible by the - Prometheus Operator. - properties: - key: - description: The key of the secret to select from. Must - be a valid secret key. - type: string - name: - description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names - TODO: Add other useful fields. apiVersion, kind, - uid?' - type: string - optional: - description: Specify whether the Secret or its key - must be defined - type: boolean - required: - - key - type: object - authUsername: - description: The username to use for authentication. - type: string - from: - description: The sender address. - type: string - headers: - description: Further headers email header key/value pairs. - Overrides any headers previously set by the notification - implementation. - items: - description: KeyValue defines a (key, value) tuple. - properties: - key: - description: Key of the tuple. - minLength: 1 - type: string - value: - description: Value of the tuple. - type: string - required: - - key - - value - type: object - type: array - hello: - description: The hostname to identify to the SMTP server. - type: string - html: - description: The HTML body of the email notification. - type: string - requireTLS: - description: The SMTP TLS requirement. Note that Go does - not support unencrypted connections to remote SMTP endpoints. - type: boolean - sendResolved: - description: Whether or not to notify about resolved alerts. - type: boolean - smarthost: - description: The SMTP host through which emails are sent. - type: string - text: - description: The text body of the email notification. - type: string - tlsConfig: - description: TLS configuration - properties: - ca: - description: Struct containing the CA cert to use - for the targets. - properties: - configMap: - description: ConfigMap containing data to use - for the targets. - properties: - key: - description: The key to select. - type: string - name: - description: 'Name of the referent. More info: - https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names - TODO: Add other useful fields. apiVersion, - kind, uid?' - type: string - optional: - description: Specify whether the ConfigMap - or its key must be defined - type: boolean - required: - - key - type: object - secret: - description: Secret containing data to use for - the targets. - properties: - key: - description: The key of the secret to select - from. Must be a valid secret key. - type: string - name: - description: 'Name of the referent. More info: - https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names - TODO: Add other useful fields. apiVersion, - kind, uid?' - type: string - optional: - description: Specify whether the Secret or - its key must be defined - type: boolean - required: - - key - type: object - type: object - cert: - description: Struct containing the client cert file - for the targets. - properties: - configMap: - description: ConfigMap containing data to use - for the targets. - properties: - key: - description: The key to select. - type: string - name: - description: 'Name of the referent. More info: - https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names - TODO: Add other useful fields. apiVersion, - kind, uid?' - type: string - optional: - description: Specify whether the ConfigMap - or its key must be defined - type: boolean - required: - - key - type: object - secret: - description: Secret containing data to use for - the targets. - properties: - key: - description: The key of the secret to select - from. Must be a valid secret key. - type: string - name: - description: 'Name of the referent. More info: - https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names - TODO: Add other useful fields. apiVersion, - kind, uid?' - type: string - optional: - description: Specify whether the Secret or - its key must be defined - type: boolean - required: - - key - type: object - type: object - insecureSkipVerify: - description: Disable target certificate validation. - type: boolean - keySecret: - description: Secret containing the client key file - for the targets. - properties: - key: - description: The key of the secret to select from. Must - be a valid secret key. - type: string - name: - description: 'Name of the referent. More info: - https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names - TODO: Add other useful fields. apiVersion, kind, - uid?' - type: string - optional: - description: Specify whether the Secret or its - key must be defined - type: boolean - required: - - key - type: object - serverName: - description: Used to verify the hostname for the targets. - type: string - type: object - to: - description: The email address to send notifications to. - type: string - type: object - type: array - name: - description: Name of the receiver. Must be unique across all - items from the list. - minLength: 1 - type: string - opsgenieConfigs: - description: List of OpsGenie configurations. - items: - description: OpsGenieConfig configures notifications via OpsGenie. - See https://prometheus.io/docs/alerting/latest/configuration/#opsgenie_config - properties: - apiKey: - description: The secret's key that contains the OpsGenie - API key. The secret needs to be in the same namespace - as the AlertmanagerConfig object and accessible by the - Prometheus Operator. - properties: - key: - description: The key of the secret to select from. Must - be a valid secret key. - type: string - name: - description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names - TODO: Add other useful fields. apiVersion, kind, - uid?' - type: string - optional: - description: Specify whether the Secret or its key - must be defined - type: boolean - required: - - key - type: object - apiURL: - description: The URL to send OpsGenie API requests to. - type: string - description: - description: Description of the incident. - type: string - details: - description: A set of arbitrary key/value pairs that provide - further detail about the incident. - items: - description: KeyValue defines a (key, value) tuple. - properties: - key: - description: Key of the tuple. - minLength: 1 - type: string - value: - description: Value of the tuple. - type: string - required: - - key - - value - type: object - type: array - httpConfig: - description: HTTP client configuration. - properties: - basicAuth: - description: BasicAuth for the client. - properties: - password: - description: The secret in the service monitor - namespace that contains the password for authentication. - properties: - key: - description: The key of the secret to select - from. Must be a valid secret key. - type: string - name: - description: 'Name of the referent. More info: - https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names - TODO: Add other useful fields. apiVersion, - kind, uid?' - type: string - optional: - description: Specify whether the Secret or - its key must be defined - type: boolean - required: - - key - type: object - username: - description: The secret in the service monitor - namespace that contains the username for authentication. - properties: - key: - description: The key of the secret to select - from. Must be a valid secret key. - type: string - name: - description: 'Name of the referent. More info: - https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names - TODO: Add other useful fields. apiVersion, - kind, uid?' - type: string - optional: - description: Specify whether the Secret or - its key must be defined - type: boolean - required: - - key - type: object - type: object - bearerTokenSecret: - description: The secret's key that contains the bearer - token to be used by the client for authentication. - The secret needs to be in the same namespace as - the AlertmanagerConfig object and accessible by - the Prometheus Operator. - properties: - key: - description: The key of the secret to select from. Must - be a valid secret key. - type: string - name: - description: 'Name of the referent. More info: - https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names - TODO: Add other useful fields. apiVersion, kind, - uid?' - type: string - optional: - description: Specify whether the Secret or its - key must be defined - type: boolean - required: - - key - type: object - proxyURL: - description: Optional proxy URL. - type: string - tlsConfig: - description: TLS configuration for the client. - properties: - ca: - description: Struct containing the CA cert to - use for the targets. - properties: - configMap: - description: ConfigMap containing data to - use for the targets. - properties: - key: - description: The key to select. - type: string - name: - description: 'Name of the referent. More - info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names - TODO: Add other useful fields. apiVersion, - kind, uid?' - type: string - optional: - description: Specify whether the ConfigMap - or its key must be defined - type: boolean - required: - - key - type: object - secret: - description: Secret containing data to use - for the targets. - properties: - key: - description: The key of the secret to - select from. Must be a valid secret - key. - type: string - name: - description: 'Name of the referent. More - info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names - TODO: Add other useful fields. apiVersion, - kind, uid?' - type: string - optional: - description: Specify whether the Secret - or its key must be defined - type: boolean - required: - - key - type: object - type: object - cert: - description: Struct containing the client cert - file for the targets. - properties: - configMap: - description: ConfigMap containing data to - use for the targets. - properties: - key: - description: The key to select. - type: string - name: - description: 'Name of the referent. More - info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names - TODO: Add other useful fields. apiVersion, - kind, uid?' - type: string - optional: - description: Specify whether the ConfigMap - or its key must be defined - type: boolean - required: - - key - type: object - secret: - description: Secret containing data to use - for the targets. - properties: - key: - description: The key of the secret to - select from. Must be a valid secret - key. - type: string - name: - description: 'Name of the referent. More - info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names - TODO: Add other useful fields. apiVersion, - kind, uid?' - type: string - optional: - description: Specify whether the Secret - or its key must be defined - type: boolean - required: - - key - type: object - type: object - insecureSkipVerify: - description: Disable target certificate validation. - type: boolean - keySecret: - description: Secret containing the client key - file for the targets. - properties: - key: - description: The key of the secret to select - from. Must be a valid secret key. - type: string - name: - description: 'Name of the referent. More info: - https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names - TODO: Add other useful fields. apiVersion, - kind, uid?' - type: string - optional: - description: Specify whether the Secret or - its key must be defined - type: boolean - required: - - key - type: object - serverName: - description: Used to verify the hostname for the - targets. - type: string - type: object - type: object - message: - description: Alert text limited to 130 characters. - type: string - note: - description: Additional alert note. - type: string - priority: - description: Priority level of alert. Possible values - are P1, P2, P3, P4, and P5. - type: string - responders: - description: List of responders responsible for notifications. - items: - description: OpsGenieConfigResponder defines a responder - to an incident. One of `id`, `name` or `username` - has to be defined. - properties: - id: - description: ID of the responder. - type: string - name: - description: Name of the responder. - type: string - type: - description: Type of responder. - minLength: 1 - type: string - username: - description: Username of the responder. - type: string - required: - - type - type: object - type: array - sendResolved: - description: Whether or not to notify about resolved alerts. - type: boolean - source: - description: Backlink to the sender of the notification. - type: string - tags: - description: Comma separated list of tags attached to - the notifications. - type: string - type: object - type: array - pagerdutyConfigs: - description: List of PagerDuty configurations. - items: - description: PagerDutyConfig configures notifications via - PagerDuty. See https://prometheus.io/docs/alerting/latest/configuration/#pagerduty_config - properties: - class: - description: The class/type of the event. - type: string - client: - description: Client identification. - type: string - clientURL: - description: Backlink to the sender of notification. - type: string - component: - description: The part or component of the affected system - that is broken. - type: string - description: - description: Description of the incident. - type: string - details: - description: Arbitrary key/value pairs that provide further - detail about the incident. - items: - description: KeyValue defines a (key, value) tuple. - properties: - key: - description: Key of the tuple. - minLength: 1 - type: string - value: - description: Value of the tuple. - type: string - required: - - key - - value - type: object - type: array - group: - description: A cluster or grouping of sources. - type: string - httpConfig: - description: HTTP client configuration. - properties: - basicAuth: - description: BasicAuth for the client. - properties: - password: - description: The secret in the service monitor - namespace that contains the password for authentication. - properties: - key: - description: The key of the secret to select - from. Must be a valid secret key. - type: string - name: - description: 'Name of the referent. More info: - https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names - TODO: Add other useful fields. apiVersion, - kind, uid?' - type: string - optional: - description: Specify whether the Secret or - its key must be defined - type: boolean - required: - - key - type: object - username: - description: The secret in the service monitor - namespace that contains the username for authentication. - properties: - key: - description: The key of the secret to select - from. Must be a valid secret key. - type: string - name: - description: 'Name of the referent. More info: - https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names - TODO: Add other useful fields. apiVersion, - kind, uid?' - type: string - optional: - description: Specify whether the Secret or - its key must be defined - type: boolean - required: - - key - type: object - type: object - bearerTokenSecret: - description: The secret's key that contains the bearer - token to be used by the client for authentication. - The secret needs to be in the same namespace as - the AlertmanagerConfig object and accessible by - the Prometheus Operator. - properties: - key: - description: The key of the secret to select from. Must - be a valid secret key. - type: string - name: - description: 'Name of the referent. More info: - https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names - TODO: Add other useful fields. apiVersion, kind, - uid?' - type: string - optional: - description: Specify whether the Secret or its - key must be defined - type: boolean - required: - - key - type: object - proxyURL: - description: Optional proxy URL. - type: string - tlsConfig: - description: TLS configuration for the client. - properties: - ca: - description: Struct containing the CA cert to - use for the targets. - properties: - configMap: - description: ConfigMap containing data to - use for the targets. - properties: - key: - description: The key to select. - type: string - name: - description: 'Name of the referent. More - info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names - TODO: Add other useful fields. apiVersion, - kind, uid?' - type: string - optional: - description: Specify whether the ConfigMap - or its key must be defined - type: boolean - required: - - key - type: object - secret: - description: Secret containing data to use - for the targets. - properties: - key: - description: The key of the secret to - select from. Must be a valid secret - key. - type: string - name: - description: 'Name of the referent. More - info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names - TODO: Add other useful fields. apiVersion, - kind, uid?' - type: string - optional: - description: Specify whether the Secret - or its key must be defined - type: boolean - required: - - key - type: object - type: object - cert: - description: Struct containing the client cert - file for the targets. - properties: - configMap: - description: ConfigMap containing data to - use for the targets. - properties: - key: - description: The key to select. - type: string - name: - description: 'Name of the referent. More - info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names - TODO: Add other useful fields. apiVersion, - kind, uid?' - type: string - optional: - description: Specify whether the ConfigMap - or its key must be defined - type: boolean - required: - - key - type: object - secret: - description: Secret containing data to use - for the targets. - properties: - key: - description: The key of the secret to - select from. Must be a valid secret - key. - type: string - name: - description: 'Name of the referent. More - info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names - TODO: Add other useful fields. apiVersion, - kind, uid?' - type: string - optional: - description: Specify whether the Secret - or its key must be defined - type: boolean - required: - - key - type: object - type: object - insecureSkipVerify: - description: Disable target certificate validation. - type: boolean - keySecret: - description: Secret containing the client key - file for the targets. - properties: - key: - description: The key of the secret to select - from. Must be a valid secret key. - type: string - name: - description: 'Name of the referent. More info: - https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names - TODO: Add other useful fields. apiVersion, - kind, uid?' - type: string - optional: - description: Specify whether the Secret or - its key must be defined - type: boolean - required: - - key - type: object - serverName: - description: Used to verify the hostname for the - targets. - type: string - type: object - type: object - routingKey: - description: The secret's key that contains the PagerDuty - integration key (when using Events API v2). Either this - field or `serviceKey` needs to be defined. The secret - needs to be in the same namespace as the AlertmanagerConfig - object and accessible by the Prometheus Operator. - properties: - key: - description: The key of the secret to select from. Must - be a valid secret key. - type: string - name: - description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names - TODO: Add other useful fields. apiVersion, kind, - uid?' - type: string - optional: - description: Specify whether the Secret or its key - must be defined - type: boolean - required: - - key - type: object - sendResolved: - description: Whether or not to notify about resolved alerts. - type: boolean - serviceKey: - description: The secret's key that contains the PagerDuty - service key (when using integration type "Prometheus"). - Either this field or `routingKey` needs to be defined. - The secret needs to be in the same namespace as the - AlertmanagerConfig object and accessible by the Prometheus - Operator. - properties: - key: - description: The key of the secret to select from. Must - be a valid secret key. - type: string - name: - description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names - TODO: Add other useful fields. apiVersion, kind, - uid?' - type: string - optional: - description: Specify whether the Secret or its key - must be defined - type: boolean - required: - - key - type: object - severity: - description: Severity of the incident. - type: string - url: - description: The URL to send requests to. - type: string - type: object - type: array - pushoverConfigs: - description: List of Pushover configurations. - items: - description: PushoverConfig configures notifications via Pushover. - See https://prometheus.io/docs/alerting/latest/configuration/#pushover_config - properties: - expire: - description: How long your notification will continue - to be retried for, unless the user acknowledges the - notification. - type: string - html: - description: Whether notification message is HTML or plain - text. - type: boolean - httpConfig: - description: HTTP client configuration. - properties: - basicAuth: - description: BasicAuth for the client. - properties: - password: - description: The secret in the service monitor - namespace that contains the password for authentication. - properties: - key: - description: The key of the secret to select - from. Must be a valid secret key. - type: string - name: - description: 'Name of the referent. More info: - https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names - TODO: Add other useful fields. apiVersion, - kind, uid?' - type: string - optional: - description: Specify whether the Secret or - its key must be defined - type: boolean - required: - - key - type: object - username: - description: The secret in the service monitor - namespace that contains the username for authentication. - properties: - key: - description: The key of the secret to select - from. Must be a valid secret key. - type: string - name: - description: 'Name of the referent. More info: - https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names - TODO: Add other useful fields. apiVersion, - kind, uid?' - type: string - optional: - description: Specify whether the Secret or - its key must be defined - type: boolean - required: - - key - type: object - type: object - bearerTokenSecret: - description: The secret's key that contains the bearer - token to be used by the client for authentication. - The secret needs to be in the same namespace as - the AlertmanagerConfig object and accessible by - the Prometheus Operator. - properties: - key: - description: The key of the secret to select from. Must - be a valid secret key. - type: string - name: - description: 'Name of the referent. More info: - https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names - TODO: Add other useful fields. apiVersion, kind, - uid?' - type: string - optional: - description: Specify whether the Secret or its - key must be defined - type: boolean - required: - - key - type: object - proxyURL: - description: Optional proxy URL. - type: string - tlsConfig: - description: TLS configuration for the client. - properties: - ca: - description: Struct containing the CA cert to - use for the targets. - properties: - configMap: - description: ConfigMap containing data to - use for the targets. - properties: - key: - description: The key to select. - type: string - name: - description: 'Name of the referent. More - info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names - TODO: Add other useful fields. apiVersion, - kind, uid?' - type: string - optional: - description: Specify whether the ConfigMap - or its key must be defined - type: boolean - required: - - key - type: object - secret: - description: Secret containing data to use - for the targets. - properties: - key: - description: The key of the secret to - select from. Must be a valid secret - key. - type: string - name: - description: 'Name of the referent. More - info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names - TODO: Add other useful fields. apiVersion, - kind, uid?' - type: string - optional: - description: Specify whether the Secret - or its key must be defined - type: boolean - required: - - key - type: object - type: object - cert: - description: Struct containing the client cert - file for the targets. - properties: - configMap: - description: ConfigMap containing data to - use for the targets. - properties: - key: - description: The key to select. - type: string - name: - description: 'Name of the referent. More - info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names - TODO: Add other useful fields. apiVersion, - kind, uid?' - type: string - optional: - description: Specify whether the ConfigMap - or its key must be defined - type: boolean - required: - - key - type: object - secret: - description: Secret containing data to use - for the targets. - properties: - key: - description: The key of the secret to - select from. Must be a valid secret - key. - type: string - name: - description: 'Name of the referent. More - info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names - TODO: Add other useful fields. apiVersion, - kind, uid?' - type: string - optional: - description: Specify whether the Secret - or its key must be defined - type: boolean - required: - - key - type: object - type: object - insecureSkipVerify: - description: Disable target certificate validation. - type: boolean - keySecret: - description: Secret containing the client key - file for the targets. - properties: - key: - description: The key of the secret to select - from. Must be a valid secret key. - type: string - name: - description: 'Name of the referent. More info: - https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names - TODO: Add other useful fields. apiVersion, - kind, uid?' - type: string - optional: - description: Specify whether the Secret or - its key must be defined - type: boolean - required: - - key - type: object - serverName: - description: Used to verify the hostname for the - targets. - type: string - type: object - type: object - message: - description: Notification message. - type: string - priority: - description: Priority, see https://pushover.net/api#priority - type: string - retry: - description: How often the Pushover servers will send - the same notification to the user. Must be at least - 30 seconds. - type: string - sendResolved: - description: Whether or not to notify about resolved alerts. - type: boolean - sound: - description: The name of one of the sounds supported by - device clients to override the user's default sound - choice - type: string - title: - description: Notification title. - type: string - token: - description: The secret's key that contains the registered - application’s API token, see https://pushover.net/apps. - The secret needs to be in the same namespace as the - AlertmanagerConfig object and accessible by the Prometheus - Operator. - properties: - key: - description: The key of the secret to select from. Must - be a valid secret key. - type: string - name: - description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names - TODO: Add other useful fields. apiVersion, kind, - uid?' - type: string - optional: - description: Specify whether the Secret or its key - must be defined - type: boolean - required: - - key - type: object - url: - description: A supplementary URL shown alongside the message. - type: string - urlTitle: - description: A title for supplementary URL, otherwise - just the URL is shown - type: string - userKey: - description: The secret's key that contains the recipient - user’s user key. The secret needs to be in the same - namespace as the AlertmanagerConfig object and accessible - by the Prometheus Operator. - properties: - key: - description: The key of the secret to select from. Must - be a valid secret key. - type: string - name: - description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names - TODO: Add other useful fields. apiVersion, kind, - uid?' - type: string - optional: - description: Specify whether the Secret or its key - must be defined - type: boolean - required: - - key - type: object - type: object - type: array - slackConfigs: - description: List of Slack configurations. - items: - description: SlackConfig configures notifications via Slack. - See https://prometheus.io/docs/alerting/latest/configuration/#slack_config - properties: - actions: - description: A list of Slack actions that are sent with - each notification. - items: - description: SlackAction configures a single Slack action - that is sent with each notification. See https://api.slack.com/docs/message-attachments#action_fields - and https://api.slack.com/docs/message-buttons for - more information. - properties: - confirm: - description: SlackConfirmationField protect users - from destructive actions or particularly distinguished - decisions by asking them to confirm their button - click one more time. See https://api.slack.com/docs/interactive-message-field-guide#confirmation_fields - for more information. - properties: - dismissText: - type: string - okText: - type: string - text: - minLength: 1 - type: string - title: - type: string - required: - - text - type: object - name: - type: string - style: - type: string - text: - minLength: 1 - type: string - type: - minLength: 1 - type: string - url: - type: string - value: - type: string - required: - - text - - type - type: object - type: array - apiURL: - description: The secret's key that contains the Slack - webhook URL. The secret needs to be in the same namespace - as the AlertmanagerConfig object and accessible by the - Prometheus Operator. - properties: - key: - description: The key of the secret to select from. Must - be a valid secret key. - type: string - name: - description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names - TODO: Add other useful fields. apiVersion, kind, - uid?' - type: string - optional: - description: Specify whether the Secret or its key - must be defined - type: boolean - required: - - key - type: object - callbackId: - type: string - channel: - description: The channel or user to send notifications - to. - type: string - color: - type: string - fallback: - type: string - fields: - description: A list of Slack fields that are sent with - each notification. - items: - description: SlackField configures a single Slack field - that is sent with each notification. Each field must - contain a title, value, and optionally, a boolean - value to indicate if the field is short enough to - be displayed next to other fields designated as short. - See https://api.slack.com/docs/message-attachments#fields - for more information. - properties: - short: - type: boolean - title: - minLength: 1 - type: string - value: - minLength: 1 - type: string - required: - - title - - value - type: object - type: array - footer: - type: string - httpConfig: - description: HTTP client configuration. - properties: - basicAuth: - description: BasicAuth for the client. - properties: - password: - description: The secret in the service monitor - namespace that contains the password for authentication. - properties: - key: - description: The key of the secret to select - from. Must be a valid secret key. - type: string - name: - description: 'Name of the referent. More info: - https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names - TODO: Add other useful fields. apiVersion, - kind, uid?' - type: string - optional: - description: Specify whether the Secret or - its key must be defined - type: boolean - required: - - key - type: object - username: - description: The secret in the service monitor - namespace that contains the username for authentication. - properties: - key: - description: The key of the secret to select - from. Must be a valid secret key. - type: string - name: - description: 'Name of the referent. More info: - https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names - TODO: Add other useful fields. apiVersion, - kind, uid?' - type: string - optional: - description: Specify whether the Secret or - its key must be defined - type: boolean - required: - - key - type: object - type: object - bearerTokenSecret: - description: The secret's key that contains the bearer - token to be used by the client for authentication. - The secret needs to be in the same namespace as - the AlertmanagerConfig object and accessible by - the Prometheus Operator. - properties: - key: - description: The key of the secret to select from. Must - be a valid secret key. - type: string - name: - description: 'Name of the referent. More info: - https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names - TODO: Add other useful fields. apiVersion, kind, - uid?' - type: string - optional: - description: Specify whether the Secret or its - key must be defined - type: boolean - required: - - key - type: object - proxyURL: - description: Optional proxy URL. - type: string - tlsConfig: - description: TLS configuration for the client. - properties: - ca: - description: Struct containing the CA cert to - use for the targets. - properties: - configMap: - description: ConfigMap containing data to - use for the targets. - properties: - key: - description: The key to select. - type: string - name: - description: 'Name of the referent. More - info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names - TODO: Add other useful fields. apiVersion, - kind, uid?' - type: string - optional: - description: Specify whether the ConfigMap - or its key must be defined - type: boolean - required: - - key - type: object - secret: - description: Secret containing data to use - for the targets. - properties: - key: - description: The key of the secret to - select from. Must be a valid secret - key. - type: string - name: - description: 'Name of the referent. More - info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names - TODO: Add other useful fields. apiVersion, - kind, uid?' - type: string - optional: - description: Specify whether the Secret - or its key must be defined - type: boolean - required: - - key - type: object - type: object - cert: - description: Struct containing the client cert - file for the targets. - properties: - configMap: - description: ConfigMap containing data to - use for the targets. - properties: - key: - description: The key to select. - type: string - name: - description: 'Name of the referent. More - info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names - TODO: Add other useful fields. apiVersion, - kind, uid?' - type: string - optional: - description: Specify whether the ConfigMap - or its key must be defined - type: boolean - required: - - key - type: object - secret: - description: Secret containing data to use - for the targets. - properties: - key: - description: The key of the secret to - select from. Must be a valid secret - key. - type: string - name: - description: 'Name of the referent. More - info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names - TODO: Add other useful fields. apiVersion, - kind, uid?' - type: string - optional: - description: Specify whether the Secret - or its key must be defined - type: boolean - required: - - key - type: object - type: object - insecureSkipVerify: - description: Disable target certificate validation. - type: boolean - keySecret: - description: Secret containing the client key - file for the targets. - properties: - key: - description: The key of the secret to select - from. Must be a valid secret key. - type: string - name: - description: 'Name of the referent. More info: - https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names - TODO: Add other useful fields. apiVersion, - kind, uid?' - type: string - optional: - description: Specify whether the Secret or - its key must be defined - type: boolean - required: - - key - type: object - serverName: - description: Used to verify the hostname for the - targets. - type: string - type: object - type: object - iconEmoji: - type: string - iconURL: - type: string - imageURL: - type: string - linkNames: - type: boolean - mrkdwnIn: - items: - type: string - type: array - pretext: - type: string - sendResolved: - description: Whether or not to notify about resolved alerts. - type: boolean - shortFields: - type: boolean - text: - type: string - thumbURL: - type: string - title: - type: string - titleLink: - type: string - username: - type: string - type: object - type: array - victoropsConfigs: - description: List of VictorOps configurations. - items: - description: VictorOpsConfig configures notifications via - VictorOps. See https://prometheus.io/docs/alerting/latest/configuration/#victorops_config - properties: - apiKey: - description: The secret's key that contains the API key - to use when talking to the VictorOps API. The secret - needs to be in the same namespace as the AlertmanagerConfig - object and accessible by the Prometheus Operator. - properties: - key: - description: The key of the secret to select from. Must - be a valid secret key. - type: string - name: - description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names - TODO: Add other useful fields. apiVersion, kind, - uid?' - type: string - optional: - description: Specify whether the Secret or its key - must be defined - type: boolean - required: - - key - type: object - apiUrl: - description: The VictorOps API URL. - type: string - customFields: - description: Additional custom fields for notification. - items: - description: KeyValue defines a (key, value) tuple. - properties: - key: - description: Key of the tuple. - minLength: 1 - type: string - value: - description: Value of the tuple. - type: string - required: - - key - - value - type: object - type: array - entityDisplayName: - description: Contains summary of the alerted problem. - type: string - httpConfig: - description: The HTTP client's configuration. - properties: - basicAuth: - description: BasicAuth for the client. - properties: - password: - description: The secret in the service monitor - namespace that contains the password for authentication. - properties: - key: - description: The key of the secret to select - from. Must be a valid secret key. - type: string - name: - description: 'Name of the referent. More info: - https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names - TODO: Add other useful fields. apiVersion, - kind, uid?' - type: string - optional: - description: Specify whether the Secret or - its key must be defined - type: boolean - required: - - key - type: object - username: - description: The secret in the service monitor - namespace that contains the username for authentication. - properties: - key: - description: The key of the secret to select - from. Must be a valid secret key. - type: string - name: - description: 'Name of the referent. More info: - https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names - TODO: Add other useful fields. apiVersion, - kind, uid?' - type: string - optional: - description: Specify whether the Secret or - its key must be defined - type: boolean - required: - - key - type: object - type: object - bearerTokenSecret: - description: The secret's key that contains the bearer - token to be used by the client for authentication. - The secret needs to be in the same namespace as - the AlertmanagerConfig object and accessible by - the Prometheus Operator. - properties: - key: - description: The key of the secret to select from. Must - be a valid secret key. - type: string - name: - description: 'Name of the referent. More info: - https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names - TODO: Add other useful fields. apiVersion, kind, - uid?' - type: string - optional: - description: Specify whether the Secret or its - key must be defined - type: boolean - required: - - key - type: object - proxyURL: - description: Optional proxy URL. - type: string - tlsConfig: - description: TLS configuration for the client. - properties: - ca: - description: Struct containing the CA cert to - use for the targets. - properties: - configMap: - description: ConfigMap containing data to - use for the targets. - properties: - key: - description: The key to select. - type: string - name: - description: 'Name of the referent. More - info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names - TODO: Add other useful fields. apiVersion, - kind, uid?' - type: string - optional: - description: Specify whether the ConfigMap - or its key must be defined - type: boolean - required: - - key - type: object - secret: - description: Secret containing data to use - for the targets. - properties: - key: - description: The key of the secret to - select from. Must be a valid secret - key. - type: string - name: - description: 'Name of the referent. More - info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names - TODO: Add other useful fields. apiVersion, - kind, uid?' - type: string - optional: - description: Specify whether the Secret - or its key must be defined - type: boolean - required: - - key - type: object - type: object - cert: - description: Struct containing the client cert - file for the targets. - properties: - configMap: - description: ConfigMap containing data to - use for the targets. - properties: - key: - description: The key to select. - type: string - name: - description: 'Name of the referent. More - info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names - TODO: Add other useful fields. apiVersion, - kind, uid?' - type: string - optional: - description: Specify whether the ConfigMap - or its key must be defined - type: boolean - required: - - key - type: object - secret: - description: Secret containing data to use - for the targets. - properties: - key: - description: The key of the secret to - select from. Must be a valid secret - key. - type: string - name: - description: 'Name of the referent. More - info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names - TODO: Add other useful fields. apiVersion, - kind, uid?' - type: string - optional: - description: Specify whether the Secret - or its key must be defined - type: boolean - required: - - key - type: object - type: object - insecureSkipVerify: - description: Disable target certificate validation. - type: boolean - keySecret: - description: Secret containing the client key - file for the targets. - properties: - key: - description: The key of the secret to select - from. Must be a valid secret key. - type: string - name: - description: 'Name of the referent. More info: - https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names - TODO: Add other useful fields. apiVersion, - kind, uid?' - type: string - optional: - description: Specify whether the Secret or - its key must be defined - type: boolean - required: - - key - type: object - serverName: - description: Used to verify the hostname for the - targets. - type: string - type: object - type: object - messageType: - description: Describes the behavior of the alert (CRITICAL, - WARNING, INFO). - type: string - monitoringTool: - description: The monitoring tool the state message is - from. - type: string - routingKey: - description: A key used to map the alert to a team. - type: string - sendResolved: - description: Whether or not to notify about resolved alerts. - type: boolean - stateMessage: - description: Contains long explanation of the alerted - problem. - type: string - type: object - type: array - webhookConfigs: - description: List of webhook configurations. - items: - description: WebhookConfig configures notifications via a - generic receiver supporting the webhook payload. See https://prometheus.io/docs/alerting/latest/configuration/#webhook_config - properties: - httpConfig: - description: HTTP client configuration. - properties: - basicAuth: - description: BasicAuth for the client. - properties: - password: - description: The secret in the service monitor - namespace that contains the password for authentication. - properties: - key: - description: The key of the secret to select - from. Must be a valid secret key. - type: string - name: - description: 'Name of the referent. More info: - https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names - TODO: Add other useful fields. apiVersion, - kind, uid?' - type: string - optional: - description: Specify whether the Secret or - its key must be defined - type: boolean - required: - - key - type: object - username: - description: The secret in the service monitor - namespace that contains the username for authentication. - properties: - key: - description: The key of the secret to select - from. Must be a valid secret key. - type: string - name: - description: 'Name of the referent. More info: - https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names - TODO: Add other useful fields. apiVersion, - kind, uid?' - type: string - optional: - description: Specify whether the Secret or - its key must be defined - type: boolean - required: - - key - type: object - type: object - bearerTokenSecret: - description: The secret's key that contains the bearer - token to be used by the client for authentication. - The secret needs to be in the same namespace as - the AlertmanagerConfig object and accessible by - the Prometheus Operator. - properties: - key: - description: The key of the secret to select from. Must - be a valid secret key. - type: string - name: - description: 'Name of the referent. More info: - https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names - TODO: Add other useful fields. apiVersion, kind, - uid?' - type: string - optional: - description: Specify whether the Secret or its - key must be defined - type: boolean - required: - - key - type: object - proxyURL: - description: Optional proxy URL. - type: string - tlsConfig: - description: TLS configuration for the client. - properties: - ca: - description: Struct containing the CA cert to - use for the targets. - properties: - configMap: - description: ConfigMap containing data to - use for the targets. - properties: - key: - description: The key to select. - type: string - name: - description: 'Name of the referent. More - info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names - TODO: Add other useful fields. apiVersion, - kind, uid?' - type: string - optional: - description: Specify whether the ConfigMap - or its key must be defined - type: boolean - required: - - key - type: object - secret: - description: Secret containing data to use - for the targets. - properties: - key: - description: The key of the secret to - select from. Must be a valid secret - key. - type: string - name: - description: 'Name of the referent. More - info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names - TODO: Add other useful fields. apiVersion, - kind, uid?' - type: string - optional: - description: Specify whether the Secret - or its key must be defined - type: boolean - required: - - key - type: object - type: object - cert: - description: Struct containing the client cert - file for the targets. - properties: - configMap: - description: ConfigMap containing data to - use for the targets. - properties: - key: - description: The key to select. - type: string - name: - description: 'Name of the referent. More - info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names - TODO: Add other useful fields. apiVersion, - kind, uid?' - type: string - optional: - description: Specify whether the ConfigMap - or its key must be defined - type: boolean - required: - - key - type: object - secret: - description: Secret containing data to use - for the targets. - properties: - key: - description: The key of the secret to - select from. Must be a valid secret - key. - type: string - name: - description: 'Name of the referent. More - info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names - TODO: Add other useful fields. apiVersion, - kind, uid?' - type: string - optional: - description: Specify whether the Secret - or its key must be defined - type: boolean - required: - - key - type: object - type: object - insecureSkipVerify: - description: Disable target certificate validation. - type: boolean - keySecret: - description: Secret containing the client key - file for the targets. - properties: - key: - description: The key of the secret to select - from. Must be a valid secret key. - type: string - name: - description: 'Name of the referent. More info: - https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names - TODO: Add other useful fields. apiVersion, - kind, uid?' - type: string - optional: - description: Specify whether the Secret or - its key must be defined - type: boolean - required: - - key - type: object - serverName: - description: Used to verify the hostname for the - targets. - type: string - type: object - type: object - maxAlerts: - description: Maximum number of alerts to be sent per webhook - message. When 0, all alerts are included. - format: int32 - minimum: 0 - type: integer - sendResolved: - description: Whether or not to notify about resolved alerts. - type: boolean - url: - description: The URL to send HTTP POST requests to. `urlSecret` - takes precedence over `url`. One of `urlSecret` and - `url` should be defined. - type: string - urlSecret: - description: The secret's key that contains the webhook - URL to send HTTP requests to. `urlSecret` takes precedence - over `url`. One of `urlSecret` and `url` should be defined. - The secret needs to be in the same namespace as the - AlertmanagerConfig object and accessible by the Prometheus - Operator. - properties: - key: - description: The key of the secret to select from. Must - be a valid secret key. - type: string - name: - description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names - TODO: Add other useful fields. apiVersion, kind, - uid?' - type: string - optional: - description: Specify whether the Secret or its key - must be defined - type: boolean - required: - - key - type: object - type: object - type: array - wechatConfigs: - description: List of WeChat configurations. - items: - description: WeChatConfig configures notifications via WeChat. - See https://prometheus.io/docs/alerting/latest/configuration/#wechat_config - properties: - agentID: - type: string - apiSecret: - description: The secret's key that contains the WeChat - API key. The secret needs to be in the same namespace - as the AlertmanagerConfig object and accessible by the - Prometheus Operator. - properties: - key: - description: The key of the secret to select from. Must - be a valid secret key. - type: string - name: - description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names - TODO: Add other useful fields. apiVersion, kind, - uid?' - type: string - optional: - description: Specify whether the Secret or its key - must be defined - type: boolean - required: - - key - type: object - apiURL: - description: The WeChat API URL. - type: string - corpID: - description: The corp id for authentication. - type: string - httpConfig: - description: HTTP client configuration. - properties: - basicAuth: - description: BasicAuth for the client. - properties: - password: - description: The secret in the service monitor - namespace that contains the password for authentication. - properties: - key: - description: The key of the secret to select - from. Must be a valid secret key. - type: string - name: - description: 'Name of the referent. More info: - https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names - TODO: Add other useful fields. apiVersion, - kind, uid?' - type: string - optional: - description: Specify whether the Secret or - its key must be defined - type: boolean - required: - - key - type: object - username: - description: The secret in the service monitor - namespace that contains the username for authentication. - properties: - key: - description: The key of the secret to select - from. Must be a valid secret key. - type: string - name: - description: 'Name of the referent. More info: - https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names - TODO: Add other useful fields. apiVersion, - kind, uid?' - type: string - optional: - description: Specify whether the Secret or - its key must be defined - type: boolean - required: - - key - type: object - type: object - bearerTokenSecret: - description: The secret's key that contains the bearer - token to be used by the client for authentication. - The secret needs to be in the same namespace as - the AlertmanagerConfig object and accessible by - the Prometheus Operator. - properties: - key: - description: The key of the secret to select from. Must - be a valid secret key. - type: string - name: - description: 'Name of the referent. More info: - https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names - TODO: Add other useful fields. apiVersion, kind, - uid?' - type: string - optional: - description: Specify whether the Secret or its - key must be defined - type: boolean - required: - - key - type: object - proxyURL: - description: Optional proxy URL. - type: string - tlsConfig: - description: TLS configuration for the client. - properties: - ca: - description: Struct containing the CA cert to - use for the targets. - properties: - configMap: - description: ConfigMap containing data to - use for the targets. - properties: - key: - description: The key to select. - type: string - name: - description: 'Name of the referent. More - info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names - TODO: Add other useful fields. apiVersion, - kind, uid?' - type: string - optional: - description: Specify whether the ConfigMap - or its key must be defined - type: boolean - required: - - key - type: object - secret: - description: Secret containing data to use - for the targets. - properties: - key: - description: The key of the secret to - select from. Must be a valid secret - key. - type: string - name: - description: 'Name of the referent. More - info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names - TODO: Add other useful fields. apiVersion, - kind, uid?' - type: string - optional: - description: Specify whether the Secret - or its key must be defined - type: boolean - required: - - key - type: object - type: object - cert: - description: Struct containing the client cert - file for the targets. - properties: - configMap: - description: ConfigMap containing data to - use for the targets. - properties: - key: - description: The key to select. - type: string - name: - description: 'Name of the referent. More - info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names - TODO: Add other useful fields. apiVersion, - kind, uid?' - type: string - optional: - description: Specify whether the ConfigMap - or its key must be defined - type: boolean - required: - - key - type: object - secret: - description: Secret containing data to use - for the targets. - properties: - key: - description: The key of the secret to - select from. Must be a valid secret - key. - type: string - name: - description: 'Name of the referent. More - info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names - TODO: Add other useful fields. apiVersion, - kind, uid?' - type: string - optional: - description: Specify whether the Secret - or its key must be defined - type: boolean - required: - - key - type: object - type: object - insecureSkipVerify: - description: Disable target certificate validation. - type: boolean - keySecret: - description: Secret containing the client key - file for the targets. - properties: - key: - description: The key of the secret to select - from. Must be a valid secret key. - type: string - name: - description: 'Name of the referent. More info: - https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names - TODO: Add other useful fields. apiVersion, - kind, uid?' - type: string - optional: - description: Specify whether the Secret or - its key must be defined - type: boolean - required: - - key - type: object - serverName: - description: Used to verify the hostname for the - targets. - type: string - type: object - type: object - message: - description: API request data as defined by the WeChat - API. - type: string - messageType: - type: string - sendResolved: - description: Whether or not to notify about resolved alerts. - type: boolean - toParty: - type: string - toTag: - type: string - toUser: - type: string - type: object - type: array - required: - - name - type: object - type: array - route: - description: The Alertmanager route definition for alerts matching - the resource’s namespace. If present, it will be added to the generated - Alertmanager configuration as a first-level route. - properties: - continue: - description: Boolean indicating whether an alert should continue - matching subsequent sibling nodes. It will always be overridden - to true for the first-level route by the Prometheus operator. - type: boolean - groupBy: - description: List of labels to group by. - items: - type: string - type: array - groupInterval: - description: How long to wait before sending an updated notification. - Must match the regular expression `[0-9]+(ms|s|m|h)` (milliseconds - seconds minutes hours). - type: string - groupWait: - description: How long to wait before sending the initial notification. - Must match the regular expression `[0-9]+(ms|s|m|h)` (milliseconds - seconds minutes hours). - type: string - matchers: - description: 'List of matchers that the alert’s labels should - match. For the first level route, the operator removes any existing - equality and regexp matcher on the `namespace` label and adds - a `namespace: ` matcher.' - items: - description: Matcher defines how to match on alert's labels. - properties: - name: - description: Label to match. - minLength: 1 - type: string - regex: - description: Whether to match on equality (false) or regular-expression - (true). - type: boolean - value: - description: Label value to match. - type: string - required: - - name - type: object - type: array - receiver: - description: Name of the receiver for this route. If not empty, - it should be listed in the `receivers` field. - type: string - repeatInterval: - description: How long to wait before repeating the last notification. - Must match the regular expression `[0-9]+(ms|s|m|h)` (milliseconds - seconds minutes hours). - type: string - routes: - description: Child routes. - items: - x-kubernetes-preserve-unknown-fields: true - type: array - type: object - type: object - required: - - spec - type: object - served: true - storage: true -status: - acceptedNames: - kind: "" - plural: "" - conditions: [] - storedVersions: [] \ No newline at end of file diff --git a/charts/px-central/crds/crd-podmonitor.yaml b/charts/px-central/crds/crd-podmonitor.yaml deleted file mode 100644 index c6e866ebd..000000000 --- a/charts/px-central/crds/crd-podmonitor.yaml +++ /dev/null @@ -1,347 +0,0 @@ -# https://raw.githubusercontent.com/prometheus-operator/prometheus-operator/v0.47.0/example/prometheus-operator-crd/monitoring.coreos.com_podmonitors.yaml -apiVersion: apiextensions.k8s.io/v1 -kind: CustomResourceDefinition -metadata: - name: podmonitors.monitoring.coreos.com - labels: - app: prometheus-operator - annotations: - "helm.sh/hook": crd-install -spec: - group: monitoring.coreos.com - names: - kind: PodMonitor - plural: podmonitors - scope: Namespaced - versions: - - name: v1 - schema: - openAPIV3Schema: - description: PodMonitor defines monitoring for a set of pods. - properties: - apiVersion: - description: 'APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More 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. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds' - type: string - metadata: - type: object - spec: - description: Specification of desired Pod selection for target discovery by Prometheus. - properties: - jobLabel: - description: The label to use to retrieve the job name from. - type: string - namespaceSelector: - description: Selector to select which namespaces the Endpoints objects are discovered from. - properties: - any: - description: Boolean describing whether all namespaces are selected in contrast to a list restricting them. - type: boolean - matchNames: - description: List of namespace names. - items: - type: string - type: array - type: object - podMetricsEndpoints: - description: A list of endpoints allowed as part of this PodMonitor. - items: - description: PodMetricsEndpoint defines a scrapeable endpoint of a Kubernetes Pod serving Prometheus metrics. - properties: - basicAuth: - description: 'BasicAuth allow an endpoint to authenticate over basic authentication. More info: https://prometheus.io/docs/operating/configuration/#endpoint' - properties: - password: - description: The secret in the service monitor namespace that contains the password for authentication. - properties: - key: - description: The key of the secret to select from. Must be a valid secret key. - type: string - name: - description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?' - type: string - optional: - description: Specify whether the Secret or its key must be defined - type: boolean - required: - - key - type: object - username: - description: The secret in the service monitor namespace that contains the username for authentication. - properties: - key: - description: The key of the secret to select from. Must be a valid secret key. - type: string - name: - description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?' - type: string - optional: - description: Specify whether the Secret or its key must be defined - type: boolean - required: - - key - type: object - type: object - bearerTokenSecret: - description: Secret to mount to read bearer token for scraping targets. The secret needs to be in the same namespace as the pod monitor and accessible by the Prometheus Operator. - properties: - key: - description: The key of the secret to select from. Must be a valid secret key. - type: string - name: - description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?' - type: string - optional: - description: Specify whether the Secret or its key must be defined - type: boolean - required: - - key - type: object - honorLabels: - description: HonorLabels chooses the metric's labels on collisions with target labels. - type: boolean - honorTimestamps: - description: HonorTimestamps controls whether Prometheus respects the timestamps present in scraped data. - type: boolean - interval: - description: Interval at which metrics should be scraped - type: string - metricRelabelings: - description: MetricRelabelConfigs to apply to samples before ingestion. - items: - description: 'RelabelConfig allows dynamic rewriting of the label set, being applied to samples before ingestion. It defines ``-section of Prometheus configuration. More info: https://prometheus.io/docs/prometheus/latest/configuration/configuration/#metric_relabel_configs' - properties: - action: - description: Action to perform based on regex matching. Default is 'replace' - type: string - modulus: - description: Modulus to take of the hash of the source label values. - format: int64 - type: integer - regex: - description: Regular expression against which the extracted value is matched. Default is '(.*)' - type: string - replacement: - description: Replacement value against which a regex replace is performed if the regular expression matches. Regex capture groups are available. Default is '$1' - type: string - separator: - description: Separator placed between concatenated source label values. default is ';'. - type: string - sourceLabels: - description: The source labels select values from existing labels. Their content is concatenated using the configured separator and matched against the configured regular expression for the replace, keep, and drop actions. - items: - type: string - type: array - targetLabel: - description: Label to which the resulting value is written in a replace action. It is mandatory for replace actions. Regex capture groups are available. - type: string - type: object - type: array - params: - additionalProperties: - items: - type: string - type: array - description: Optional HTTP URL parameters - type: object - path: - description: HTTP path to scrape for metrics. - type: string - port: - description: Name of the pod port this endpoint refers to. Mutually exclusive with targetPort. - type: string - proxyUrl: - description: ProxyURL eg http://proxyserver:2195 Directs scrapes to proxy through this endpoint. - type: string - relabelings: - description: 'RelabelConfigs to apply to samples before scraping. Prometheus Operator automatically adds relabelings for a few standard Kubernetes fields and replaces original scrape job name with __tmp_prometheus_job_name. More info: https://prometheus.io/docs/prometheus/latest/configuration/configuration/#relabel_config' - items: - description: 'RelabelConfig allows dynamic rewriting of the label set, being applied to samples before ingestion. It defines ``-section of Prometheus configuration. More info: https://prometheus.io/docs/prometheus/latest/configuration/configuration/#metric_relabel_configs' - properties: - action: - description: Action to perform based on regex matching. Default is 'replace' - type: string - modulus: - description: Modulus to take of the hash of the source label values. - format: int64 - type: integer - regex: - description: Regular expression against which the extracted value is matched. Default is '(.*)' - type: string - replacement: - description: Replacement value against which a regex replace is performed if the regular expression matches. Regex capture groups are available. Default is '$1' - type: string - separator: - description: Separator placed between concatenated source label values. default is ';'. - type: string - sourceLabels: - description: The source labels select values from existing labels. Their content is concatenated using the configured separator and matched against the configured regular expression for the replace, keep, and drop actions. - items: - type: string - type: array - targetLabel: - description: Label to which the resulting value is written in a replace action. It is mandatory for replace actions. Regex capture groups are available. - type: string - type: object - type: array - scheme: - description: HTTP scheme to use for scraping. - type: string - scrapeTimeout: - description: Timeout after which the scrape is ended - type: string - targetPort: - anyOf: - - type: integer - - type: string - description: 'Deprecated: Use ''port'' instead.' - x-kubernetes-int-or-string: true - tlsConfig: - description: TLS configuration to use when scraping the endpoint. - properties: - ca: - description: Struct containing the CA cert to use for the targets. - properties: - configMap: - description: ConfigMap containing data to use for the targets. - properties: - key: - description: The key to select. - type: string - name: - description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?' - type: string - optional: - description: Specify whether the ConfigMap or its key must be defined - type: boolean - required: - - key - type: object - secret: - description: Secret containing data to use for the targets. - properties: - key: - description: The key of the secret to select from. Must be a valid secret key. - type: string - name: - description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?' - type: string - optional: - description: Specify whether the Secret or its key must be defined - type: boolean - required: - - key - type: object - type: object - cert: - description: Struct containing the client cert file for the targets. - properties: - configMap: - description: ConfigMap containing data to use for the targets. - properties: - key: - description: The key to select. - type: string - name: - description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?' - type: string - optional: - description: Specify whether the ConfigMap or its key must be defined - type: boolean - required: - - key - type: object - secret: - description: Secret containing data to use for the targets. - properties: - key: - description: The key of the secret to select from. Must be a valid secret key. - type: string - name: - description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?' - type: string - optional: - description: Specify whether the Secret or its key must be defined - type: boolean - required: - - key - type: object - type: object - insecureSkipVerify: - description: Disable target certificate validation. - type: boolean - keySecret: - description: Secret containing the client key file for the targets. - properties: - key: - description: The key of the secret to select from. Must be a valid secret key. - type: string - name: - description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?' - type: string - optional: - description: Specify whether the Secret or its key must be defined - type: boolean - required: - - key - type: object - serverName: - description: Used to verify the hostname for the targets. - type: string - type: object - type: object - type: array - podTargetLabels: - description: PodTargetLabels transfers labels on the Kubernetes Pod onto the target. - items: - type: string - type: array - sampleLimit: - description: SampleLimit defines per-scrape limit on number of scraped samples that will be accepted. - format: int64 - type: integer - selector: - description: Selector to select Pod objects. - 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 relates 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. Valid 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, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch. - items: - type: string - type: array - required: - - key - - operator - type: object - type: array - matchLabels: - additionalProperties: - type: string - description: matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed. - type: object - type: object - targetLimit: - description: TargetLimit defines a limit on the number of scraped targets that will be accepted. - format: int64 - type: integer - required: - - podMetricsEndpoints - - selector - type: object - required: - - spec - type: object - served: true - storage: true \ No newline at end of file diff --git a/charts/px-central/crds/crd-probes.yaml b/charts/px-central/crds/crd-probes.yaml deleted file mode 100644 index 4d298cfc9..000000000 --- a/charts/px-central/crds/crd-probes.yaml +++ /dev/null @@ -1,569 +0,0 @@ -# https://raw.githubusercontent.com/prometheus-operator/prometheus-operator/v0.50.0/example/prometheus-operator-crd/monitoring.coreos.com_probes.yaml - ---- -apiVersion: apiextensions.k8s.io/v1 -kind: CustomResourceDefinition -metadata: - annotations: - controller-gen.kubebuilder.io/version: v0.4.1 - creationTimestamp: null - name: probes.monitoring.coreos.com -spec: - group: monitoring.coreos.com - names: - categories: - - prometheus-operator - kind: Probe - listKind: ProbeList - plural: probes - singular: probe - scope: Namespaced - versions: - - name: v1 - schema: - openAPIV3Schema: - description: Probe defines monitoring for a set of static targets or ingresses. - properties: - apiVersion: - description: 'APIVersion defines the versioned schema of this representation - of an object. Servers should convert recognized schemas to the latest - internal value, and may reject unrecognized values. More 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. Servers may infer this from the endpoint the client - submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds' - type: string - metadata: - type: object - spec: - description: Specification of desired Ingress selection for target discovery - by Prometheus. - properties: - authorization: - description: Authorization section for this endpoint - properties: - credentials: - description: The secret's key that contains the credentials of - the request - properties: - key: - description: The key of the secret to select from. Must be - a valid secret key. - type: string - name: - description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names - TODO: Add other useful fields. apiVersion, kind, uid?' - type: string - optional: - description: Specify whether the Secret or its key must be - defined - type: boolean - required: - - key - type: object - type: - description: Set the authentication type. Defaults to Bearer, - Basic will cause an error - type: string - type: object - basicAuth: - description: 'BasicAuth allow an endpoint to authenticate over basic - authentication. More info: https://prometheus.io/docs/operating/configuration/#endpoint' - properties: - password: - description: The secret in the service monitor namespace that - contains the password for authentication. - properties: - key: - description: The key of the secret to select from. Must be - a valid secret key. - type: string - name: - description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names - TODO: Add other useful fields. apiVersion, kind, uid?' - type: string - optional: - description: Specify whether the Secret or its key must be - defined - type: boolean - required: - - key - type: object - username: - description: The secret in the service monitor namespace that - contains the username for authentication. - properties: - key: - description: The key of the secret to select from. Must be - a valid secret key. - type: string - name: - description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names - TODO: Add other useful fields. apiVersion, kind, uid?' - type: string - optional: - description: Specify whether the Secret or its key must be - defined - type: boolean - required: - - key - type: object - type: object - bearerTokenSecret: - description: Secret to mount to read bearer token for scraping targets. - The secret needs to be in the same namespace as the probe and accessible - by the Prometheus Operator. - properties: - key: - description: The key of the secret to select from. Must be a - valid secret key. - type: string - name: - description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names - TODO: Add other useful fields. apiVersion, kind, uid?' - type: string - optional: - description: Specify whether the Secret or its key must be defined - type: boolean - required: - - key - type: object - interval: - description: Interval at which targets are probed using the configured - prober. If not specified Prometheus' global scrape interval is used. - type: string - jobName: - description: The job name assigned to scraped metrics by default. - type: string - labelLimit: - description: Per-scrape limit on number of labels that will be accepted - for a sample. Only valid in Prometheus versions 2.27.0 and newer. - format: int64 - type: integer - labelNameLengthLimit: - description: Per-scrape limit on length of labels name that will be - accepted for a sample. Only valid in Prometheus versions 2.27.0 - and newer. - format: int64 - type: integer - labelValueLengthLimit: - description: Per-scrape limit on length of labels value that will - be accepted for a sample. Only valid in Prometheus versions 2.27.0 - and newer. - format: int64 - type: integer - module: - description: 'The module to use for probing specifying how to probe - the target. Example module configuring in the blackbox exporter: - https://github.com/prometheus/blackbox_exporter/blob/master/example.yml' - type: string - oauth2: - description: OAuth2 for the URL. Only valid in Prometheus versions - 2.27.0 and newer. - properties: - clientId: - description: The secret or configmap containing the OAuth2 client - id - properties: - configMap: - description: ConfigMap containing data to use for the targets. - properties: - key: - description: The key to select. - type: string - name: - description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names - TODO: Add other useful fields. apiVersion, kind, uid?' - type: string - optional: - description: Specify whether the ConfigMap or its key - must be defined - type: boolean - required: - - key - type: object - secret: - description: Secret containing data to use for the targets. - properties: - key: - description: The key of the secret to select from. Must - be a valid secret key. - type: string - name: - description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names - TODO: Add other useful fields. apiVersion, kind, uid?' - type: string - optional: - description: Specify whether the Secret or its key must - be defined - type: boolean - required: - - key - type: object - type: object - clientSecret: - description: The secret containing the OAuth2 client secret - properties: - key: - description: The key of the secret to select from. Must be - a valid secret key. - type: string - name: - description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names - TODO: Add other useful fields. apiVersion, kind, uid?' - type: string - optional: - description: Specify whether the Secret or its key must be - defined - type: boolean - required: - - key - type: object - endpointParams: - additionalProperties: - type: string - description: Parameters to append to the token URL - type: object - scopes: - description: OAuth2 scopes used for the token request - items: - type: string - type: array - tokenUrl: - description: The URL to fetch the token from - minLength: 1 - type: string - required: - - clientId - - clientSecret - - tokenUrl - type: object - prober: - description: Specification for the prober to use for probing targets. - The prober.URL parameter is required. Targets cannot be probed if - left empty. - properties: - path: - description: Path to collect metrics from. Defaults to `/probe`. - type: string - proxyUrl: - description: Optional ProxyURL. - type: string - scheme: - description: HTTP scheme to use for scraping. Defaults to `http`. - type: string - url: - description: Mandatory URL of the prober. - type: string - required: - - url - type: object - sampleLimit: - description: SampleLimit defines per-scrape limit on number of scraped - samples that will be accepted. - format: int64 - type: integer - scrapeTimeout: - description: Timeout for scraping metrics from the Prometheus exporter. - type: string - targetLimit: - description: TargetLimit defines a limit on the number of scraped - targets that will be accepted. - format: int64 - type: integer - targets: - description: Targets defines a set of static and/or dynamically discovered - targets to be probed using the prober. - properties: - ingress: - description: Ingress defines the set of dynamically discovered - ingress objects which hosts are considered for probing. - properties: - namespaceSelector: - description: Select Ingress objects by namespace. - properties: - any: - description: Boolean describing whether all namespaces - are selected in contrast to a list restricting them. - type: boolean - matchNames: - description: List of namespace names. - items: - type: string - type: array - type: object - relabelingConfigs: - description: 'RelabelConfigs to apply to samples before ingestion. - More info: https://prometheus.io/docs/prometheus/latest/configuration/configuration/#relabel_config' - items: - description: 'RelabelConfig allows dynamic rewriting of - the label set, being applied to samples before ingestion. - It defines ``-section of Prometheus - configuration. More info: https://prometheus.io/docs/prometheus/latest/configuration/configuration/#metric_relabel_configs' - properties: - action: - description: Action to perform based on regex matching. - Default is 'replace' - type: string - modulus: - description: Modulus to take of the hash of the source - label values. - format: int64 - type: integer - regex: - description: Regular expression against which the extracted - value is matched. Default is '(.*)' - type: string - replacement: - description: Replacement value against which a regex - replace is performed if the regular expression matches. - Regex capture groups are available. Default is '$1' - type: string - separator: - description: Separator placed between concatenated source - label values. default is ';'. - type: string - sourceLabels: - description: The source labels select values from existing - labels. Their content is concatenated using the configured - separator and matched against the configured regular - expression for the replace, keep, and drop actions. - items: - type: string - type: array - targetLabel: - description: Label to which the resulting value is written - in a replace action. It is mandatory for replace actions. - Regex capture groups are available. - type: string - type: object - type: array - selector: - description: Select Ingress objects by labels. - 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 - relates 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. Valid 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, the values array - must be non-empty. If the operator is Exists or - DoesNotExist, the values array must be empty. - This array is replaced during a strategic merge - patch. - items: - type: string - type: array - required: - - key - - operator - type: object - type: array - matchLabels: - additionalProperties: - type: string - description: matchLabels is a map of {key,value} pairs. - A single {key,value} in the matchLabels map is equivalent - to an element of matchExpressions, whose key field is - "key", the operator is "In", and the values array contains - only "value". The requirements are ANDed. - type: object - type: object - type: object - staticConfig: - description: 'StaticConfig defines static targets which are considers - for probing. More info: https://prometheus.io/docs/prometheus/latest/configuration/configuration/#static_config.' - properties: - labels: - additionalProperties: - type: string - description: Labels assigned to all metrics scraped from the - targets. - type: object - relabelingConfigs: - description: 'RelabelConfigs to apply to samples before ingestion. - More info: https://prometheus.io/docs/prometheus/latest/configuration/configuration/#relabel_config' - items: - description: 'RelabelConfig allows dynamic rewriting of - the label set, being applied to samples before ingestion. - It defines ``-section of Prometheus - configuration. More info: https://prometheus.io/docs/prometheus/latest/configuration/configuration/#metric_relabel_configs' - properties: - action: - description: Action to perform based on regex matching. - Default is 'replace' - type: string - modulus: - description: Modulus to take of the hash of the source - label values. - format: int64 - type: integer - regex: - description: Regular expression against which the extracted - value is matched. Default is '(.*)' - type: string - replacement: - description: Replacement value against which a regex - replace is performed if the regular expression matches. - Regex capture groups are available. Default is '$1' - type: string - separator: - description: Separator placed between concatenated source - label values. default is ';'. - type: string - sourceLabels: - description: The source labels select values from existing - labels. Their content is concatenated using the configured - separator and matched against the configured regular - expression for the replace, keep, and drop actions. - items: - type: string - type: array - targetLabel: - description: Label to which the resulting value is written - in a replace action. It is mandatory for replace actions. - Regex capture groups are available. - type: string - type: object - type: array - static: - description: Targets is a list of URLs to probe using the - configured prober. - items: - type: string - type: array - type: object - type: object - tlsConfig: - description: TLS configuration to use when scraping the endpoint. - properties: - ca: - description: Struct containing the CA cert to use for the targets. - properties: - configMap: - description: ConfigMap containing data to use for the targets. - properties: - key: - description: The key to select. - type: string - name: - description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names - TODO: Add other useful fields. apiVersion, kind, uid?' - type: string - optional: - description: Specify whether the ConfigMap or its key - must be defined - type: boolean - required: - - key - type: object - secret: - description: Secret containing data to use for the targets. - properties: - key: - description: The key of the secret to select from. Must - be a valid secret key. - type: string - name: - description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names - TODO: Add other useful fields. apiVersion, kind, uid?' - type: string - optional: - description: Specify whether the Secret or its key must - be defined - type: boolean - required: - - key - type: object - type: object - cert: - description: Struct containing the client cert file for the targets. - properties: - configMap: - description: ConfigMap containing data to use for the targets. - properties: - key: - description: The key to select. - type: string - name: - description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names - TODO: Add other useful fields. apiVersion, kind, uid?' - type: string - optional: - description: Specify whether the ConfigMap or its key - must be defined - type: boolean - required: - - key - type: object - secret: - description: Secret containing data to use for the targets. - properties: - key: - description: The key of the secret to select from. Must - be a valid secret key. - type: string - name: - description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names - TODO: Add other useful fields. apiVersion, kind, uid?' - type: string - optional: - description: Specify whether the Secret or its key must - be defined - type: boolean - required: - - key - type: object - type: object - insecureSkipVerify: - description: Disable target certificate validation. - type: boolean - keySecret: - description: Secret containing the client key file for the targets. - properties: - key: - description: The key of the secret to select from. Must be - a valid secret key. - type: string - name: - description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names - TODO: Add other useful fields. apiVersion, kind, uid?' - type: string - optional: - description: Specify whether the Secret or its key must be - defined - type: boolean - required: - - key - type: object - serverName: - description: Used to verify the hostname for the targets. - type: string - type: object - type: object - required: - - spec - type: object - served: true - storage: true -status: - acceptedNames: - kind: "" - plural: "" - conditions: [] - storedVersions: [] \ No newline at end of file diff --git a/charts/px-central/crds/crd-prometheus.yaml b/charts/px-central/crds/crd-prometheus.yaml deleted file mode 100644 index 7b4dbfe8b..000000000 --- a/charts/px-central/crds/crd-prometheus.yaml +++ /dev/null @@ -1,4437 +0,0 @@ -# https://raw.githubusercontent.com/prometheus-operator/prometheus-operator/v0.47.0/example/prometheus-operator-crd/monitoring.coreos.com_prometheuses.yaml -apiVersion: apiextensions.k8s.io/v1 -kind: CustomResourceDefinition -metadata: - name: prometheuses.monitoring.coreos.com - labels: - app: prometheus-operator - annotations: - "helm.sh/hook": crd-install -spec: - group: monitoring.coreos.com - names: - kind: Prometheus - plural: prometheuses - preserveUnknownFields: false - scope: Namespaced - versions: - - additionalPrinterColumns: - - description: The version of Prometheus - jsonPath: .spec.version - name: Version - type: string - - description: The desired replicas number of Prometheuses - jsonPath: .spec.replicas - name: Replicas - type: integer - - jsonPath: .metadata.creationTimestamp - name: Age - type: date - name: v1 - schema: - openAPIV3Schema: - description: Prometheus defines a Prometheus deployment. - properties: - apiVersion: - description: 'APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More 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. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds' - type: string - metadata: - type: object - spec: - description: 'Specification of the desired behavior of the Prometheus cluster. More info: https://github.com/kubernetes/community/blob/master/contributors/devel/sig-architecture/api-conventions.md#spec-and-status' - properties: - additionalAlertManagerConfigs: - description: 'AdditionalAlertManagerConfigs allows specifying a key of a Secret containing additional Prometheus AlertManager configurations. AlertManager configurations specified are appended to the configurations generated by the Prometheus Operator. Job configurations specified must have the form as specified in the official Prometheus documentation: https://prometheus.io/docs/prometheus/latest/configuration/configuration/#alertmanager_config. As AlertManager configs are appended, the user is responsible to make sure it is valid. Note that using this feature may expose the possibility to break upgrades of Prometheus. It is advised to review Prometheus release notes to ensure that no incompatible AlertManager configs are going to break Prometheus after the upgrade.' - properties: - key: - description: The key of the secret to select from. Must be a valid secret key. - type: string - name: - description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?' - type: string - optional: - description: Specify whether the Secret or its key must be defined - type: boolean - required: - - key - type: object - additionalAlertRelabelConfigs: - description: 'AdditionalAlertRelabelConfigs allows specifying a key of a Secret containing additional Prometheus alert relabel configurations. Alert relabel configurations specified are appended to the configurations generated by the Prometheus Operator. Alert relabel configurations specified must have the form as specified in the official Prometheus documentation: https://prometheus.io/docs/prometheus/latest/configuration/configuration/#alert_relabel_configs. As alert relabel configs are appended, the user is responsible to make sure it is valid. Note that using this feature may expose the possibility to break upgrades of Prometheus. It is advised to review Prometheus release notes to ensure that no incompatible alert relabel configs are going to break Prometheus after the upgrade.' - properties: - key: - description: The key of the secret to select from. Must be a valid secret key. - type: string - name: - description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?' - type: string - optional: - description: Specify whether the Secret or its key must be defined - type: boolean - required: - - key - type: object - additionalScrapeConfigs: - description: 'AdditionalScrapeConfigs allows specifying a key of a Secret containing additional Prometheus scrape configurations. Scrape configurations specified are appended to the configurations generated by the Prometheus Operator. Job configurations specified must have the form as specified in the official Prometheus documentation: https://prometheus.io/docs/prometheus/latest/configuration/configuration/#scrape_config. As scrape configs are appended, the user is responsible to make sure it is valid. Note that using this feature may expose the possibility to break upgrades of Prometheus. It is advised to review Prometheus release notes to ensure that no incompatible scrape configs are going to break Prometheus after the upgrade.' - properties: - key: - description: The key of the secret to select from. Must be a valid secret key. - type: string - name: - description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?' - type: string - optional: - description: Specify whether the Secret or its key must be defined - type: boolean - required: - - key - type: object - affinity: - description: If specified, the pod's scheduling constraints. - 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 the affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding "weight" to the sum if the node matches the corresponding matchExpressions; the node(s) with the highest sum are the most preferred. - items: - description: An empty preferred scheduling term matches all objects with implicit weight 0 (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 that 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. Valid 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, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer. This array is replaced during a strategic merge patch. - items: - type: string - type: array - required: - - key - - operator - type: object - type: array - 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 that 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. Valid 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, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer. This array is replaced during a strategic merge patch. - items: - type: string - type: array - required: - - key - - operator - type: object - type: array - type: object - weight: - description: Weight associated with matching the corresponding nodeSelectorTerm, in the range 1-100. - format: int32 - type: integer - required: - - preference - - weight - type: object - type: array - requiredDuringSchedulingIgnoredDuringExecution: - description: If the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to an update), the system may 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 them are ANDed. The 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 that 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. Valid 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, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer. This array is replaced during a strategic merge patch. - items: - type: string - type: array - required: - - key - - operator - type: object - type: array - 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 that 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. Valid 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, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer. This array is replaced during a strategic merge patch. - items: - type: string - type: array - required: - - key - - operator - type: object - type: array - type: object - type: array - required: - - nodeSelectorTerms - type: object - type: object - 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 the affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding "weight" to the sum if the node has pods which matches the corresponding podAffinityTerm; the node(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. - 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 relates 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. Valid 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, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch. - items: - type: string - type: array - required: - - key - - operator - type: object - type: array - matchLabels: - additionalProperties: - type: string - description: matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed. - type: object - type: object - namespaces: - description: namespaces specifies which namespaces the labelSelector applies to (matches against); null or empty list means "this pod's namespace" - items: - type: string - type: array - topologyKey: - description: This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running. Empty topologyKey is not allowed. - type: string - required: - - topologyKey - type: object - weight: - description: weight associated with matching the corresponding podAffinityTerm, in the range 1-100. - format: int32 - type: integer - required: - - podAffinityTerm - - weight - type: object - type: array - requiredDuringSchedulingIgnoredDuringExecution: - description: If the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to a pod label update), the system may or may not try to eventually evict the pod from its node. When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, i.e. all terms must be satisfied. - items: - description: Defines a set of pods (namely those matching the labelSelector relative to the given namespace(s)) that this pod should be co-located (affinity) or not co-located (anti-affinity) with, where co-located is defined as running on a node whose value of the label with key matches that of any node on which a pod of the set of pods is running - properties: - labelSelector: - description: A label query over a set of resources, in this case 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 relates 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. Valid 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, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch. - items: - type: string - type: array - required: - - key - - operator - type: object - type: array - matchLabels: - additionalProperties: - type: string - description: matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed. - type: object - type: object - namespaces: - description: namespaces specifies which namespaces the labelSelector applies to (matches against); null or empty list means "this pod's namespace" - items: - type: string - type: array - topologyKey: - description: This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running. Empty topologyKey is not allowed. - type: string - required: - - topologyKey - type: object - type: array - type: object - 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 the anti-affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling anti-affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding "weight" to the sum if the node has pods which matches the corresponding podAffinityTerm; the node(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. - 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 relates 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. Valid 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, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch. - items: - type: string - type: array - required: - - key - - operator - type: object - type: array - matchLabels: - additionalProperties: - type: string - description: matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed. - type: object - type: object - namespaces: - description: namespaces specifies which namespaces the labelSelector applies to (matches against); null or empty list means "this pod's namespace" - items: - type: string - type: array - topologyKey: - description: This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running. Empty topologyKey is not allowed. - type: string - required: - - topologyKey - type: object - weight: - description: weight associated with matching the corresponding podAffinityTerm, in the range 1-100. - format: int32 - type: integer - required: - - podAffinityTerm - - weight - type: object - type: array - requiredDuringSchedulingIgnoredDuringExecution: - description: If the anti-affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the anti-affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to a pod label update), the system may or may not try to eventually evict the pod from its node. When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, i.e. all terms must be satisfied. - items: - description: Defines a set of pods (namely those matching the labelSelector relative to the given namespace(s)) that this pod should be co-located (affinity) or not co-located (anti-affinity) with, where co-located is defined as running on a node whose value of the label with key matches that of any node on which a pod of the set of pods is running - properties: - labelSelector: - description: A label query over a set of resources, in this case 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 relates 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. Valid 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, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch. - items: - type: string - type: array - required: - - key - - operator - type: object - type: array - matchLabels: - additionalProperties: - type: string - description: matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed. - type: object - type: object - namespaces: - description: namespaces specifies which namespaces the labelSelector applies to (matches against); null or empty list means "this pod's namespace" - items: - type: string - type: array - topologyKey: - description: This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running. Empty topologyKey is not allowed. - type: string - required: - - topologyKey - type: object - type: array - type: object - type: object - alerting: - description: Define details regarding alerting. - properties: - alertmanagers: - description: AlertmanagerEndpoints Prometheus should fire alerts against. - items: - description: AlertmanagerEndpoints defines a selection of a single Endpoints object containing alertmanager IPs to fire alerts against. - properties: - apiVersion: - description: Version of the Alertmanager API that Prometheus uses to send alerts. It can be "v1" or "v2". - type: string - bearerTokenFile: - description: BearerTokenFile to read from filesystem to use when authenticating to Alertmanager. - type: string - name: - description: Name of Endpoints object in Namespace. - type: string - namespace: - description: Namespace of Endpoints object. - type: string - pathPrefix: - description: Prefix for the HTTP path alerts are pushed to. - type: string - port: - anyOf: - - type: integer - - type: string - description: Port the Alertmanager API is exposed on. - x-kubernetes-int-or-string: true - scheme: - description: Scheme to use when firing alerts. - type: string - timeout: - description: Timeout is a per-target Alertmanager timeout when pushing alerts. - type: string - tlsConfig: - description: TLS Config to use for alertmanager connection. - properties: - ca: - description: Struct containing the CA cert to use for the targets. - properties: - configMap: - description: ConfigMap containing data to use for the targets. - properties: - key: - description: The key to select. - type: string - name: - description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?' - type: string - optional: - description: Specify whether the ConfigMap or its key must be defined - type: boolean - required: - - key - type: object - secret: - description: Secret containing data to use for the targets. - properties: - key: - description: The key of the secret to select from. Must be a valid secret key. - type: string - name: - description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?' - type: string - optional: - description: Specify whether the Secret or its key must be defined - type: boolean - required: - - key - type: object - type: object - caFile: - description: Path to the CA cert in the Prometheus container to use for the targets. - type: string - cert: - description: Struct containing the client cert file for the targets. - properties: - configMap: - description: ConfigMap containing data to use for the targets. - properties: - key: - description: The key to select. - type: string - name: - description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?' - type: string - optional: - description: Specify whether the ConfigMap or its key must be defined - type: boolean - required: - - key - type: object - secret: - description: Secret containing data to use for the targets. - properties: - key: - description: The key of the secret to select from. Must be a valid secret key. - type: string - name: - description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?' - type: string - optional: - description: Specify whether the Secret or its key must be defined - type: boolean - required: - - key - type: object - type: object - certFile: - description: Path to the client cert file in the Prometheus container for the targets. - type: string - insecureSkipVerify: - description: Disable target certificate validation. - type: boolean - keyFile: - description: Path to the client key file in the Prometheus container for the targets. - type: string - keySecret: - description: Secret containing the client key file for the targets. - properties: - key: - description: The key of the secret to select from. Must be a valid secret key. - type: string - name: - description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?' - type: string - optional: - description: Specify whether the Secret or its key must be defined - type: boolean - required: - - key - type: object - serverName: - description: Used to verify the hostname for the targets. - type: string - type: object - required: - - name - - namespace - - port - type: object - type: array - required: - - alertmanagers - type: object - allowOverlappingBlocks: - description: AllowOverlappingBlocks enables vertical compaction and vertical query merge in Prometheus. This is still experimental in Prometheus so it may change in any upcoming release. - type: boolean - apiserverConfig: - description: APIServerConfig allows specifying a host and auth methods to access apiserver. If left empty, Prometheus is assumed to run inside of the cluster and will discover API servers automatically and use the pod's CA certificate and bearer token file at /var/run/secrets/kubernetes.io/serviceaccount/. - properties: - basicAuth: - description: BasicAuth allow an endpoint to authenticate over basic authentication - properties: - password: - description: The secret in the service monitor namespace that contains the password for authentication. - properties: - key: - description: The key of the secret to select from. Must be a valid secret key. - type: string - name: - description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?' - type: string - optional: - description: Specify whether the Secret or its key must be defined - type: boolean - required: - - key - type: object - username: - description: The secret in the service monitor namespace that contains the username for authentication. - properties: - key: - description: The key of the secret to select from. Must be a valid secret key. - type: string - name: - description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?' - type: string - optional: - description: Specify whether the Secret or its key must be defined - type: boolean - required: - - key - type: object - type: object - bearerToken: - description: Bearer token for accessing apiserver. - type: string - bearerTokenFile: - description: File to read bearer token for accessing apiserver. - type: string - host: - description: Host of apiserver. A valid string consisting of a hostname or IP followed by an optional port number - type: string - tlsConfig: - description: TLS Config to use for accessing apiserver. - properties: - ca: - description: Struct containing the CA cert to use for the targets. - properties: - configMap: - description: ConfigMap containing data to use for the targets. - properties: - key: - description: The key to select. - type: string - name: - description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?' - type: string - optional: - description: Specify whether the ConfigMap or its key must be defined - type: boolean - required: - - key - type: object - secret: - description: Secret containing data to use for the targets. - properties: - key: - description: The key of the secret to select from. Must be a valid secret key. - type: string - name: - description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?' - type: string - optional: - description: Specify whether the Secret or its key must be defined - type: boolean - required: - - key - type: object - type: object - caFile: - description: Path to the CA cert in the Prometheus container to use for the targets. - type: string - cert: - description: Struct containing the client cert file for the targets. - properties: - configMap: - description: ConfigMap containing data to use for the targets. - properties: - key: - description: The key to select. - type: string - name: - description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?' - type: string - optional: - description: Specify whether the ConfigMap or its key must be defined - type: boolean - required: - - key - type: object - secret: - description: Secret containing data to use for the targets. - properties: - key: - description: The key of the secret to select from. Must be a valid secret key. - type: string - name: - description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?' - type: string - optional: - description: Specify whether the Secret or its key must be defined - type: boolean - required: - - key - type: object - type: object - certFile: - description: Path to the client cert file in the Prometheus container for the targets. - type: string - insecureSkipVerify: - description: Disable target certificate validation. - type: boolean - keyFile: - description: Path to the client key file in the Prometheus container for the targets. - type: string - keySecret: - description: Secret containing the client key file for the targets. - properties: - key: - description: The key of the secret to select from. Must be a valid secret key. - type: string - name: - description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?' - type: string - optional: - description: Specify whether the Secret or its key must be defined - type: boolean - required: - - key - type: object - serverName: - description: Used to verify the hostname for the targets. - type: string - type: object - required: - - host - type: object - arbitraryFSAccessThroughSMs: - description: ArbitraryFSAccessThroughSMs configures whether configuration based on a service monitor can access arbitrary files on the file system of the Prometheus container e.g. bearer token files. - properties: - deny: - type: boolean - type: object - baseImage: - description: 'Base image to use for a Prometheus deployment. Deprecated: use ''image'' instead' - type: string - configMaps: - description: ConfigMaps is a list of ConfigMaps in the same namespace as the Prometheus object, which shall be mounted into the Prometheus Pods. The ConfigMaps are mounted into /etc/prometheus/configmaps/. - items: - type: string - type: array - containers: - description: 'Containers allows injecting additional containers or modifying operator generated containers. This can be used to allow adding an authentication proxy to a Prometheus pod or to change the behavior of an operator generated container. Containers described here modify an operator generated container if they share the same name and modifications are done via a strategic merge patch. The current container names are: `prometheus`, `config-reloader`, and `thanos-sidecar`. Overriding containers is entirely outside the scope of what the maintainers will support and by doing so, you accept that this behaviour may break at any time without notice.' - items: - description: A single application container that you want to run within a pod. - properties: - args: - description: 'Arguments to the entrypoint. The docker image''s CMD is used if this is not provided. Variable references $(VAR_NAME) are expanded using the container''s environment. If a variable cannot be resolved, the reference in the input string will be unchanged. The $(VAR_NAME) syntax can be escaped with a double $$, ie: $$(VAR_NAME). Escaped references will never be expanded, regardless of whether the variable exists or not. Cannot be updated. More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell' - items: - type: string - type: array - command: - description: 'Entrypoint array. Not executed within a shell. The docker image''s ENTRYPOINT is used if this is not provided. Variable references $(VAR_NAME) are expanded using the container''s environment. If a variable cannot be resolved, the reference in the input string will be unchanged. The $(VAR_NAME) syntax can be escaped with a double $$, ie: $$(VAR_NAME). Escaped references will never be expanded, regardless of whether the variable exists or not. Cannot be updated. More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell' - items: - type: string - type: array - env: - description: List of environment variables to set in the container. Cannot be updated. - items: - description: EnvVar represents an environment variable present in a Container. - properties: - name: - description: Name of the environment variable. Must be a C_IDENTIFIER. - type: string - value: - description: 'Variable references $(VAR_NAME) are expanded using the previous defined environment variables in the container and any service environment variables. If a variable cannot be resolved, the reference in the input string will be unchanged. The $(VAR_NAME) syntax can be escaped with a double $$, ie: $$(VAR_NAME). Escaped references will never be expanded, regardless of whether the variable exists or not. Defaults to "".' - type: string - valueFrom: - description: Source for the environment variable's value. Cannot be used if value is not empty. - properties: - configMapKeyRef: - description: Selects a key of a ConfigMap. - properties: - key: - description: The key to select. - type: string - name: - description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?' - type: string - optional: - description: Specify whether the ConfigMap or its key must be defined - type: boolean - required: - - key - type: object - fieldRef: - description: 'Selects a field of the pod: supports metadata.name, metadata.namespace, metadata.labels, metadata.annotations, spec.nodeName, spec.serviceAccountName, status.hostIP, status.podIP, status.podIPs.' - properties: - apiVersion: - description: Version of the schema the FieldPath is written in terms of, defaults to "v1". - type: string - fieldPath: - description: Path of the field to select in the specified API version. - type: string - required: - - fieldPath - type: object - resourceFieldRef: - description: 'Selects a resource of the container: only resources limits and requests (limits.cpu, limits.memory, limits.ephemeral-storage, requests.cpu, requests.memory and requests.ephemeral-storage) are currently supported.' - properties: - containerName: - description: 'Container name: required for volumes, optional for env vars' - type: string - divisor: - anyOf: - - type: integer - - type: string - description: Specifies the output format of the exposed resources, defaults to "1" - pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ - x-kubernetes-int-or-string: true - resource: - description: 'Required: resource to select' - type: string - required: - - resource - type: object - secretKeyRef: - description: Selects a key of a secret in the pod's namespace - properties: - key: - description: The key of the secret to select from. Must be a valid secret key. - type: string - name: - description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?' - type: string - optional: - description: Specify whether the Secret or its key must be defined - type: boolean - required: - - key - type: object - type: object - required: - - name - type: object - type: array - envFrom: - description: List of sources to populate environment variables in the container. The keys defined within a source must be a C_IDENTIFIER. All invalid keys will be reported as an event when the container is starting. When a key exists in multiple sources, the value associated with the last source will take precedence. Values defined by an Env with a duplicate key will take precedence. Cannot be updated. - items: - description: EnvFromSource represents the source of a set of ConfigMaps - properties: - configMapRef: - description: The ConfigMap to select from - properties: - name: - description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?' - type: string - optional: - description: Specify whether the ConfigMap must be defined - type: boolean - type: object - prefix: - description: An optional identifier to prepend to each key in the ConfigMap. Must be a C_IDENTIFIER. - type: string - secretRef: - description: The Secret to select from - properties: - name: - description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?' - type: string - optional: - description: Specify whether the Secret must be defined - type: boolean - type: object - type: object - type: array - image: - description: 'Docker image name. More info: https://kubernetes.io/docs/concepts/containers/images This field is optional to allow higher level config management to default or override container images in workload controllers like Deployments and StatefulSets.' - type: string - imagePullPolicy: - description: 'Image pull policy. One of Always, Never, IfNotPresent. Defaults to Always if :latest tag is specified, or IfNotPresent otherwise. Cannot be updated. More info: https://kubernetes.io/docs/concepts/containers/images#updating-images' - type: string - lifecycle: - description: Actions that the management system should take in response to container lifecycle events. Cannot be updated. - properties: - postStart: - description: 'PostStart is called immediately after a container is created. If the handler fails, the container is terminated and restarted according to its restart policy. Other management of the container blocks until the hook completes. More info: https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks' - properties: - exec: - description: One and only one of the following should be specified. Exec specifies the action to take. - properties: - command: - description: Command is the command line to execute inside the container, the working directory for the command is root ('/') in the container's filesystem. The command is simply exec'd, it is not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use a shell, you need to explicitly call out to that shell. Exit status of 0 is treated as live/healthy and non-zero is unhealthy. - items: - type: string - type: array - type: object - httpGet: - description: HTTPGet specifies the http request to perform. - properties: - host: - description: Host name to connect to, defaults to the pod IP. You probably want to set "Host" in httpHeaders instead. - type: string - httpHeaders: - description: Custom headers to set in the request. HTTP allows repeated headers. - items: - description: HTTPHeader describes a custom header to be used in HTTP probes - properties: - name: - description: The header field name - type: string - value: - description: The header field value - type: string - required: - - name - - value - type: object - type: array - path: - description: Path to access on the HTTP server. - type: string - port: - anyOf: - - type: integer - - type: string - description: Name or number of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME. - x-kubernetes-int-or-string: true - scheme: - description: Scheme to use for connecting to the host. Defaults to HTTP. - type: string - required: - - port - type: object - tcpSocket: - description: 'TCPSocket specifies an action involving a TCP port. TCP hooks not yet supported TODO: implement a realistic TCP lifecycle hook' - properties: - host: - description: 'Optional: Host name to connect to, defaults to the pod IP.' - type: string - port: - anyOf: - - type: integer - - type: string - description: Number or name of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME. - x-kubernetes-int-or-string: true - required: - - port - type: object - type: object - preStop: - description: 'PreStop is called immediately before a container is terminated due to an API request or management event such as liveness/startup probe failure, preemption, resource contention, etc. The handler is not called if the container crashes or exits. The reason for termination is passed to the handler. The Pod''s termination grace period countdown begins before the PreStop hooked is executed. Regardless of the outcome of the handler, the container will eventually terminate within the Pod''s termination grace period. Other management of the container blocks until the hook completes or until the termination grace period is reached. More info: https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks' - properties: - exec: - description: One and only one of the following should be specified. Exec specifies the action to take. - properties: - command: - description: Command is the command line to execute inside the container, the working directory for the command is root ('/') in the container's filesystem. The command is simply exec'd, it is not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use a shell, you need to explicitly call out to that shell. Exit status of 0 is treated as live/healthy and non-zero is unhealthy. - items: - type: string - type: array - type: object - httpGet: - description: HTTPGet specifies the http request to perform. - properties: - host: - description: Host name to connect to, defaults to the pod IP. You probably want to set "Host" in httpHeaders instead. - type: string - httpHeaders: - description: Custom headers to set in the request. HTTP allows repeated headers. - items: - description: HTTPHeader describes a custom header to be used in HTTP probes - properties: - name: - description: The header field name - type: string - value: - description: The header field value - type: string - required: - - name - - value - type: object - type: array - path: - description: Path to access on the HTTP server. - type: string - port: - anyOf: - - type: integer - - type: string - description: Name or number of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME. - x-kubernetes-int-or-string: true - scheme: - description: Scheme to use for connecting to the host. Defaults to HTTP. - type: string - required: - - port - type: object - tcpSocket: - description: 'TCPSocket specifies an action involving a TCP port. TCP hooks not yet supported TODO: implement a realistic TCP lifecycle hook' - properties: - host: - description: 'Optional: Host name to connect to, defaults to the pod IP.' - type: string - port: - anyOf: - - type: integer - - type: string - description: Number or name of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME. - x-kubernetes-int-or-string: true - required: - - port - type: object - type: object - type: object - livenessProbe: - description: 'Periodic probe of container liveness. Container will be restarted if the probe fails. Cannot be updated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes' - properties: - exec: - description: One and only one of the following should be specified. Exec specifies the action to take. - properties: - command: - description: Command is the command line to execute inside the container, the working directory for the command is root ('/') in the container's filesystem. The command is simply exec'd, it is not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use a shell, you need to explicitly call out to that shell. Exit status of 0 is treated as live/healthy and non-zero is unhealthy. - items: - type: string - type: array - type: object - failureThreshold: - description: Minimum consecutive failures for the probe to be considered failed after having succeeded. Defaults to 3. Minimum value is 1. - format: int32 - type: integer - httpGet: - description: HTTPGet specifies the http request to perform. - properties: - host: - description: Host name to connect to, defaults to the pod IP. You probably want to set "Host" in httpHeaders instead. - type: string - httpHeaders: - description: Custom headers to set in the request. HTTP allows repeated headers. - items: - description: HTTPHeader describes a custom header to be used in HTTP probes - properties: - name: - description: The header field name - type: string - value: - description: The header field value - type: string - required: - - name - - value - type: object - type: array - path: - description: Path to access on the HTTP server. - type: string - port: - anyOf: - - type: integer - - type: string - description: Name or number of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME. - x-kubernetes-int-or-string: true - scheme: - description: Scheme to use for connecting to the host. Defaults to HTTP. - type: string - required: - - port - type: object - initialDelaySeconds: - description: 'Number of seconds after the container has started before liveness probes are initiated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes' - format: int32 - type: integer - periodSeconds: - description: How often (in seconds) to perform the probe. Default to 10 seconds. Minimum value is 1. - format: int32 - type: integer - successThreshold: - description: Minimum consecutive successes for the probe to be considered successful after having failed. Defaults to 1. Must be 1 for liveness and startup. Minimum value is 1. - format: int32 - type: integer - tcpSocket: - description: 'TCPSocket specifies an action involving a TCP port. TCP hooks not yet supported TODO: implement a realistic TCP lifecycle hook' - properties: - host: - description: 'Optional: Host name to connect to, defaults to the pod IP.' - type: string - port: - anyOf: - - type: integer - - type: string - description: Number or name of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME. - x-kubernetes-int-or-string: true - required: - - port - type: object - timeoutSeconds: - description: 'Number of seconds after which the probe times out. Defaults to 1 second. Minimum value is 1. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes' - format: int32 - type: integer - type: object - name: - description: Name of the container specified as a DNS_LABEL. Each container in a pod must have a unique name (DNS_LABEL). Cannot be updated. - type: string - ports: - description: List of ports to expose from the container. Exposing a port here gives the system additional information about the network connections a container uses, but is primarily informational. Not specifying a port here DOES NOT prevent that port from being exposed. Any port which is listening on the default "0.0.0.0" address inside a container will be accessible from the network. Cannot be updated. - items: - description: ContainerPort represents a network port in a single container. - properties: - containerPort: - description: Number of port to expose on the pod's IP address. This must be a valid port number, 0 < x < 65536. - format: int32 - type: integer - hostIP: - description: What host IP to bind the external port to. - type: string - hostPort: - description: Number of port to expose on the host. If specified, this must be a valid port number, 0 < x < 65536. If HostNetwork is specified, this must match ContainerPort. Most containers do not need this. - format: int32 - type: integer - name: - description: If specified, this must be an IANA_SVC_NAME and unique within the pod. Each named port in a pod must have a unique name. Name for the port that can be referred to by services. - type: string - protocol: - default: TCP - description: Protocol for port. Must be UDP, TCP, or SCTP. Defaults to "TCP". - type: string - required: - - containerPort - type: object - type: array - x-kubernetes-list-map-keys: - - containerPort - - protocol - x-kubernetes-list-type: map - readinessProbe: - description: 'Periodic probe of container service readiness. Container will be removed from service endpoints if the probe fails. Cannot be updated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes' - properties: - exec: - description: One and only one of the following should be specified. Exec specifies the action to take. - properties: - command: - description: Command is the command line to execute inside the container, the working directory for the command is root ('/') in the container's filesystem. The command is simply exec'd, it is not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use a shell, you need to explicitly call out to that shell. Exit status of 0 is treated as live/healthy and non-zero is unhealthy. - items: - type: string - type: array - type: object - failureThreshold: - description: Minimum consecutive failures for the probe to be considered failed after having succeeded. Defaults to 3. Minimum value is 1. - format: int32 - type: integer - httpGet: - description: HTTPGet specifies the http request to perform. - properties: - host: - description: Host name to connect to, defaults to the pod IP. You probably want to set "Host" in httpHeaders instead. - type: string - httpHeaders: - description: Custom headers to set in the request. HTTP allows repeated headers. - items: - description: HTTPHeader describes a custom header to be used in HTTP probes - properties: - name: - description: The header field name - type: string - value: - description: The header field value - type: string - required: - - name - - value - type: object - type: array - path: - description: Path to access on the HTTP server. - type: string - port: - anyOf: - - type: integer - - type: string - description: Name or number of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME. - x-kubernetes-int-or-string: true - scheme: - description: Scheme to use for connecting to the host. Defaults to HTTP. - type: string - required: - - port - type: object - initialDelaySeconds: - description: 'Number of seconds after the container has started before liveness probes are initiated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes' - format: int32 - type: integer - periodSeconds: - description: How often (in seconds) to perform the probe. Default to 10 seconds. Minimum value is 1. - format: int32 - type: integer - successThreshold: - description: Minimum consecutive successes for the probe to be considered successful after having failed. Defaults to 1. Must be 1 for liveness and startup. Minimum value is 1. - format: int32 - type: integer - tcpSocket: - description: 'TCPSocket specifies an action involving a TCP port. TCP hooks not yet supported TODO: implement a realistic TCP lifecycle hook' - properties: - host: - description: 'Optional: Host name to connect to, defaults to the pod IP.' - type: string - port: - anyOf: - - type: integer - - type: string - description: Number or name of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME. - x-kubernetes-int-or-string: true - required: - - port - type: object - timeoutSeconds: - description: 'Number of seconds after which the probe times out. Defaults to 1 second. Minimum value is 1. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes' - format: int32 - type: integer - type: object - resources: - description: 'Compute Resources required by this container. Cannot be updated. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/' - properties: - 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. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/' - 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. If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/' - type: object - type: object - securityContext: - description: 'Security options the pod should run with. More info: https://kubernetes.io/docs/concepts/policy/security-context/ More info: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/' - properties: - allowPrivilegeEscalation: - description: 'AllowPrivilegeEscalation controls whether a process can gain more privileges than its parent process. This bool directly controls if the no_new_privs flag will be set on the container process. AllowPrivilegeEscalation is true always when the container is: 1) run as Privileged 2) has CAP_SYS_ADMIN' - type: boolean - capabilities: - description: The capabilities to add/drop when running containers. Defaults to the default set of capabilities granted by the container runtime. - properties: - add: - description: Added capabilities - items: - description: Capability represent POSIX capabilities type - type: string - type: array - drop: - description: Removed capabilities - items: - description: Capability represent POSIX capabilities type - type: string - type: array - type: object - privileged: - description: Run container in privileged mode. Processes in privileged containers are essentially equivalent to root on the host. Defaults to false. - type: boolean - procMount: - description: procMount denotes the type of proc mount to use for the containers. The default is DefaultProcMount which uses the container runtime defaults for readonly paths and masked paths. This requires the ProcMountType feature flag to be enabled. - type: string - readOnlyRootFilesystem: - description: Whether this container has a read-only root filesystem. Default is false. - type: boolean - runAsGroup: - description: The GID to run the entrypoint of the container process. Uses runtime default if unset. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence. - format: int64 - type: integer - runAsNonRoot: - description: Indicates that the container must run as a non-root user. If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does. If unset or false, no such validation will be performed. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence. - type: boolean - runAsUser: - description: The UID to run the entrypoint of the container process. Defaults to user specified in image metadata if unspecified. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence. - format: int64 - type: integer - seLinuxOptions: - description: The SELinux context to be applied to the container. If unspecified, the container runtime will allocate a random SELinux context for each container. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence. - 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 - windowsOptions: - description: The Windows specific settings applied to all containers. If unspecified, the options from the PodSecurityContext will be used. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence. - properties: - gmsaCredentialSpec: - description: GMSACredentialSpec is where the GMSA admission webhook (https://github.com/kubernetes-sigs/windows-gmsa) inlines the contents of the GMSA credential spec named by the GMSACredentialSpecName field. - type: string - gmsaCredentialSpecName: - description: GMSACredentialSpecName is the name of the GMSA credential spec to use. - type: string - runAsUserName: - description: The UserName in Windows to run the entrypoint of the container process. Defaults to the user specified in image metadata if unspecified. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence. - type: string - type: object - type: object - startupProbe: - description: 'StartupProbe indicates that the Pod has successfully initialized. If specified, no other probes are executed until this completes successfully. If this probe fails, the Pod will be restarted, just as if the livenessProbe failed. This can be used to provide different probe parameters at the beginning of a Pod''s lifecycle, when it might take a long time to load data or warm a cache, than during steady-state operation. This cannot be updated. This is a beta feature enabled by the StartupProbe feature flag. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes' - properties: - exec: - description: One and only one of the following should be specified. Exec specifies the action to take. - properties: - command: - description: Command is the command line to execute inside the container, the working directory for the command is root ('/') in the container's filesystem. The command is simply exec'd, it is not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use a shell, you need to explicitly call out to that shell. Exit status of 0 is treated as live/healthy and non-zero is unhealthy. - items: - type: string - type: array - type: object - failureThreshold: - description: Minimum consecutive failures for the probe to be considered failed after having succeeded. Defaults to 3. Minimum value is 1. - format: int32 - type: integer - httpGet: - description: HTTPGet specifies the http request to perform. - properties: - host: - description: Host name to connect to, defaults to the pod IP. You probably want to set "Host" in httpHeaders instead. - type: string - httpHeaders: - description: Custom headers to set in the request. HTTP allows repeated headers. - items: - description: HTTPHeader describes a custom header to be used in HTTP probes - properties: - name: - description: The header field name - type: string - value: - description: The header field value - type: string - required: - - name - - value - type: object - type: array - path: - description: Path to access on the HTTP server. - type: string - port: - anyOf: - - type: integer - - type: string - description: Name or number of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME. - x-kubernetes-int-or-string: true - scheme: - description: Scheme to use for connecting to the host. Defaults to HTTP. - type: string - required: - - port - type: object - initialDelaySeconds: - description: 'Number of seconds after the container has started before liveness probes are initiated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes' - format: int32 - type: integer - periodSeconds: - description: How often (in seconds) to perform the probe. Default to 10 seconds. Minimum value is 1. - format: int32 - type: integer - successThreshold: - description: Minimum consecutive successes for the probe to be considered successful after having failed. Defaults to 1. Must be 1 for liveness and startup. Minimum value is 1. - format: int32 - type: integer - tcpSocket: - description: 'TCPSocket specifies an action involving a TCP port. TCP hooks not yet supported TODO: implement a realistic TCP lifecycle hook' - properties: - host: - description: 'Optional: Host name to connect to, defaults to the pod IP.' - type: string - port: - anyOf: - - type: integer - - type: string - description: Number or name of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME. - x-kubernetes-int-or-string: true - required: - - port - type: object - timeoutSeconds: - description: 'Number of seconds after which the probe times out. Defaults to 1 second. Minimum value is 1. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes' - format: int32 - type: integer - type: object - stdin: - description: Whether this container should allocate a buffer for stdin in the container runtime. If this is not set, reads from stdin in the container will always result in EOF. Default is false. - type: boolean - stdinOnce: - description: Whether the container runtime should close the stdin channel after it has been opened by a single attach. When stdin is true the stdin stream will remain open across multiple attach sessions. If stdinOnce is set to true, stdin is opened on container start, is empty until the first client attaches to stdin, and then remains open and accepts data until the client disconnects, at which time stdin is closed and remains closed until the container is restarted. If this flag is false, a container processes that reads from stdin will never receive an EOF. Default is false - type: boolean - terminationMessagePath: - description: 'Optional: Path at which the file to which the container''s termination message will be written is mounted into the container''s filesystem. Message written is intended to be brief final status, such as an assertion failure message. Will be truncated by the node if greater than 4096 bytes. The total message length across all containers will be limited to 12kb. Defaults to /dev/termination-log. Cannot be updated.' - type: string - terminationMessagePolicy: - description: Indicate how the termination message should be populated. File will use the contents of terminationMessagePath to populate the container status message on both success and failure. FallbackToLogsOnError will use the last chunk of container log output if the termination message file is empty and the container exited with an error. The log output is limited to 2048 bytes or 80 lines, whichever is smaller. Defaults to File. Cannot be updated. - type: string - tty: - description: Whether this container should allocate a TTY for itself, also requires 'stdin' to be true. Default is false. - type: boolean - volumeDevices: - description: volumeDevices is the list of block devices to be used by the container. - items: - description: volumeDevice describes a mapping of a raw block device within a container. - properties: - devicePath: - description: devicePath is the path inside of the container that the device will be mapped to. - type: string - name: - description: name must match the name of a persistentVolumeClaim in the pod - type: string - required: - - devicePath - - name - type: object - type: array - volumeMounts: - description: Pod volumes to mount into the container's filesystem. Cannot be updated. - items: - description: VolumeMount describes a mounting of a Volume within a container. - properties: - mountPath: - description: Path within the container at which the volume should be mounted. Must not contain ':'. - type: string - mountPropagation: - description: mountPropagation determines how mounts are propagated from the host to container and the other way around. When not set, MountPropagationNone is used. This field is beta in 1.10. - type: string - name: - description: This must match the Name of a Volume. - type: string - readOnly: - description: Mounted read-only if true, read-write otherwise (false or unspecified). Defaults to false. - type: boolean - subPath: - description: Path within the volume from which the container's volume should be mounted. Defaults to "" (volume's root). - type: string - subPathExpr: - description: Expanded path within the volume from which the container's volume should be mounted. Behaves similarly to SubPath but environment variable references $(VAR_NAME) are expanded using the container's environment. Defaults to "" (volume's root). SubPathExpr and SubPath are mutually exclusive. - type: string - required: - - mountPath - - name - type: object - type: array - workingDir: - description: Container's working directory. If not specified, the container runtime's default will be used, which might be configured in the container image. Cannot be updated. - type: string - required: - - name - type: object - type: array - disableCompaction: - description: Disable prometheus compaction. - type: boolean - enableAdminAPI: - description: 'Enable access to prometheus web admin API. Defaults to the value of `false`. WARNING: Enabling the admin APIs enables mutating endpoints, to delete data, shutdown Prometheus, and more. Enabling this should be done with care and the user is advised to add additional authentication authorization via a proxy to ensure only clients authorized to perform these actions can do so. For more information see https://prometheus.io/docs/prometheus/latest/querying/api/#tsdb-admin-apis' - type: boolean - enableFeatures: - description: Enable access to Prometheus disabled features. By default, no features are enabled. Enabling disabled features is entirely outside the scope of what the maintainers will support and by doing so, you accept that this behaviour may break at any time without notice. For more information see https://prometheus.io/docs/prometheus/latest/disabled_features/ - items: - type: string - type: array - enforcedNamespaceLabel: - description: EnforcedNamespaceLabel enforces adding a namespace label of origin for each alert and metric that is user created. The label value will always be the namespace of the object that is being created. - type: string - enforcedSampleLimit: - description: EnforcedSampleLimit defines global limit on number of scraped samples that will be accepted. This overrides any SampleLimit set per ServiceMonitor or/and PodMonitor. It is meant to be used by admins to enforce the SampleLimit to keep overall number of samples/series under the desired limit. Note that if SampleLimit is lower that value will be taken instead. - format: int64 - type: integer - enforcedTargetLimit: - description: EnforcedTargetLimit defines a global limit on the number of scraped targets. This overrides any TargetLimit set per ServiceMonitor or/and PodMonitor. It is meant to be used by admins to enforce the TargetLimit to keep overall number of targets under the desired limit. Note that if TargetLimit is higher that value will be taken instead. - format: int64 - type: integer - evaluationInterval: - description: Interval between consecutive evaluations. - type: string - externalLabels: - additionalProperties: - type: string - description: The labels to add to any time series or alerts when communicating with external systems (federation, remote storage, Alertmanager). - type: object - externalUrl: - description: The external URL the Prometheus instances will be available under. This is necessary to generate correct URLs. This is necessary if Prometheus is not served from root of a DNS name. - type: string - ignoreNamespaceSelectors: - description: IgnoreNamespaceSelectors if set to true will ignore NamespaceSelector settings from the podmonitor and servicemonitor configs, and they will only discover endpoints within their current namespace. Defaults to false. - type: boolean - image: - description: Image if specified has precedence over baseImage, tag and sha combinations. Specifying the version is still necessary to ensure the Prometheus Operator knows what version of Prometheus is being configured. - type: string - imagePullSecrets: - description: An optional list of references to secrets in the same namespace to use for pulling prometheus and alertmanager images from registries see http://kubernetes.io/docs/user-guide/images#specifying-imagepullsecrets-on-a-pod - items: - description: LocalObjectReference contains enough information to let you locate the referenced object inside the same namespace. - properties: - name: - description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?' - type: string - type: object - type: array - initContainers: - description: 'InitContainers allows adding initContainers to the pod definition. Those can be used to e.g. fetch secrets for injection into the Prometheus configuration from external sources. Any errors during the execution of an initContainer will lead to a restart of the Pod. More info: https://kubernetes.io/docs/concepts/workloads/pods/init-containers/ Using initContainers for any use case other then secret fetching is entirely outside the scope of what the maintainers will support and by doing so, you accept that this behaviour may break at any time without notice.' - items: - description: A single application container that you want to run within a pod. - properties: - args: - description: 'Arguments to the entrypoint. The docker image''s CMD is used if this is not provided. Variable references $(VAR_NAME) are expanded using the container''s environment. If a variable cannot be resolved, the reference in the input string will be unchanged. The $(VAR_NAME) syntax can be escaped with a double $$, ie: $$(VAR_NAME). Escaped references will never be expanded, regardless of whether the variable exists or not. Cannot be updated. More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell' - items: - type: string - type: array - command: - description: 'Entrypoint array. Not executed within a shell. The docker image''s ENTRYPOINT is used if this is not provided. Variable references $(VAR_NAME) are expanded using the container''s environment. If a variable cannot be resolved, the reference in the input string will be unchanged. The $(VAR_NAME) syntax can be escaped with a double $$, ie: $$(VAR_NAME). Escaped references will never be expanded, regardless of whether the variable exists or not. Cannot be updated. More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell' - items: - type: string - type: array - env: - description: List of environment variables to set in the container. Cannot be updated. - items: - description: EnvVar represents an environment variable present in a Container. - properties: - name: - description: Name of the environment variable. Must be a C_IDENTIFIER. - type: string - value: - description: 'Variable references $(VAR_NAME) are expanded using the previous defined environment variables in the container and any service environment variables. If a variable cannot be resolved, the reference in the input string will be unchanged. The $(VAR_NAME) syntax can be escaped with a double $$, ie: $$(VAR_NAME). Escaped references will never be expanded, regardless of whether the variable exists or not. Defaults to "".' - type: string - valueFrom: - description: Source for the environment variable's value. Cannot be used if value is not empty. - properties: - configMapKeyRef: - description: Selects a key of a ConfigMap. - properties: - key: - description: The key to select. - type: string - name: - description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?' - type: string - optional: - description: Specify whether the ConfigMap or its key must be defined - type: boolean - required: - - key - type: object - fieldRef: - description: 'Selects a field of the pod: supports metadata.name, metadata.namespace, metadata.labels, metadata.annotations, spec.nodeName, spec.serviceAccountName, status.hostIP, status.podIP, status.podIPs.' - properties: - apiVersion: - description: Version of the schema the FieldPath is written in terms of, defaults to "v1". - type: string - fieldPath: - description: Path of the field to select in the specified API version. - type: string - required: - - fieldPath - type: object - resourceFieldRef: - description: 'Selects a resource of the container: only resources limits and requests (limits.cpu, limits.memory, limits.ephemeral-storage, requests.cpu, requests.memory and requests.ephemeral-storage) are currently supported.' - properties: - containerName: - description: 'Container name: required for volumes, optional for env vars' - type: string - divisor: - anyOf: - - type: integer - - type: string - description: Specifies the output format of the exposed resources, defaults to "1" - pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ - x-kubernetes-int-or-string: true - resource: - description: 'Required: resource to select' - type: string - required: - - resource - type: object - secretKeyRef: - description: Selects a key of a secret in the pod's namespace - properties: - key: - description: The key of the secret to select from. Must be a valid secret key. - type: string - name: - description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?' - type: string - optional: - description: Specify whether the Secret or its key must be defined - type: boolean - required: - - key - type: object - type: object - required: - - name - type: object - type: array - envFrom: - description: List of sources to populate environment variables in the container. The keys defined within a source must be a C_IDENTIFIER. All invalid keys will be reported as an event when the container is starting. When a key exists in multiple sources, the value associated with the last source will take precedence. Values defined by an Env with a duplicate key will take precedence. Cannot be updated. - items: - description: EnvFromSource represents the source of a set of ConfigMaps - properties: - configMapRef: - description: The ConfigMap to select from - properties: - name: - description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?' - type: string - optional: - description: Specify whether the ConfigMap must be defined - type: boolean - type: object - prefix: - description: An optional identifier to prepend to each key in the ConfigMap. Must be a C_IDENTIFIER. - type: string - secretRef: - description: The Secret to select from - properties: - name: - description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?' - type: string - optional: - description: Specify whether the Secret must be defined - type: boolean - type: object - type: object - type: array - image: - description: 'Docker image name. More info: https://kubernetes.io/docs/concepts/containers/images This field is optional to allow higher level config management to default or override container images in workload controllers like Deployments and StatefulSets.' - type: string - imagePullPolicy: - description: 'Image pull policy. One of Always, Never, IfNotPresent. Defaults to Always if :latest tag is specified, or IfNotPresent otherwise. Cannot be updated. More info: https://kubernetes.io/docs/concepts/containers/images#updating-images' - type: string - lifecycle: - description: Actions that the management system should take in response to container lifecycle events. Cannot be updated. - properties: - postStart: - description: 'PostStart is called immediately after a container is created. If the handler fails, the container is terminated and restarted according to its restart policy. Other management of the container blocks until the hook completes. More info: https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks' - properties: - exec: - description: One and only one of the following should be specified. Exec specifies the action to take. - properties: - command: - description: Command is the command line to execute inside the container, the working directory for the command is root ('/') in the container's filesystem. The command is simply exec'd, it is not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use a shell, you need to explicitly call out to that shell. Exit status of 0 is treated as live/healthy and non-zero is unhealthy. - items: - type: string - type: array - type: object - httpGet: - description: HTTPGet specifies the http request to perform. - properties: - host: - description: Host name to connect to, defaults to the pod IP. You probably want to set "Host" in httpHeaders instead. - type: string - httpHeaders: - description: Custom headers to set in the request. HTTP allows repeated headers. - items: - description: HTTPHeader describes a custom header to be used in HTTP probes - properties: - name: - description: The header field name - type: string - value: - description: The header field value - type: string - required: - - name - - value - type: object - type: array - path: - description: Path to access on the HTTP server. - type: string - port: - anyOf: - - type: integer - - type: string - description: Name or number of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME. - x-kubernetes-int-or-string: true - scheme: - description: Scheme to use for connecting to the host. Defaults to HTTP. - type: string - required: - - port - type: object - tcpSocket: - description: 'TCPSocket specifies an action involving a TCP port. TCP hooks not yet supported TODO: implement a realistic TCP lifecycle hook' - properties: - host: - description: 'Optional: Host name to connect to, defaults to the pod IP.' - type: string - port: - anyOf: - - type: integer - - type: string - description: Number or name of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME. - x-kubernetes-int-or-string: true - required: - - port - type: object - type: object - preStop: - description: 'PreStop is called immediately before a container is terminated due to an API request or management event such as liveness/startup probe failure, preemption, resource contention, etc. The handler is not called if the container crashes or exits. The reason for termination is passed to the handler. The Pod''s termination grace period countdown begins before the PreStop hooked is executed. Regardless of the outcome of the handler, the container will eventually terminate within the Pod''s termination grace period. Other management of the container blocks until the hook completes or until the termination grace period is reached. More info: https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks' - properties: - exec: - description: One and only one of the following should be specified. Exec specifies the action to take. - properties: - command: - description: Command is the command line to execute inside the container, the working directory for the command is root ('/') in the container's filesystem. The command is simply exec'd, it is not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use a shell, you need to explicitly call out to that shell. Exit status of 0 is treated as live/healthy and non-zero is unhealthy. - items: - type: string - type: array - type: object - httpGet: - description: HTTPGet specifies the http request to perform. - properties: - host: - description: Host name to connect to, defaults to the pod IP. You probably want to set "Host" in httpHeaders instead. - type: string - httpHeaders: - description: Custom headers to set in the request. HTTP allows repeated headers. - items: - description: HTTPHeader describes a custom header to be used in HTTP probes - properties: - name: - description: The header field name - type: string - value: - description: The header field value - type: string - required: - - name - - value - type: object - type: array - path: - description: Path to access on the HTTP server. - type: string - port: - anyOf: - - type: integer - - type: string - description: Name or number of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME. - x-kubernetes-int-or-string: true - scheme: - description: Scheme to use for connecting to the host. Defaults to HTTP. - type: string - required: - - port - type: object - tcpSocket: - description: 'TCPSocket specifies an action involving a TCP port. TCP hooks not yet supported TODO: implement a realistic TCP lifecycle hook' - properties: - host: - description: 'Optional: Host name to connect to, defaults to the pod IP.' - type: string - port: - anyOf: - - type: integer - - type: string - description: Number or name of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME. - x-kubernetes-int-or-string: true - required: - - port - type: object - type: object - type: object - livenessProbe: - description: 'Periodic probe of container liveness. Container will be restarted if the probe fails. Cannot be updated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes' - properties: - exec: - description: One and only one of the following should be specified. Exec specifies the action to take. - properties: - command: - description: Command is the command line to execute inside the container, the working directory for the command is root ('/') in the container's filesystem. The command is simply exec'd, it is not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use a shell, you need to explicitly call out to that shell. Exit status of 0 is treated as live/healthy and non-zero is unhealthy. - items: - type: string - type: array - type: object - failureThreshold: - description: Minimum consecutive failures for the probe to be considered failed after having succeeded. Defaults to 3. Minimum value is 1. - format: int32 - type: integer - httpGet: - description: HTTPGet specifies the http request to perform. - properties: - host: - description: Host name to connect to, defaults to the pod IP. You probably want to set "Host" in httpHeaders instead. - type: string - httpHeaders: - description: Custom headers to set in the request. HTTP allows repeated headers. - items: - description: HTTPHeader describes a custom header to be used in HTTP probes - properties: - name: - description: The header field name - type: string - value: - description: The header field value - type: string - required: - - name - - value - type: object - type: array - path: - description: Path to access on the HTTP server. - type: string - port: - anyOf: - - type: integer - - type: string - description: Name or number of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME. - x-kubernetes-int-or-string: true - scheme: - description: Scheme to use for connecting to the host. Defaults to HTTP. - type: string - required: - - port - type: object - initialDelaySeconds: - description: 'Number of seconds after the container has started before liveness probes are initiated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes' - format: int32 - type: integer - periodSeconds: - description: How often (in seconds) to perform the probe. Default to 10 seconds. Minimum value is 1. - format: int32 - type: integer - successThreshold: - description: Minimum consecutive successes for the probe to be considered successful after having failed. Defaults to 1. Must be 1 for liveness and startup. Minimum value is 1. - format: int32 - type: integer - tcpSocket: - description: 'TCPSocket specifies an action involving a TCP port. TCP hooks not yet supported TODO: implement a realistic TCP lifecycle hook' - properties: - host: - description: 'Optional: Host name to connect to, defaults to the pod IP.' - type: string - port: - anyOf: - - type: integer - - type: string - description: Number or name of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME. - x-kubernetes-int-or-string: true - required: - - port - type: object - timeoutSeconds: - description: 'Number of seconds after which the probe times out. Defaults to 1 second. Minimum value is 1. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes' - format: int32 - type: integer - type: object - name: - description: Name of the container specified as a DNS_LABEL. Each container in a pod must have a unique name (DNS_LABEL). Cannot be updated. - type: string - ports: - description: List of ports to expose from the container. Exposing a port here gives the system additional information about the network connections a container uses, but is primarily informational. Not specifying a port here DOES NOT prevent that port from being exposed. Any port which is listening on the default "0.0.0.0" address inside a container will be accessible from the network. Cannot be updated. - items: - description: ContainerPort represents a network port in a single container. - properties: - containerPort: - description: Number of port to expose on the pod's IP address. This must be a valid port number, 0 < x < 65536. - format: int32 - type: integer - hostIP: - description: What host IP to bind the external port to. - type: string - hostPort: - description: Number of port to expose on the host. If specified, this must be a valid port number, 0 < x < 65536. If HostNetwork is specified, this must match ContainerPort. Most containers do not need this. - format: int32 - type: integer - name: - description: If specified, this must be an IANA_SVC_NAME and unique within the pod. Each named port in a pod must have a unique name. Name for the port that can be referred to by services. - type: string - protocol: - default: TCP - description: Protocol for port. Must be UDP, TCP, or SCTP. Defaults to "TCP". - type: string - required: - - containerPort - type: object - type: array - x-kubernetes-list-map-keys: - - containerPort - - protocol - x-kubernetes-list-type: map - readinessProbe: - description: 'Periodic probe of container service readiness. Container will be removed from service endpoints if the probe fails. Cannot be updated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes' - properties: - exec: - description: One and only one of the following should be specified. Exec specifies the action to take. - properties: - command: - description: Command is the command line to execute inside the container, the working directory for the command is root ('/') in the container's filesystem. The command is simply exec'd, it is not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use a shell, you need to explicitly call out to that shell. Exit status of 0 is treated as live/healthy and non-zero is unhealthy. - items: - type: string - type: array - type: object - failureThreshold: - description: Minimum consecutive failures for the probe to be considered failed after having succeeded. Defaults to 3. Minimum value is 1. - format: int32 - type: integer - httpGet: - description: HTTPGet specifies the http request to perform. - properties: - host: - description: Host name to connect to, defaults to the pod IP. You probably want to set "Host" in httpHeaders instead. - type: string - httpHeaders: - description: Custom headers to set in the request. HTTP allows repeated headers. - items: - description: HTTPHeader describes a custom header to be used in HTTP probes - properties: - name: - description: The header field name - type: string - value: - description: The header field value - type: string - required: - - name - - value - type: object - type: array - path: - description: Path to access on the HTTP server. - type: string - port: - anyOf: - - type: integer - - type: string - description: Name or number of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME. - x-kubernetes-int-or-string: true - scheme: - description: Scheme to use for connecting to the host. Defaults to HTTP. - type: string - required: - - port - type: object - initialDelaySeconds: - description: 'Number of seconds after the container has started before liveness probes are initiated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes' - format: int32 - type: integer - periodSeconds: - description: How often (in seconds) to perform the probe. Default to 10 seconds. Minimum value is 1. - format: int32 - type: integer - successThreshold: - description: Minimum consecutive successes for the probe to be considered successful after having failed. Defaults to 1. Must be 1 for liveness and startup. Minimum value is 1. - format: int32 - type: integer - tcpSocket: - description: 'TCPSocket specifies an action involving a TCP port. TCP hooks not yet supported TODO: implement a realistic TCP lifecycle hook' - properties: - host: - description: 'Optional: Host name to connect to, defaults to the pod IP.' - type: string - port: - anyOf: - - type: integer - - type: string - description: Number or name of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME. - x-kubernetes-int-or-string: true - required: - - port - type: object - timeoutSeconds: - description: 'Number of seconds after which the probe times out. Defaults to 1 second. Minimum value is 1. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes' - format: int32 - type: integer - type: object - resources: - description: 'Compute Resources required by this container. Cannot be updated. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/' - properties: - 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. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/' - 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. If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/' - type: object - type: object - securityContext: - description: 'Security options the pod should run with. More info: https://kubernetes.io/docs/concepts/policy/security-context/ More info: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/' - properties: - allowPrivilegeEscalation: - description: 'AllowPrivilegeEscalation controls whether a process can gain more privileges than its parent process. This bool directly controls if the no_new_privs flag will be set on the container process. AllowPrivilegeEscalation is true always when the container is: 1) run as Privileged 2) has CAP_SYS_ADMIN' - type: boolean - capabilities: - description: The capabilities to add/drop when running containers. Defaults to the default set of capabilities granted by the container runtime. - properties: - add: - description: Added capabilities - items: - description: Capability represent POSIX capabilities type - type: string - type: array - drop: - description: Removed capabilities - items: - description: Capability represent POSIX capabilities type - type: string - type: array - type: object - privileged: - description: Run container in privileged mode. Processes in privileged containers are essentially equivalent to root on the host. Defaults to false. - type: boolean - procMount: - description: procMount denotes the type of proc mount to use for the containers. The default is DefaultProcMount which uses the container runtime defaults for readonly paths and masked paths. This requires the ProcMountType feature flag to be enabled. - type: string - readOnlyRootFilesystem: - description: Whether this container has a read-only root filesystem. Default is false. - type: boolean - runAsGroup: - description: The GID to run the entrypoint of the container process. Uses runtime default if unset. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence. - format: int64 - type: integer - runAsNonRoot: - description: Indicates that the container must run as a non-root user. If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does. If unset or false, no such validation will be performed. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence. - type: boolean - runAsUser: - description: The UID to run the entrypoint of the container process. Defaults to user specified in image metadata if unspecified. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence. - format: int64 - type: integer - seLinuxOptions: - description: The SELinux context to be applied to the container. If unspecified, the container runtime will allocate a random SELinux context for each container. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence. - 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 - windowsOptions: - description: The Windows specific settings applied to all containers. If unspecified, the options from the PodSecurityContext will be used. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence. - properties: - gmsaCredentialSpec: - description: GMSACredentialSpec is where the GMSA admission webhook (https://github.com/kubernetes-sigs/windows-gmsa) inlines the contents of the GMSA credential spec named by the GMSACredentialSpecName field. - type: string - gmsaCredentialSpecName: - description: GMSACredentialSpecName is the name of the GMSA credential spec to use. - type: string - runAsUserName: - description: The UserName in Windows to run the entrypoint of the container process. Defaults to the user specified in image metadata if unspecified. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence. - type: string - type: object - type: object - startupProbe: - description: 'StartupProbe indicates that the Pod has successfully initialized. If specified, no other probes are executed until this completes successfully. If this probe fails, the Pod will be restarted, just as if the livenessProbe failed. This can be used to provide different probe parameters at the beginning of a Pod''s lifecycle, when it might take a long time to load data or warm a cache, than during steady-state operation. This cannot be updated. This is a beta feature enabled by the StartupProbe feature flag. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes' - properties: - exec: - description: One and only one of the following should be specified. Exec specifies the action to take. - properties: - command: - description: Command is the command line to execute inside the container, the working directory for the command is root ('/') in the container's filesystem. The command is simply exec'd, it is not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use a shell, you need to explicitly call out to that shell. Exit status of 0 is treated as live/healthy and non-zero is unhealthy. - items: - type: string - type: array - type: object - failureThreshold: - description: Minimum consecutive failures for the probe to be considered failed after having succeeded. Defaults to 3. Minimum value is 1. - format: int32 - type: integer - httpGet: - description: HTTPGet specifies the http request to perform. - properties: - host: - description: Host name to connect to, defaults to the pod IP. You probably want to set "Host" in httpHeaders instead. - type: string - httpHeaders: - description: Custom headers to set in the request. HTTP allows repeated headers. - items: - description: HTTPHeader describes a custom header to be used in HTTP probes - properties: - name: - description: The header field name - type: string - value: - description: The header field value - type: string - required: - - name - - value - type: object - type: array - path: - description: Path to access on the HTTP server. - type: string - port: - anyOf: - - type: integer - - type: string - description: Name or number of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME. - x-kubernetes-int-or-string: true - scheme: - description: Scheme to use for connecting to the host. Defaults to HTTP. - type: string - required: - - port - type: object - initialDelaySeconds: - description: 'Number of seconds after the container has started before liveness probes are initiated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes' - format: int32 - type: integer - periodSeconds: - description: How often (in seconds) to perform the probe. Default to 10 seconds. Minimum value is 1. - format: int32 - type: integer - successThreshold: - description: Minimum consecutive successes for the probe to be considered successful after having failed. Defaults to 1. Must be 1 for liveness and startup. Minimum value is 1. - format: int32 - type: integer - tcpSocket: - description: 'TCPSocket specifies an action involving a TCP port. TCP hooks not yet supported TODO: implement a realistic TCP lifecycle hook' - properties: - host: - description: 'Optional: Host name to connect to, defaults to the pod IP.' - type: string - port: - anyOf: - - type: integer - - type: string - description: Number or name of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME. - x-kubernetes-int-or-string: true - required: - - port - type: object - timeoutSeconds: - description: 'Number of seconds after which the probe times out. Defaults to 1 second. Minimum value is 1. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes' - format: int32 - type: integer - type: object - stdin: - description: Whether this container should allocate a buffer for stdin in the container runtime. If this is not set, reads from stdin in the container will always result in EOF. Default is false. - type: boolean - stdinOnce: - description: Whether the container runtime should close the stdin channel after it has been opened by a single attach. When stdin is true the stdin stream will remain open across multiple attach sessions. If stdinOnce is set to true, stdin is opened on container start, is empty until the first client attaches to stdin, and then remains open and accepts data until the client disconnects, at which time stdin is closed and remains closed until the container is restarted. If this flag is false, a container processes that reads from stdin will never receive an EOF. Default is false - type: boolean - terminationMessagePath: - description: 'Optional: Path at which the file to which the container''s termination message will be written is mounted into the container''s filesystem. Message written is intended to be brief final status, such as an assertion failure message. Will be truncated by the node if greater than 4096 bytes. The total message length across all containers will be limited to 12kb. Defaults to /dev/termination-log. Cannot be updated.' - type: string - terminationMessagePolicy: - description: Indicate how the termination message should be populated. File will use the contents of terminationMessagePath to populate the container status message on both success and failure. FallbackToLogsOnError will use the last chunk of container log output if the termination message file is empty and the container exited with an error. The log output is limited to 2048 bytes or 80 lines, whichever is smaller. Defaults to File. Cannot be updated. - type: string - tty: - description: Whether this container should allocate a TTY for itself, also requires 'stdin' to be true. Default is false. - type: boolean - volumeDevices: - description: volumeDevices is the list of block devices to be used by the container. - items: - description: volumeDevice describes a mapping of a raw block device within a container. - properties: - devicePath: - description: devicePath is the path inside of the container that the device will be mapped to. - type: string - name: - description: name must match the name of a persistentVolumeClaim in the pod - type: string - required: - - devicePath - - name - type: object - type: array - volumeMounts: - description: Pod volumes to mount into the container's filesystem. Cannot be updated. - items: - description: VolumeMount describes a mounting of a Volume within a container. - properties: - mountPath: - description: Path within the container at which the volume should be mounted. Must not contain ':'. - type: string - mountPropagation: - description: mountPropagation determines how mounts are propagated from the host to container and the other way around. When not set, MountPropagationNone is used. This field is beta in 1.10. - type: string - name: - description: This must match the Name of a Volume. - type: string - readOnly: - description: Mounted read-only if true, read-write otherwise (false or unspecified). Defaults to false. - type: boolean - subPath: - description: Path within the volume from which the container's volume should be mounted. Defaults to "" (volume's root). - type: string - subPathExpr: - description: Expanded path within the volume from which the container's volume should be mounted. Behaves similarly to SubPath but environment variable references $(VAR_NAME) are expanded using the container's environment. Defaults to "" (volume's root). SubPathExpr and SubPath are mutually exclusive. - type: string - required: - - mountPath - - name - type: object - type: array - workingDir: - description: Container's working directory. If not specified, the container runtime's default will be used, which might be configured in the container image. Cannot be updated. - type: string - required: - - name - type: object - type: array - listenLocal: - description: ListenLocal makes the Prometheus server listen on loopback, so that it does not bind against the Pod IP. - type: boolean - logFormat: - description: Log format for Prometheus to be configured with. - type: string - logLevel: - description: Log level for Prometheus to be configured with. - type: string - nodeSelector: - additionalProperties: - type: string - description: Define which Nodes the Pods are scheduled on. - type: object - overrideHonorLabels: - description: OverrideHonorLabels if set to true overrides all user configured honor_labels. If HonorLabels is set in ServiceMonitor or PodMonitor to true, this overrides honor_labels to false. - type: boolean - overrideHonorTimestamps: - description: OverrideHonorTimestamps allows to globally enforce honoring timestamps in all scrape configs. - type: boolean - paused: - description: When a Prometheus deployment is paused, no actions except for deletion will be performed on the underlying objects. - type: boolean - podMetadata: - description: PodMetadata configures Labels and Annotations which are propagated to the prometheus pods. - properties: - annotations: - additionalProperties: - type: string - description: 'Annotations is an unstructured key value map stored with a resource that may be set by external tools to store and retrieve arbitrary metadata. They are not queryable and should be preserved when modifying objects. More info: http://kubernetes.io/docs/user-guide/annotations' - type: object - labels: - additionalProperties: - type: string - description: 'Map of string keys and values that can be used to organize and categorize (scope and select) objects. May match selectors of replication controllers and services. More info: http://kubernetes.io/docs/user-guide/labels' - type: object - name: - description: 'Name must be unique within a namespace. Is required when creating resources, although some resources may allow a client to request the generation of an appropriate name automatically. Name is primarily intended for creation idempotence and configuration definition. Cannot be updated. More info: http://kubernetes.io/docs/user-guide/identifiers#names' - type: string - type: object - podMonitorNamespaceSelector: - description: Namespace's labels to match for PodMonitor discovery. If nil, only check own namespace. - 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 relates 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. Valid 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, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch. - items: - type: string - type: array - required: - - key - - operator - type: object - type: array - matchLabels: - additionalProperties: - type: string - description: matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed. - type: object - type: object - podMonitorSelector: - description: '*Experimental* PodMonitors to be selected for target discovery. *Deprecated:* if neither this nor serviceMonitorSelector are specified, configuration is unmanaged.' - 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 relates 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. Valid 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, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch. - items: - type: string - type: array - required: - - key - - operator - type: object - type: array - matchLabels: - additionalProperties: - type: string - description: matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed. - type: object - type: object - portName: - description: Port name used for the pods and governing service. This defaults to web - type: string - priorityClassName: - description: Priority class assigned to the Pods - type: string - probeNamespaceSelector: - description: '*Experimental* Namespaces to be selected for Probe discovery. If nil, only check own namespace.' - 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 relates 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. Valid 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, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch. - items: - type: string - type: array - required: - - key - - operator - type: object - type: array - matchLabels: - additionalProperties: - type: string - description: matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed. - type: object - type: object - probeSelector: - description: '*Experimental* Probes to be selected for target discovery.' - 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 relates 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. Valid 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, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch. - items: - type: string - type: array - required: - - key - - operator - type: object - type: array - matchLabels: - additionalProperties: - type: string - description: matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed. - type: object - type: object - prometheusExternalLabelName: - description: Name of Prometheus external label used to denote Prometheus instance name. Defaults to the value of `prometheus`. External label will _not_ be added when value is set to empty string (`""`). - type: string - prometheusRulesExcludedFromEnforce: - description: PrometheusRulesExcludedFromEnforce - list of prometheus rules to be excluded from enforcing of adding namespace labels. Works only if enforcedNamespaceLabel set to true. Make sure both ruleNamespace and ruleName are set for each pair - items: - description: PrometheusRuleExcludeConfig enables users to configure excluded PrometheusRule names and their namespaces to be ignored while enforcing namespace label for alerts and metrics. - properties: - ruleName: - description: RuleNamespace - name of excluded rule - type: string - ruleNamespace: - description: RuleNamespace - namespace of excluded rule - type: string - required: - - ruleName - - ruleNamespace - type: object - type: array - query: - description: QuerySpec defines the query command line flags when starting Prometheus. - properties: - lookbackDelta: - description: The delta difference allowed for retrieving metrics during expression evaluations. - type: string - maxConcurrency: - description: Number of concurrent queries that can be run at once. - format: int32 - type: integer - maxSamples: - description: Maximum number of samples a single query can load into memory. Note that queries will fail if they would load more samples than this into memory, so this also limits the number of samples a query can return. - format: int32 - type: integer - timeout: - description: Maximum time a query may take before being aborted. - type: string - type: object - queryLogFile: - description: QueryLogFile specifies the file to which PromQL queries are logged. Note that this location must be writable, and can be persisted using an attached volume. Alternatively, the location can be set to a stdout location such as `/dev/stdout` to log querie information to the default Prometheus log stream. This is only available in versions of Prometheus >= 2.16.0. For more details, see the Prometheus docs (https://prometheus.io/docs/guides/query-log/) - type: string - remoteRead: - description: If specified, the remote_read spec. This is an experimental feature, it may change in any upcoming release in a breaking way. - items: - description: RemoteReadSpec defines the remote_read configuration for prometheus. - properties: - basicAuth: - description: BasicAuth for the URL. - properties: - password: - description: The secret in the service monitor namespace that contains the password for authentication. - properties: - key: - description: The key of the secret to select from. Must be a valid secret key. - type: string - name: - description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?' - type: string - optional: - description: Specify whether the Secret or its key must be defined - type: boolean - required: - - key - type: object - username: - description: The secret in the service monitor namespace that contains the username for authentication. - properties: - key: - description: The key of the secret to select from. Must be a valid secret key. - type: string - name: - description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?' - type: string - optional: - description: Specify whether the Secret or its key must be defined - type: boolean - required: - - key - type: object - type: object - bearerToken: - description: Bearer token for remote read. - type: string - bearerTokenFile: - description: File to read bearer token for remote read. - type: string - name: - description: The name of the remote read queue, must be unique if specified. The name is used in metrics and logging in order to differentiate read configurations. Only valid in Prometheus versions 2.15.0 and newer. - type: string - proxyUrl: - description: Optional ProxyURL - type: string - readRecent: - description: Whether reads should be made for queries for time ranges that the local storage should have complete data for. - type: boolean - remoteTimeout: - description: Timeout for requests to the remote read endpoint. - type: string - requiredMatchers: - additionalProperties: - type: string - description: An optional list of equality matchers which have to be present in a selector to query the remote read endpoint. - type: object - tlsConfig: - description: TLS Config to use for remote read. - properties: - ca: - description: Struct containing the CA cert to use for the targets. - properties: - configMap: - description: ConfigMap containing data to use for the targets. - properties: - key: - description: The key to select. - type: string - name: - description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?' - type: string - optional: - description: Specify whether the ConfigMap or its key must be defined - type: boolean - required: - - key - type: object - secret: - description: Secret containing data to use for the targets. - properties: - key: - description: The key of the secret to select from. Must be a valid secret key. - type: string - name: - description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?' - type: string - optional: - description: Specify whether the Secret or its key must be defined - type: boolean - required: - - key - type: object - type: object - caFile: - description: Path to the CA cert in the Prometheus container to use for the targets. - type: string - cert: - description: Struct containing the client cert file for the targets. - properties: - configMap: - description: ConfigMap containing data to use for the targets. - properties: - key: - description: The key to select. - type: string - name: - description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?' - type: string - optional: - description: Specify whether the ConfigMap or its key must be defined - type: boolean - required: - - key - type: object - secret: - description: Secret containing data to use for the targets. - properties: - key: - description: The key of the secret to select from. Must be a valid secret key. - type: string - name: - description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?' - type: string - optional: - description: Specify whether the Secret or its key must be defined - type: boolean - required: - - key - type: object - type: object - certFile: - description: Path to the client cert file in the Prometheus container for the targets. - type: string - insecureSkipVerify: - description: Disable target certificate validation. - type: boolean - keyFile: - description: Path to the client key file in the Prometheus container for the targets. - type: string - keySecret: - description: Secret containing the client key file for the targets. - properties: - key: - description: The key of the secret to select from. Must be a valid secret key. - type: string - name: - description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?' - type: string - optional: - description: Specify whether the Secret or its key must be defined - type: boolean - required: - - key - type: object - serverName: - description: Used to verify the hostname for the targets. - type: string - type: object - url: - description: The URL of the endpoint to send samples to. - type: string - required: - - url - type: object - type: array - remoteWrite: - description: If specified, the remote_write spec. This is an experimental feature, it may change in any upcoming release in a breaking way. - items: - description: RemoteWriteSpec defines the remote_write configuration for prometheus. - properties: - basicAuth: - description: BasicAuth for the URL. - properties: - password: - description: The secret in the service monitor namespace that contains the password for authentication. - properties: - key: - description: The key of the secret to select from. Must be a valid secret key. - type: string - name: - description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?' - type: string - optional: - description: Specify whether the Secret or its key must be defined - type: boolean - required: - - key - type: object - username: - description: The secret in the service monitor namespace that contains the username for authentication. - properties: - key: - description: The key of the secret to select from. Must be a valid secret key. - type: string - name: - description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?' - type: string - optional: - description: Specify whether the Secret or its key must be defined - type: boolean - required: - - key - type: object - type: object - bearerToken: - description: Bearer token for remote write. - type: string - bearerTokenFile: - description: File to read bearer token for remote write. - type: string - headers: - additionalProperties: - type: string - description: Custom HTTP headers to be sent along with each remote write request. Be aware that headers that are set by Prometheus itself can't be overwritten. Only valid in Prometheus versions 2.25.0 and newer. - type: object - metadataConfig: - description: MetadataConfig configures the sending of series metadata to remote storage. - properties: - send: - description: Whether metric metadata is sent to remote storage or not. - type: boolean - sendInterval: - description: How frequently metric metadata is sent to remote storage. - type: string - type: object - name: - description: The name of the remote write queue, must be unique if specified. The name is used in metrics and logging in order to differentiate queues. Only valid in Prometheus versions 2.15.0 and newer. - type: string - proxyUrl: - description: Optional ProxyURL - type: string - queueConfig: - description: QueueConfig allows tuning of the remote write queue parameters. - properties: - batchSendDeadline: - description: BatchSendDeadline is the maximum time a sample will wait in buffer. - type: string - capacity: - description: Capacity is the number of samples to buffer per shard before we start dropping them. - type: integer - maxBackoff: - description: MaxBackoff is the maximum retry delay. - type: string - maxRetries: - description: MaxRetries is the maximum number of times to retry a batch on recoverable errors. - type: integer - maxSamplesPerSend: - description: MaxSamplesPerSend is the maximum number of samples per send. - type: integer - maxShards: - description: MaxShards is the maximum number of shards, i.e. amount of concurrency. - type: integer - minBackoff: - description: MinBackoff is the initial retry delay. Gets doubled for every retry. - type: string - minShards: - description: MinShards is the minimum number of shards, i.e. amount of concurrency. - type: integer - type: object - remoteTimeout: - description: Timeout for requests to the remote write endpoint. - type: string - tlsConfig: - description: TLS Config to use for remote write. - properties: - ca: - description: Struct containing the CA cert to use for the targets. - properties: - configMap: - description: ConfigMap containing data to use for the targets. - properties: - key: - description: The key to select. - type: string - name: - description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?' - type: string - optional: - description: Specify whether the ConfigMap or its key must be defined - type: boolean - required: - - key - type: object - secret: - description: Secret containing data to use for the targets. - properties: - key: - description: The key of the secret to select from. Must be a valid secret key. - type: string - name: - description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?' - type: string - optional: - description: Specify whether the Secret or its key must be defined - type: boolean - required: - - key - type: object - type: object - caFile: - description: Path to the CA cert in the Prometheus container to use for the targets. - type: string - cert: - description: Struct containing the client cert file for the targets. - properties: - configMap: - description: ConfigMap containing data to use for the targets. - properties: - key: - description: The key to select. - type: string - name: - description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?' - type: string - optional: - description: Specify whether the ConfigMap or its key must be defined - type: boolean - required: - - key - type: object - secret: - description: Secret containing data to use for the targets. - properties: - key: - description: The key of the secret to select from. Must be a valid secret key. - type: string - name: - description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?' - type: string - optional: - description: Specify whether the Secret or its key must be defined - type: boolean - required: - - key - type: object - type: object - certFile: - description: Path to the client cert file in the Prometheus container for the targets. - type: string - insecureSkipVerify: - description: Disable target certificate validation. - type: boolean - keyFile: - description: Path to the client key file in the Prometheus container for the targets. - type: string - keySecret: - description: Secret containing the client key file for the targets. - properties: - key: - description: The key of the secret to select from. Must be a valid secret key. - type: string - name: - description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?' - type: string - optional: - description: Specify whether the Secret or its key must be defined - type: boolean - required: - - key - type: object - serverName: - description: Used to verify the hostname for the targets. - type: string - type: object - url: - description: The URL of the endpoint to send samples to. - type: string - writeRelabelConfigs: - description: The list of remote write relabel configurations. - items: - description: 'RelabelConfig allows dynamic rewriting of the label set, being applied to samples before ingestion. It defines ``-section of Prometheus configuration. More info: https://prometheus.io/docs/prometheus/latest/configuration/configuration/#metric_relabel_configs' - properties: - action: - description: Action to perform based on regex matching. Default is 'replace' - type: string - modulus: - description: Modulus to take of the hash of the source label values. - format: int64 - type: integer - regex: - description: Regular expression against which the extracted value is matched. Default is '(.*)' - type: string - replacement: - description: Replacement value against which a regex replace is performed if the regular expression matches. Regex capture groups are available. Default is '$1' - type: string - separator: - description: Separator placed between concatenated source label values. default is ';'. - type: string - sourceLabels: - description: The source labels select values from existing labels. Their content is concatenated using the configured separator and matched against the configured regular expression for the replace, keep, and drop actions. - items: - type: string - type: array - targetLabel: - description: Label to which the resulting value is written in a replace action. It is mandatory for replace actions. Regex capture groups are available. - type: string - type: object - type: array - required: - - url - type: object - type: array - replicaExternalLabelName: - description: Name of Prometheus external label used to denote replica name. Defaults to the value of `prometheus_replica`. External label will _not_ be added when value is set to empty string (`""`). - type: string - replicas: - description: Number of replicas of each shard to deploy for a Prometheus deployment. Number of replicas multiplied by shards is the total number of Pods created. - format: int32 - type: integer - resources: - description: Define resources requests and limits for single Pods. - properties: - 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. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/' - 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. If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/' - type: object - type: object - retention: - description: Time duration Prometheus shall retain data for. Default is '24h', and must match the regular expression `[0-9]+(ms|s|m|h|d|w|y)` (milliseconds seconds minutes hours days weeks years). - type: string - retentionSize: - description: 'Maximum amount of disk space used by blocks. Supported units: B, KB, MB, GB, TB, PB, EB. Ex: `512MB`.' - type: string - routePrefix: - description: The route prefix Prometheus registers HTTP handlers for. This is useful, if using ExternalURL and a proxy is rewriting HTTP routes of a request, and the actual ExternalURL is still true, but the server serves requests under a different route prefix. For example for use with `kubectl proxy`. - type: string - ruleNamespaceSelector: - description: Namespaces to be selected for PrometheusRules discovery. If unspecified, only the same namespace as the Prometheus object is in is used. - 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 relates 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. Valid 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, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch. - items: - type: string - type: array - required: - - key - - operator - type: object - type: array - matchLabels: - additionalProperties: - type: string - description: matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed. - type: object - type: object - ruleSelector: - description: A selector to select which PrometheusRules to mount for loading alerting/recording rules from. Until (excluding) Prometheus Operator v0.24.0 Prometheus Operator will migrate any legacy rule ConfigMaps to PrometheusRule custom resources selected by RuleSelector. Make sure it does not match any config maps that you do not want to be migrated. - 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 relates 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. Valid 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, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch. - items: - type: string - type: array - required: - - key - - operator - type: object - type: array - matchLabels: - additionalProperties: - type: string - description: matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed. - type: object - type: object - rules: - description: /--rules.*/ command-line arguments. - properties: - alert: - description: /--rules.alert.*/ command-line arguments - properties: - forGracePeriod: - description: Minimum duration between alert and restored 'for' state. This is maintained only for alerts with configured 'for' time greater than grace period. - type: string - forOutageTolerance: - description: Max time to tolerate prometheus outage for restoring 'for' state of alert. - type: string - resendDelay: - description: Minimum amount of time to wait before resending an alert to Alertmanager. - type: string - type: object - type: object - scrapeInterval: - description: Interval between consecutive scrapes. - type: string - scrapeTimeout: - description: Number of seconds to wait for target to respond before erroring. - type: string - secrets: - description: Secrets is a list of Secrets in the same namespace as the Prometheus object, which shall be mounted into the Prometheus Pods. The Secrets are mounted into /etc/prometheus/secrets/. - items: - type: string - type: array - securityContext: - description: SecurityContext holds pod-level security attributes and common container settings. This defaults to the default PodSecurityContext. - properties: - fsGroup: - description: "A special supplemental group that applies to all containers in a pod. Some volume types allow the Kubelet to change the ownership of that volume to be owned by the pod: \n 1. The owning GID will be the FSGroup 2. The setgid bit is set (new files created in the volume will be owned by FSGroup) 3. The permission bits are OR'd with rw-rw---- \n If unset, the Kubelet will not modify the ownership and permissions of any volume." - format: int64 - type: integer - fsGroupChangePolicy: - description: 'fsGroupChangePolicy defines behavior of changing ownership and permission of the volume before being exposed inside Pod. This field will only apply to volume types which support fsGroup based ownership(and permissions). It will have no effect on ephemeral volume types such as: secret, configmaps and emptydir. Valid values are "OnRootMismatch" and "Always". If not specified defaults to "Always".' - type: string - runAsGroup: - description: The GID to run the entrypoint of the container process. Uses runtime default if unset. May also be set in SecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container. - format: int64 - type: integer - runAsNonRoot: - description: Indicates that the container must run as a non-root user. If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does. If unset or false, no such validation will be performed. May also be set in SecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence. - type: boolean - runAsUser: - description: The UID to run the entrypoint of the container process. Defaults to user specified in image metadata if unspecified. May also be set in SecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container. - format: int64 - type: integer - seLinuxOptions: - description: The SELinux context to be applied to all containers. If unspecified, the container runtime will allocate a random SELinux context for each container. May also be set in SecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container. - 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 - supplementalGroups: - description: A list of groups applied to the first process run in each container, in addition to the container's primary GID. If unspecified, no groups will be added to any container. - items: - format: int64 - type: integer - type: array - sysctls: - description: Sysctls hold a list of namespaced sysctls used for the pod. Pods with unsupported sysctls (by the container runtime) might fail to launch. - 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 - type: array - windowsOptions: - description: The Windows specific settings applied to all containers. If unspecified, the options within a container's SecurityContext will be used. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence. - properties: - gmsaCredentialSpec: - description: GMSACredentialSpec is where the GMSA admission webhook (https://github.com/kubernetes-sigs/windows-gmsa) inlines the contents of the GMSA credential spec named by the GMSACredentialSpecName field. - type: string - gmsaCredentialSpecName: - description: GMSACredentialSpecName is the name of the GMSA credential spec to use. - type: string - runAsUserName: - description: The UserName in Windows to run the entrypoint of the container process. Defaults to the user specified in image metadata if unspecified. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence. - type: string - type: object - type: object - serviceAccountName: - description: ServiceAccountName is the name of the ServiceAccount to use to run the Prometheus Pods. - type: string - serviceMonitorNamespaceSelector: - description: Namespace's labels to match for ServiceMonitor discovery. If nil, only check own namespace. - 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 relates 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. Valid 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, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch. - items: - type: string - type: array - required: - - key - - operator - type: object - type: array - matchLabels: - additionalProperties: - type: string - description: matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed. - type: object - type: object - serviceMonitorSelector: - description: ServiceMonitors to be selected for target discovery. *Deprecated:* if neither this nor podMonitorSelector are specified, configuration is unmanaged. - 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 relates 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. Valid 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, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch. - items: - type: string - type: array - required: - - key - - operator - type: object - type: array - matchLabels: - additionalProperties: - type: string - description: matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed. - type: object - type: object - sha: - description: 'SHA of Prometheus container image to be deployed. Defaults to the value of `version`. Similar to a tag, but the SHA explicitly deploys an immutable container image. Version and Tag are ignored if SHA is set. Deprecated: use ''image'' instead. The image digest can be specified as part of the image URL.' - type: string - shards: - description: 'EXPERIMENTAL: Number of shards to distribute targets onto. Number of replicas multiplied by shards is the total number of Pods created. Note that scaling down shards will not reshard data onto remaining instances, it must be manually moved. Increasing shards will not reshard data either but it will continue to be available from the same instances. To query globally use Thanos sidecar and Thanos querier or remote write data to a central location. Sharding is done on the content of the `__address__` target meta-label.' - format: int32 - type: integer - storage: - description: Storage spec to specify how storage shall be used. - properties: - disableMountSubPath: - description: 'Deprecated: subPath usage will be disabled by default in a future release, this option will become unnecessary. DisableMountSubPath allows to remove any subPath usage in volume mounts.' - type: boolean - emptyDir: - description: 'EmptyDirVolumeSource to be used by the Prometheus StatefulSets. If specified, used in place of any volumeClaimTemplate. More info: https://kubernetes.io/docs/concepts/storage/volumes/#emptydir' - properties: - medium: - description: 'What type of storage medium should back this directory. The default is "" which means to use the node''s default medium. Must be an empty string (default) or Memory. More info: https://kubernetes.io/docs/concepts/storage/volumes#emptydir' - type: string - sizeLimit: - anyOf: - - type: integer - - type: string - description: 'Total amount of local storage required for this EmptyDir volume. The size limit is also applicable for memory medium. The maximum usage on memory medium EmptyDir would be the minimum value between the SizeLimit specified here and the sum of memory limits of all containers in a pod. The default is nil which means that the limit is undefined. More info: http://kubernetes.io/docs/user-guide/volumes#emptydir' - pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ - x-kubernetes-int-or-string: true - type: object - volumeClaimTemplate: - description: A PVC spec to be used by the Prometheus StatefulSets. - properties: - apiVersion: - description: 'APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More 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. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds' - type: string - metadata: - description: EmbeddedMetadata contains metadata relevant to an EmbeddedResource. - properties: - annotations: - additionalProperties: - type: string - description: 'Annotations is an unstructured key value map stored with a resource that may be set by external tools to store and retrieve arbitrary metadata. They are not queryable and should be preserved when modifying objects. More info: http://kubernetes.io/docs/user-guide/annotations' - type: object - labels: - additionalProperties: - type: string - description: 'Map of string keys and values that can be used to organize and categorize (scope and select) objects. May match selectors of replication controllers and services. More info: http://kubernetes.io/docs/user-guide/labels' - type: object - name: - description: 'Name must be unique within a namespace. Is required when creating resources, although some resources may allow a client to request the generation of an appropriate name automatically. Name is primarily intended for creation idempotence and configuration definition. Cannot be updated. More info: http://kubernetes.io/docs/user-guide/identifiers#names' - type: string - type: object - spec: - description: 'Spec defines the desired characteristics of a volume requested by a pod author. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims' - properties: - accessModes: - description: 'AccessModes contains the desired access modes the volume should have. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#access-modes-1' - items: - type: string - type: array - dataSource: - description: 'This field can be used to specify either: * An existing VolumeSnapshot object (snapshot.storage.k8s.io/VolumeSnapshot - Beta) * An existing PVC (PersistentVolumeClaim) * An existing custom resource/object that implements data population (Alpha) In order to use VolumeSnapshot object types, the appropriate feature gate must be enabled (VolumeSnapshotDataSource or AnyVolumeDataSource) If the provisioner or an external controller can support the specified data source, it will create a new volume based on the contents of the specified data source. If the specified data source is not supported, the volume will not be created and the failure will be reported as an event. In the future, we plan to support more data source types and the behavior of the provisioner may change.' - properties: - apiGroup: - description: APIGroup is the group for the resource being referenced. If APIGroup is not specified, the specified Kind must be in the core API group. For any other third-party types, APIGroup is required. - type: string - kind: - description: Kind is the type of resource being referenced - type: string - name: - description: Name is the name of resource being referenced - type: string - required: - - kind - - name - type: object - resources: - description: 'Resources represents the minimum resources the volume should have. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#resources' - properties: - 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. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/' - 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. If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/' - type: object - type: object - selector: - description: A label query over volumes to consider for binding. - 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 relates 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. Valid 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, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch. - items: - type: string - type: array - required: - - key - - operator - type: object - type: array - matchLabels: - additionalProperties: - type: string - description: matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed. - type: object - type: object - storageClassName: - description: 'Name of the StorageClass required by the claim. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#class-1' - type: string - volumeMode: - description: volumeMode defines what type of volume is required by the claim. Value of Filesystem is implied when not included in claim spec. - type: string - volumeName: - description: VolumeName is the binding reference to the PersistentVolume backing this claim. - type: string - type: object - status: - description: 'Status represents the current information/status of a persistent volume claim. Read-only. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims' - properties: - accessModes: - description: 'AccessModes contains the actual access modes the volume backing the PVC has. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#access-modes-1' - items: - type: string - type: array - capacity: - 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: Represents the actual resources of the underlying volume. - type: object - conditions: - description: Current Condition of persistent volume claim. If underlying persistent volume is being resized then the Condition will be set to 'ResizeStarted'. - items: - description: PersistentVolumeClaimCondition contails details about state of pvc - properties: - lastProbeTime: - description: Last time we probed the condition. - format: date-time - type: string - lastTransitionTime: - description: Last time the condition transitioned from one status to another. - format: date-time - type: string - message: - description: Human-readable message indicating details about last transition. - type: string - reason: - description: Unique, this should be a short, machine understandable string that gives the reason for condition's last transition. If it reports "ResizeStarted" that means the underlying persistent volume is being resized. - type: string - status: - type: string - type: - description: PersistentVolumeClaimConditionType is a valid value of PersistentVolumeClaimCondition.Type - type: string - required: - - status - - type - type: object - type: array - phase: - description: Phase represents the current phase of PersistentVolumeClaim. - type: string - type: object - type: object - type: object - tag: - description: 'Tag of Prometheus container image to be deployed. Defaults to the value of `version`. Version is ignored if Tag is set. Deprecated: use ''image'' instead. The image tag can be specified as part of the image URL.' - type: string - thanos: - description: "Thanos configuration allows configuring various aspects of a Prometheus server in a Thanos environment. \n This section is experimental, it may change significantly without deprecation notice in any release. \n This is experimental and may change significantly without backward compatibility in any release." - properties: - baseImage: - description: 'Thanos base image if other than default. Deprecated: use ''image'' instead' - type: string - grpcServerTlsConfig: - description: 'GRPCServerTLSConfig configures the gRPC server from which Thanos Querier reads recorded rule data. Note: Currently only the CAFile, CertFile, and KeyFile fields are supported. Maps to the ''--grpc-server-tls-*'' CLI args.' - properties: - ca: - description: Struct containing the CA cert to use for the targets. - properties: - configMap: - description: ConfigMap containing data to use for the targets. - properties: - key: - description: The key to select. - type: string - name: - description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?' - type: string - optional: - description: Specify whether the ConfigMap or its key must be defined - type: boolean - required: - - key - type: object - secret: - description: Secret containing data to use for the targets. - properties: - key: - description: The key of the secret to select from. Must be a valid secret key. - type: string - name: - description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?' - type: string - optional: - description: Specify whether the Secret or its key must be defined - type: boolean - required: - - key - type: object - type: object - caFile: - description: Path to the CA cert in the Prometheus container to use for the targets. - type: string - cert: - description: Struct containing the client cert file for the targets. - properties: - configMap: - description: ConfigMap containing data to use for the targets. - properties: - key: - description: The key to select. - type: string - name: - description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?' - type: string - optional: - description: Specify whether the ConfigMap or its key must be defined - type: boolean - required: - - key - type: object - secret: - description: Secret containing data to use for the targets. - properties: - key: - description: The key of the secret to select from. Must be a valid secret key. - type: string - name: - description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?' - type: string - optional: - description: Specify whether the Secret or its key must be defined - type: boolean - required: - - key - type: object - type: object - certFile: - description: Path to the client cert file in the Prometheus container for the targets. - type: string - insecureSkipVerify: - description: Disable target certificate validation. - type: boolean - keyFile: - description: Path to the client key file in the Prometheus container for the targets. - type: string - keySecret: - description: Secret containing the client key file for the targets. - properties: - key: - description: The key of the secret to select from. Must be a valid secret key. - type: string - name: - description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?' - type: string - optional: - description: Specify whether the Secret or its key must be defined - type: boolean - required: - - key - type: object - serverName: - description: Used to verify the hostname for the targets. - type: string - type: object - image: - description: Image if specified has precedence over baseImage, tag and sha combinations. Specifying the version is still necessary to ensure the Prometheus Operator knows what version of Thanos is being configured. - type: string - listenLocal: - description: ListenLocal makes the Thanos sidecar listen on loopback, so that it does not bind against the Pod IP. - type: boolean - logFormat: - description: LogFormat for Thanos sidecar to be configured with. - type: string - logLevel: - description: LogLevel for Thanos sidecar to be configured with. - type: string - minTime: - description: MinTime for Thanos sidecar to be configured with. Option can be a constant time in RFC3339 format or time duration relative to current time, such as -1d or 2h45m. Valid duration units are ms, s, m, h, d, w, y. - type: string - objectStorageConfig: - description: ObjectStorageConfig configures object storage in Thanos. Alternative to ObjectStorageConfigFile, and lower order priority. - properties: - key: - description: The key of the secret to select from. Must be a valid secret key. - type: string - name: - description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?' - type: string - optional: - description: Specify whether the Secret or its key must be defined - type: boolean - required: - - key - type: object - objectStorageConfigFile: - description: ObjectStorageConfigFile specifies the path of the object storage configuration file. When used alongside with ObjectStorageConfig, ObjectStorageConfigFile takes precedence. - type: string - resources: - description: Resources defines the resource requirements for the Thanos sidecar. If not provided, no requests/limits will be set - properties: - 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. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/' - 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. If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/' - type: object - type: object - sha: - description: 'SHA of Thanos container image to be deployed. Defaults to the value of `version`. Similar to a tag, but the SHA explicitly deploys an immutable container image. Version and Tag are ignored if SHA is set. Deprecated: use ''image'' instead. The image digest can be specified as part of the image URL.' - type: string - tag: - description: 'Tag of Thanos sidecar container image to be deployed. Defaults to the value of `version`. Version is ignored if Tag is set. Deprecated: use ''image'' instead. The image tag can be specified as part of the image URL.' - type: string - tracingConfig: - description: TracingConfig configures tracing in Thanos. This is an experimental feature, it may change in any upcoming release in a breaking way. - properties: - key: - description: The key of the secret to select from. Must be a valid secret key. - type: string - name: - description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?' - type: string - optional: - description: Specify whether the Secret or its key must be defined - type: boolean - required: - - key - type: object - tracingConfigFile: - description: TracingConfig specifies the path of the tracing configuration file. When used alongside with TracingConfig, TracingConfigFile takes precedence. - type: string - version: - description: Version describes the version of Thanos to use. - type: string - type: object - tolerations: - description: If specified, the pod's tolerations. - items: - description: The pod this Toleration is attached to tolerates any taint that matches the triple using the matching operator . - properties: - effect: - description: Effect indicates the taint effect to match. Empty means match all taint effects. When 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. If 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. Valid operators are Exists and Equal. Defaults to Equal. Exists is equivalent to wildcard for value, so that a pod can tolerate all taints of a particular category. - type: string - tolerationSeconds: - description: TolerationSeconds represents the period of time the toleration (which must be of effect NoExecute, otherwise this field is ignored) tolerates the taint. By default, it is not set, which means tolerate the taint forever (do not evict). Zero and negative values will be treated as 0 (evict immediately) by the system. - format: int64 - type: integer - value: - description: Value is the taint value the toleration matches to. If the operator is Exists, the value should be empty, otherwise just a regular string. - type: string - type: object - type: array - topologySpreadConstraints: - description: If specified, the pod's topology spread constraints. - items: - description: TopologySpreadConstraint specifies how to spread matching pods among the given topology. - properties: - labelSelector: - description: LabelSelector is used to find matching pods. Pods that match this label selector are counted to determine the number of pods in their corresponding topology domain. - 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 relates 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. Valid 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, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch. - items: - type: string - type: array - required: - - key - - operator - type: object - type: array - matchLabels: - additionalProperties: - type: string - description: matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed. - type: object - type: object - maxSkew: - description: 'MaxSkew describes the degree to which pods may be unevenly distributed. It''s the maximum permitted difference between the number of matching pods in any two topology domains of a given topology type. For example, in a 3-zone cluster, MaxSkew is set to 1, and pods with the same labelSelector spread as 1/1/0: | zone1 | zone2 | zone3 | | P | P | | - if MaxSkew is 1, incoming pod can only be scheduled to zone3 to become 1/1/1; scheduling it onto zone1(zone2) would make the ActualSkew(2-0) on zone1(zone2) violate MaxSkew(1). - if MaxSkew is 2, incoming pod can be scheduled onto any zone. It''s a required field. Default value is 1 and 0 is not allowed.' - format: int32 - type: integer - topologyKey: - description: TopologyKey is the key of node labels. Nodes that have a label with this key and identical values are considered to be in the same topology. We consider each as a "bucket", and try to put balanced number of pods into each bucket. It's a required field. - type: string - whenUnsatisfiable: - description: 'WhenUnsatisfiable indicates how to deal with a pod if it doesn''t satisfy the spread constraint. - DoNotSchedule (default) tells the scheduler not to schedule it - ScheduleAnyway tells the scheduler to still schedule it It''s considered as "Unsatisfiable" if and only if placing incoming pod on any topology violates "MaxSkew". For example, in a 3-zone cluster, MaxSkew is set to 1, and pods with the same labelSelector spread as 3/1/1: | zone1 | zone2 | zone3 | | P P P | P | P | If WhenUnsatisfiable is set to DoNotSchedule, incoming pod can only be scheduled to zone2(zone3) to become 3/2/1(3/1/2) as ActualSkew(2-1) on zone2(zone3) satisfies MaxSkew(1). In other words, the cluster can still be imbalanced, but scheduler won''t make it *more* imbalanced. It''s a required field.' - type: string - required: - - maxSkew - - topologyKey - - whenUnsatisfiable - type: object - type: array - version: - description: Version of Prometheus to be deployed. - type: string - volumeMounts: - description: VolumeMounts allows configuration of additional VolumeMounts on the output StatefulSet definition. VolumeMounts specified will be appended to other VolumeMounts in the prometheus container, that are generated as a result of StorageSpec objects. - items: - description: VolumeMount describes a mounting of a Volume within a container. - properties: - mountPath: - description: Path within the container at which the volume should be mounted. Must not contain ':'. - type: string - mountPropagation: - description: mountPropagation determines how mounts are propagated from the host to container and the other way around. When not set, MountPropagationNone is used. This field is beta in 1.10. - type: string - name: - description: This must match the Name of a Volume. - type: string - readOnly: - description: Mounted read-only if true, read-write otherwise (false or unspecified). Defaults to false. - type: boolean - subPath: - description: Path within the volume from which the container's volume should be mounted. Defaults to "" (volume's root). - type: string - subPathExpr: - description: Expanded path within the volume from which the container's volume should be mounted. Behaves similarly to SubPath but environment variable references $(VAR_NAME) are expanded using the container's environment. Defaults to "" (volume's root). SubPathExpr and SubPath are mutually exclusive. - type: string - required: - - mountPath - - name - type: object - type: array - volumes: - description: Volumes allows configuration of additional volumes on the output StatefulSet definition. Volumes specified will be appended to other volumes that are generated as a result of StorageSpec objects. - items: - description: Volume represents a named volume in a pod that may be accessed by any container in the pod. - properties: - awsElasticBlockStore: - description: 'AWSElasticBlockStore represents an AWS Disk resource that is attached to a kubelet''s host machine and then exposed to the pod. More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore' - properties: - fsType: - description: 'Filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore TODO: how do we prevent errors in the filesystem from compromising the machine' - type: string - partition: - description: 'The partition in the volume that you want to mount. If omitted, the default is to mount by volume name. Examples: For volume /dev/sda1, you specify the partition as "1". Similarly, the volume partition for /dev/sda is "0" (or you can leave the property empty).' - format: int32 - type: integer - readOnly: - description: 'Specify "true" to force and set the ReadOnly property in VolumeMounts to "true". If omitted, the default is "false". More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore' - type: boolean - volumeID: - description: 'Unique ID of the persistent disk resource in AWS (Amazon EBS volume). More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore' - type: string - required: - - volumeID - type: object - azureDisk: - description: AzureDisk represents an Azure Data Disk mount on the host and bind mount to the pod. - properties: - cachingMode: - description: 'Host Caching mode: None, Read Only, Read Write.' - type: string - diskName: - description: The Name of the data disk in the blob storage - type: string - diskURI: - description: The URI the data disk in the blob storage - type: string - fsType: - description: Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. - type: string - kind: - description: 'Expected values Shared: multiple blob disks per storage account Dedicated: single blob disk per storage account Managed: azure managed data disk (only in managed availability set). defaults to shared' - type: string - readOnly: - description: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. - type: boolean - required: - - diskName - - diskURI - type: object - azureFile: - description: AzureFile represents an Azure File Service mount on the host and bind mount to the pod. - properties: - readOnly: - description: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. - type: boolean - secretName: - description: the name of secret that contains Azure Storage Account Name and Key - type: string - shareName: - description: Share Name - type: string - required: - - secretName - - shareName - type: object - cephfs: - description: CephFS represents a Ceph FS mount on the host that shares a pod's lifetime - properties: - monitors: - description: 'Required: Monitors is a collection of Ceph monitors More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it' - items: - type: string - type: array - path: - description: 'Optional: Used as the mounted root, rather than the full Ceph tree, default is /' - type: string - readOnly: - description: 'Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it' - type: boolean - secretFile: - description: 'Optional: SecretFile is the path to key ring for User, default is /etc/ceph/user.secret More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it' - type: string - secretRef: - description: 'Optional: SecretRef is reference to the authentication secret for User, default is empty. More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it' - properties: - name: - description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?' - type: string - type: object - user: - description: 'Optional: User is the rados user name, default is admin More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it' - type: string - required: - - monitors - type: object - cinder: - description: 'Cinder represents a cinder volume attached and mounted on kubelets host machine. More info: https://examples.k8s.io/mysql-cinder-pd/README.md' - properties: - fsType: - description: 'Filesystem type to mount. Must be a filesystem type supported by the host operating system. Examples: "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. More info: https://examples.k8s.io/mysql-cinder-pd/README.md' - type: string - readOnly: - description: 'Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. More info: https://examples.k8s.io/mysql-cinder-pd/README.md' - type: boolean - secretRef: - description: 'Optional: points to a secret object containing parameters used to connect to OpenStack.' - properties: - name: - description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?' - type: string - type: object - volumeID: - description: 'volume id used to identify the volume in cinder. More info: https://examples.k8s.io/mysql-cinder-pd/README.md' - type: string - required: - - volumeID - type: object - configMap: - description: ConfigMap represents a configMap that should populate this volume - properties: - defaultMode: - description: 'Optional: mode bits to use on created files by default. Must be a value between 0 and 0777. Defaults to 0644. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.' - format: int32 - type: integer - items: - description: If unspecified, each key-value pair in the Data field of the referenced ConfigMap will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the ConfigMap, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the '..' path or start with '..'. - items: - description: Maps a string key to a path within a volume. - properties: - key: - description: The key to project. - type: string - mode: - description: 'Optional: mode bits to use on this file, must be a value between 0 and 0777. If not specified, the volume defaultMode will be used. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.' - format: int32 - type: integer - path: - description: The relative path of the file to map the key to. May not be an absolute path. May not contain the path element '..'. May not start with the string '..'. - type: string - required: - - key - - path - type: object - type: array - name: - description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?' - type: string - optional: - description: Specify whether the ConfigMap or its keys must be defined - type: boolean - type: object - csi: - description: CSI (Container Storage Interface) represents storage that is handled by an external CSI driver (Alpha feature). - properties: - driver: - description: Driver is the name of the CSI driver that handles this volume. Consult with your admin for the correct name as registered in the cluster. - type: string - fsType: - description: Filesystem type to mount. Ex. "ext4", "xfs", "ntfs". If not provided, the empty value is passed to the associated CSI driver which will determine the default filesystem to apply. - type: string - nodePublishSecretRef: - description: NodePublishSecretRef is a reference to the secret object containing sensitive information to pass to the CSI driver to complete the CSI NodePublishVolume and NodeUnpublishVolume calls. This field is optional, and may be empty if no secret is required. If the secret object contains more than one secret, all secret references are passed. - properties: - name: - description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?' - type: string - type: object - readOnly: - description: Specifies a read-only configuration for the volume. Defaults to false (read/write). - type: boolean - volumeAttributes: - additionalProperties: - type: string - description: VolumeAttributes stores driver-specific properties that are passed to the CSI driver. Consult your driver's documentation for supported values. - type: object - required: - - driver - type: object - downwardAPI: - description: DownwardAPI represents downward API about the pod that should populate this volume - properties: - defaultMode: - description: 'Optional: mode bits to use on created files by default. Must be a value between 0 and 0777. Defaults to 0644. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.' - format: int32 - type: integer - items: - description: Items is a list of downward API volume file - items: - description: DownwardAPIVolumeFile represents information to create the file containing the pod field - properties: - fieldRef: - description: 'Required: Selects a field of the pod: only annotations, labels, name and namespace are supported.' - properties: - apiVersion: - description: Version of the schema the FieldPath is written in terms of, defaults to "v1". - type: string - fieldPath: - description: Path of the field to select in the specified API version. - type: string - required: - - fieldPath - type: object - mode: - description: 'Optional: mode bits to use on this file, must be a value between 0 and 0777. If not specified, the volume defaultMode will be used. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.' - format: int32 - type: integer - path: - description: 'Required: Path is the relative path name of the file to be created. Must not be absolute or contain the ''..'' path. Must be utf-8 encoded. The first item of the relative path must not start with ''..''' - type: string - resourceFieldRef: - description: 'Selects a resource of the container: only resources limits and requests (limits.cpu, limits.memory, requests.cpu and requests.memory) are currently supported.' - properties: - containerName: - description: 'Container name: required for volumes, optional for env vars' - type: string - divisor: - anyOf: - - type: integer - - type: string - description: Specifies the output format of the exposed resources, defaults to "1" - pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ - x-kubernetes-int-or-string: true - resource: - description: 'Required: resource to select' - type: string - required: - - resource - type: object - required: - - path - type: object - type: array - type: object - emptyDir: - description: 'EmptyDir represents a temporary directory that shares a pod''s lifetime. More info: https://kubernetes.io/docs/concepts/storage/volumes#emptydir' - properties: - medium: - description: 'What type of storage medium should back this directory. The default is "" which means to use the node''s default medium. Must be an empty string (default) or Memory. More info: https://kubernetes.io/docs/concepts/storage/volumes#emptydir' - type: string - sizeLimit: - anyOf: - - type: integer - - type: string - description: 'Total amount of local storage required for this EmptyDir volume. The size limit is also applicable for memory medium. The maximum usage on memory medium EmptyDir would be the minimum value between the SizeLimit specified here and the sum of memory limits of all containers in a pod. The default is nil which means that the limit is undefined. More info: http://kubernetes.io/docs/user-guide/volumes#emptydir' - pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ - x-kubernetes-int-or-string: true - type: object - fc: - description: FC represents a Fibre Channel resource that is attached to a kubelet's host machine and then exposed to the pod. - properties: - fsType: - description: 'Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. TODO: how do we prevent errors in the filesystem from compromising the machine' - type: string - lun: - description: 'Optional: FC target lun number' - format: int32 - type: integer - readOnly: - description: 'Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.' - type: boolean - targetWWNs: - description: 'Optional: FC target worldwide names (WWNs)' - items: - type: string - type: array - wwids: - description: 'Optional: FC volume world wide identifiers (wwids) Either wwids or combination of targetWWNs and lun must be set, but not both simultaneously.' - items: - type: string - type: array - type: object - flexVolume: - description: FlexVolume represents a generic volume resource that is provisioned/attached using an exec based plugin. - properties: - driver: - description: Driver is the name of the driver to use for this volume. - type: string - fsType: - description: Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. "ext4", "xfs", "ntfs". The default filesystem depends on FlexVolume script. - type: string - options: - additionalProperties: - type: string - description: 'Optional: Extra command options if any.' - type: object - readOnly: - description: 'Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.' - type: boolean - secretRef: - description: 'Optional: SecretRef is reference to the secret object containing sensitive information to pass to the plugin scripts. This may be empty if no secret object is specified. If the secret object contains more than one secret, all secrets are passed to the plugin scripts.' - properties: - name: - description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?' - type: string - type: object - required: - - driver - type: object - flocker: - description: Flocker represents a Flocker volume attached to a kubelet's host machine. This depends on the Flocker control service being running - properties: - datasetName: - description: Name of the dataset stored as metadata -> name on the dataset for Flocker should be considered as deprecated - type: string - datasetUUID: - description: UUID of the dataset. This is unique identifier of a Flocker dataset - type: string - type: object - gcePersistentDisk: - description: 'GCEPersistentDisk represents a GCE Disk resource that is attached to a kubelet''s host machine and then exposed to the pod. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk' - properties: - fsType: - description: 'Filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk TODO: how do we prevent errors in the filesystem from compromising the machine' - type: string - partition: - description: 'The partition in the volume that you want to mount. If omitted, the default is to mount by volume name. Examples: For volume /dev/sda1, you specify the partition as "1". Similarly, the volume partition for /dev/sda is "0" (or you can leave the property empty). More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk' - format: int32 - type: integer - pdName: - description: 'Unique name of the PD resource in GCE. Used to identify the disk in GCE. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk' - type: string - readOnly: - description: 'ReadOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk' - type: boolean - required: - - pdName - type: object - gitRepo: - description: 'GitRepo represents a git repository at a particular revision. DEPRECATED: GitRepo is deprecated. To provision a container with a git repo, mount an EmptyDir into an InitContainer that clones the repo using git, then mount the EmptyDir into the Pod''s container.' - properties: - directory: - description: Target directory name. Must not contain or start with '..'. If '.' is supplied, the volume directory will be the git repository. Otherwise, if specified, the volume will contain the git repository in the subdirectory with the given name. - type: string - repository: - description: Repository URL - type: string - revision: - description: Commit hash for the specified revision. - type: string - required: - - repository - type: object - glusterfs: - description: 'Glusterfs represents a Glusterfs mount on the host that shares a pod''s lifetime. More info: https://examples.k8s.io/volumes/glusterfs/README.md' - properties: - endpoints: - description: 'EndpointsName is the endpoint name that details Glusterfs topology. More info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod' - type: string - path: - description: 'Path is the Glusterfs volume path. More info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod' - type: string - readOnly: - description: 'ReadOnly here will force the Glusterfs volume to be mounted with read-only permissions. Defaults to false. More info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod' - type: boolean - required: - - endpoints - - path - type: object - hostPath: - description: 'HostPath represents a pre-existing file or directory on the host machine that is directly exposed to the container. This is generally used for system agents or other privileged things that are allowed to see the host machine. Most containers will NOT need this. More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath --- TODO(jonesdl) We need to restrict who can use host directory mounts and who can/can not mount host directories as read/write.' - properties: - path: - description: 'Path of the directory on the host. If the path is a symlink, it will follow the link to the real path. More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath' - type: string - type: - description: 'Type for HostPath Volume Defaults to "" More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath' - type: string - required: - - path - type: object - iscsi: - description: 'ISCSI represents an ISCSI Disk resource that is attached to a kubelet''s host machine and then exposed to the pod. More info: https://examples.k8s.io/volumes/iscsi/README.md' - properties: - chapAuthDiscovery: - description: whether support iSCSI Discovery CHAP authentication - type: boolean - chapAuthSession: - description: whether support iSCSI Session CHAP authentication - type: boolean - fsType: - description: 'Filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#iscsi TODO: how do we prevent errors in the filesystem from compromising the machine' - type: string - initiatorName: - description: Custom iSCSI Initiator Name. If initiatorName is specified with iscsiInterface simultaneously, new iSCSI interface : will be created for the connection. - type: string - iqn: - description: Target iSCSI Qualified Name. - type: string - iscsiInterface: - description: iSCSI Interface Name that uses an iSCSI transport. Defaults to 'default' (tcp). - type: string - lun: - description: iSCSI Target Lun number. - format: int32 - type: integer - portals: - description: iSCSI Target Portal List. The portal is either an IP or ip_addr:port if the port is other than default (typically TCP ports 860 and 3260). - items: - type: string - type: array - readOnly: - description: ReadOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false. - type: boolean - secretRef: - description: CHAP Secret for iSCSI target and initiator authentication - properties: - name: - description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?' - type: string - type: object - targetPortal: - description: iSCSI Target Portal. The Portal is either an IP or ip_addr:port if the port is other than default (typically TCP ports 860 and 3260). - type: string - required: - - iqn - - lun - - targetPortal - type: object - name: - description: 'Volume''s name. Must be a DNS_LABEL and unique within the pod. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' - type: string - nfs: - description: 'NFS represents an NFS mount on the host that shares a pod''s lifetime More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs' - properties: - path: - description: 'Path that is exported by the NFS server. More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs' - type: string - readOnly: - description: 'ReadOnly here will force the NFS export to be mounted with read-only permissions. Defaults to false. More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs' - type: boolean - server: - description: 'Server is the hostname or IP address of the NFS server. More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs' - type: string - required: - - path - - server - type: object - persistentVolumeClaim: - description: 'PersistentVolumeClaimVolumeSource represents a reference to a PersistentVolumeClaim in the same namespace. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims' - properties: - claimName: - description: 'ClaimName is the name of a PersistentVolumeClaim in the same namespace as the pod using this volume. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims' - type: string - readOnly: - description: Will force the ReadOnly setting in VolumeMounts. Default false. - type: boolean - required: - - claimName - type: object - photonPersistentDisk: - description: PhotonPersistentDisk represents a PhotonController persistent disk attached and mounted on kubelets host machine - properties: - fsType: - description: Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. - type: string - pdID: - description: ID that identifies Photon Controller persistent disk - type: string - required: - - pdID - type: object - portworxVolume: - description: PortworxVolume represents a portworx volume attached and mounted on kubelets host machine - properties: - fsType: - description: FSType represents the filesystem type to mount Must be a filesystem type supported by the host operating system. Ex. "ext4", "xfs". Implicitly inferred to be "ext4" if unspecified. - type: string - readOnly: - description: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. - type: boolean - volumeID: - description: VolumeID uniquely identifies a Portworx volume - type: string - required: - - volumeID - type: object - projected: - description: Items for all in one resources secrets, configmaps, and downward API - properties: - defaultMode: - description: Mode bits to use on created files by default. Must be a value between 0 and 0777. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set. - format: int32 - type: integer - sources: - description: list of volume projections - items: - description: Projection that may be projected along with other supported volume types - properties: - configMap: - description: information about the configMap data to project - properties: - items: - description: If unspecified, each key-value pair in the Data field of the referenced ConfigMap will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the ConfigMap, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the '..' path or start with '..'. - items: - description: Maps a string key to a path within a volume. - properties: - key: - description: The key to project. - type: string - mode: - description: 'Optional: mode bits to use on this file, must be a value between 0 and 0777. If not specified, the volume defaultMode will be used. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.' - format: int32 - type: integer - path: - description: The relative path of the file to map the key to. May not be an absolute path. May not contain the path element '..'. May not start with the string '..'. - type: string - required: - - key - - path - type: object - type: array - name: - description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?' - type: string - optional: - description: Specify whether the ConfigMap or its keys must be defined - type: boolean - type: object - downwardAPI: - description: information about the downwardAPI data to project - properties: - items: - description: Items is a list of DownwardAPIVolume file - items: - description: DownwardAPIVolumeFile represents information to create the file containing the pod field - properties: - fieldRef: - description: 'Required: Selects a field of the pod: only annotations, labels, name and namespace are supported.' - properties: - apiVersion: - description: Version of the schema the FieldPath is written in terms of, defaults to "v1". - type: string - fieldPath: - description: Path of the field to select in the specified API version. - type: string - required: - - fieldPath - type: object - mode: - description: 'Optional: mode bits to use on this file, must be a value between 0 and 0777. If not specified, the volume defaultMode will be used. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.' - format: int32 - type: integer - path: - description: 'Required: Path is the relative path name of the file to be created. Must not be absolute or contain the ''..'' path. Must be utf-8 encoded. The first item of the relative path must not start with ''..''' - type: string - resourceFieldRef: - description: 'Selects a resource of the container: only resources limits and requests (limits.cpu, limits.memory, requests.cpu and requests.memory) are currently supported.' - properties: - containerName: - description: 'Container name: required for volumes, optional for env vars' - type: string - divisor: - anyOf: - - type: integer - - type: string - description: Specifies the output format of the exposed resources, defaults to "1" - pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ - x-kubernetes-int-or-string: true - resource: - description: 'Required: resource to select' - type: string - required: - - resource - type: object - required: - - path - type: object - type: array - type: object - secret: - description: information about the secret data to project - properties: - items: - description: If unspecified, each key-value pair in the Data field of the referenced Secret will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the Secret, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the '..' path or start with '..'. - items: - description: Maps a string key to a path within a volume. - properties: - key: - description: The key to project. - type: string - mode: - description: 'Optional: mode bits to use on this file, must be a value between 0 and 0777. If not specified, the volume defaultMode will be used. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.' - format: int32 - type: integer - path: - description: The relative path of the file to map the key to. May not be an absolute path. May not contain the path element '..'. May not start with the string '..'. - type: string - required: - - key - - path - type: object - type: array - name: - description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?' - type: string - optional: - description: Specify whether the Secret or its key must be defined - type: boolean - type: object - serviceAccountToken: - description: information about the serviceAccountToken data to project - properties: - audience: - description: Audience is the intended audience of the token. A recipient of a token must identify itself with an identifier specified in the audience of the token, and otherwise should reject the token. The audience defaults to the identifier of the apiserver. - type: string - expirationSeconds: - description: ExpirationSeconds is the requested duration of validity of the service account token. As the token approaches expiration, the kubelet volume plugin will proactively rotate the service account token. The kubelet will start trying to rotate the token if the token is older than 80 percent of its time to live or if the token is older than 24 hours.Defaults to 1 hour and must be at least 10 minutes. - format: int64 - type: integer - path: - description: Path is the path relative to the mount point of the file to project the token into. - type: string - required: - - path - type: object - type: object - type: array - required: - - sources - type: object - quobyte: - description: Quobyte represents a Quobyte mount on the host that shares a pod's lifetime - properties: - group: - description: Group to map volume access to Default is no group - type: string - readOnly: - description: ReadOnly here will force the Quobyte volume to be mounted with read-only permissions. Defaults to false. - type: boolean - registry: - description: Registry represents a single or multiple Quobyte Registry services specified as a string as host:port pair (multiple entries are separated with commas) which acts as the central registry for volumes - type: string - tenant: - description: Tenant owning the given Quobyte volume in the Backend Used with dynamically provisioned Quobyte volumes, value is set by the plugin - type: string - user: - description: User to map volume access to Defaults to serivceaccount user - type: string - volume: - description: Volume is a string that references an already created Quobyte volume by name. - type: string - required: - - registry - - volume - type: object - rbd: - description: 'RBD represents a Rados Block Device mount on the host that shares a pod''s lifetime. More info: https://examples.k8s.io/volumes/rbd/README.md' - properties: - fsType: - description: 'Filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#rbd TODO: how do we prevent errors in the filesystem from compromising the machine' - type: string - image: - description: 'The rados image name. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it' - type: string - keyring: - description: 'Keyring is the path to key ring for RBDUser. Default is /etc/ceph/keyring. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it' - type: string - monitors: - description: 'A collection of Ceph monitors. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it' - items: - type: string - type: array - pool: - description: 'The rados pool name. Default is rbd. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it' - type: string - readOnly: - description: 'ReadOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it' - type: boolean - secretRef: - description: 'SecretRef is name of the authentication secret for RBDUser. If provided overrides keyring. Default is nil. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it' - properties: - name: - description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?' - type: string - type: object - user: - description: 'The rados user name. Default is admin. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it' - type: string - required: - - image - - monitors - type: object - scaleIO: - description: ScaleIO represents a ScaleIO persistent volume attached and mounted on Kubernetes nodes. - properties: - fsType: - description: Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. "ext4", "xfs", "ntfs". Default is "xfs". - type: string - gateway: - description: The host address of the ScaleIO API Gateway. - type: string - protectionDomain: - description: The name of the ScaleIO Protection Domain for the configured storage. - type: string - readOnly: - description: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. - type: boolean - secretRef: - description: SecretRef references to the secret for ScaleIO user and other sensitive information. If this is not provided, Login operation will fail. - properties: - name: - description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?' - type: string - type: object - sslEnabled: - description: Flag to enable/disable SSL communication with Gateway, default false - type: boolean - storageMode: - description: Indicates whether the storage for a volume should be ThickProvisioned or ThinProvisioned. Default is ThinProvisioned. - type: string - storagePool: - description: The ScaleIO Storage Pool associated with the protection domain. - type: string - system: - description: The name of the storage system as configured in ScaleIO. - type: string - volumeName: - description: The name of a volume already created in the ScaleIO system that is associated with this volume source. - type: string - required: - - gateway - - secretRef - - system - type: object - secret: - description: 'Secret represents a secret that should populate this volume. More info: https://kubernetes.io/docs/concepts/storage/volumes#secret' - properties: - defaultMode: - description: 'Optional: mode bits to use on created files by default. Must be a value between 0 and 0777. Defaults to 0644. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.' - format: int32 - type: integer - items: - description: If unspecified, each key-value pair in the Data field of the referenced Secret will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the Secret, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the '..' path or start with '..'. - items: - description: Maps a string key to a path within a volume. - properties: - key: - description: The key to project. - type: string - mode: - description: 'Optional: mode bits to use on this file, must be a value between 0 and 0777. If not specified, the volume defaultMode will be used. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.' - format: int32 - type: integer - path: - description: The relative path of the file to map the key to. May not be an absolute path. May not contain the path element '..'. May not start with the string '..'. - type: string - required: - - key - - path - type: object - type: array - optional: - description: Specify whether the Secret or its keys must be defined - type: boolean - secretName: - description: 'Name of the secret in the pod''s namespace to use. More info: https://kubernetes.io/docs/concepts/storage/volumes#secret' - type: string - type: object - storageos: - description: StorageOS represents a StorageOS volume attached and mounted on Kubernetes nodes. - properties: - fsType: - description: Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. - type: string - readOnly: - description: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. - type: boolean - secretRef: - description: SecretRef specifies the secret to use for obtaining the StorageOS API credentials. If not specified, default values will be attempted. - properties: - name: - description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?' - type: string - type: object - volumeName: - description: VolumeName is the human-readable name of the StorageOS volume. Volume names are only unique within a namespace. - type: string - volumeNamespace: - description: VolumeNamespace specifies the scope of the volume within StorageOS. If no namespace is specified then the Pod's namespace will be used. This allows the Kubernetes name scoping to be mirrored within StorageOS for tighter integration. Set VolumeName to any name to override the default behaviour. Set to "default" if you are not using namespaces within StorageOS. Namespaces that do not pre-exist within StorageOS will be created. - type: string - type: object - vsphereVolume: - description: VsphereVolume represents a vSphere volume attached and mounted on kubelets host machine - properties: - fsType: - description: Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. - type: string - storagePolicyID: - description: Storage Policy Based Management (SPBM) profile ID associated with the StoragePolicyName. - type: string - storagePolicyName: - description: Storage Policy Based Management (SPBM) profile name. - type: string - volumePath: - description: Path that identifies vSphere volume vmdk - type: string - required: - - volumePath - type: object - required: - - name - type: object - type: array - walCompression: - description: Enable compression of the write-ahead log using Snappy. This flag is only available in versions of Prometheus >= 2.11.0. - type: boolean - web: - description: WebSpec defines the web command line flags when starting Prometheus. - properties: - pageTitle: - description: The prometheus web page title - type: string - type: object - type: object - status: - description: 'Most recent observed status of the Prometheus cluster. Read-only. Not included when requesting from the apiserver, only from the Prometheus Operator API itself. More info: https://github.com/kubernetes/community/blob/master/contributors/devel/sig-architecture/api-conventions.md#spec-and-status' - properties: - availableReplicas: - description: Total number of available pods (ready for at least minReadySeconds) targeted by this Prometheus deployment. - format: int32 - type: integer - paused: - description: Represents whether any actions on the underlying managed objects are being performed. Only delete actions will be performed. - type: boolean - replicas: - description: Total number of non-terminated pods targeted by this Prometheus deployment (their labels match the selector). - format: int32 - type: integer - unavailableReplicas: - description: Total number of unavailable pods targeted by this Prometheus deployment. - format: int32 - type: integer - updatedReplicas: - description: Total number of non-terminated pods targeted by this Prometheus deployment that have the desired version spec. - format: int32 - type: integer - required: - - availableReplicas - - paused - - replicas - - unavailableReplicas - - updatedReplicas - type: object - required: - - spec - type: object - served: true - storage: true - subresources: {} \ No newline at end of file diff --git a/charts/px-central/crds/crd-prometheusrules.yaml b/charts/px-central/crds/crd-prometheusrules.yaml deleted file mode 100644 index dd2121872..000000000 --- a/charts/px-central/crds/crd-prometheusrules.yaml +++ /dev/null @@ -1,84 +0,0 @@ -# https://raw.githubusercontent.com/prometheus-operator/prometheus-operator/v0.47.0/example/prometheus-operator-crd/monitoring.coreos.com_prometheusrules.yaml - -apiVersion: apiextensions.k8s.io/v1 -kind: CustomResourceDefinition -metadata: - name: prometheusrules.monitoring.coreos.com - labels: - app: prometheus-operator - annotations: - "helm.sh/hook": crd-install -spec: - group: monitoring.coreos.com - names: - kind: PrometheusRule - listKind: PrometheusRuleList - plural: prometheusrules - singular: prometheusrule - scope: Namespaced - versions: - - name: v1 - schema: - openAPIV3Schema: - description: PrometheusRule defines recording and alerting rules for a Prometheus instance - properties: - apiVersion: - description: 'APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More 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. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds' - type: string - metadata: - type: object - spec: - description: Specification of desired alerting rule definitions for Prometheus. - properties: - groups: - description: Content of Prometheus rule file - items: - description: 'RuleGroup is a list of sequentially evaluated recording and alerting rules. Note: PartialResponseStrategy is only used by ThanosRuler and will be ignored by Prometheus instances. Valid values for this field are ''warn'' or ''abort''. More info: https://github.com/thanos-io/thanos/blob/master/docs/components/rule.md#partial-response' - properties: - interval: - type: string - name: - type: string - partial_response_strategy: - type: string - rules: - items: - description: Rule describes an alerting or recording rule. - properties: - alert: - type: string - annotations: - additionalProperties: - type: string - type: object - expr: - anyOf: - - type: integer - - type: string - x-kubernetes-int-or-string: true - for: - type: string - labels: - additionalProperties: - type: string - type: object - record: - type: string - required: - - expr - type: object - type: array - required: - - name - - rules - type: object - type: array - type: object - required: - - spec - type: object - served: true - storage: true \ No newline at end of file diff --git a/charts/px-central/crds/crd-servicemonitor.yaml b/charts/px-central/crds/crd-servicemonitor.yaml deleted file mode 100644 index 3b27a4be4..000000000 --- a/charts/px-central/crds/crd-servicemonitor.yaml +++ /dev/null @@ -1,366 +0,0 @@ -# https://raw.githubusercontent.com/prometheus-operator/prometheus-operator/v0.47.0/example/prometheus-operator-crd/monitoring.coreos.com_servicemonitors.yaml -apiVersion: apiextensions.k8s.io/v1 -kind: CustomResourceDefinition -metadata: - annotations: - controller-gen.kubebuilder.io/version: v0.4.1 - helm.sh/hook: crd-install - name: servicemonitors.monitoring.coreos.com -spec: - group: monitoring.coreos.com - names: - kind: ServiceMonitor - listKind: ServiceMonitorList - plural: servicemonitors - singular: servicemonitor - preserveUnknownFields: false - scope: Namespaced - versions: - - name: v1 - schema: - openAPIV3Schema: - description: ServiceMonitor defines monitoring for a set of services. - properties: - apiVersion: - description: 'APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More 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. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds' - type: string - metadata: - type: object - spec: - description: Specification of desired Service selection for target discovery by Prometheus. - properties: - endpoints: - description: A list of endpoints allowed as part of this ServiceMonitor. - items: - description: Endpoint defines a scrapeable endpoint serving Prometheus metrics. - properties: - basicAuth: - description: 'BasicAuth allow an endpoint to authenticate over basic authentication More info: https://prometheus.io/docs/operating/configuration/#endpoints' - properties: - password: - description: The secret in the service monitor namespace that contains the password for authentication. - properties: - key: - description: The key of the secret to select from. Must be a valid secret key. - type: string - name: - description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?' - type: string - optional: - description: Specify whether the Secret or its key must be defined - type: boolean - required: - - key - type: object - username: - description: The secret in the service monitor namespace that contains the username for authentication. - properties: - key: - description: The key of the secret to select from. Must be a valid secret key. - type: string - name: - description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?' - type: string - optional: - description: Specify whether the Secret or its key must be defined - type: boolean - required: - - key - type: object - type: object - bearerTokenFile: - description: File to read bearer token for scraping targets. - type: string - bearerTokenSecret: - description: Secret to mount to read bearer token for scraping targets. The secret needs to be in the same namespace as the service monitor and accessible by the Prometheus Operator. - properties: - key: - description: The key of the secret to select from. Must be a valid secret key. - type: string - name: - description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?' - type: string - optional: - description: Specify whether the Secret or its key must be defined - type: boolean - required: - - key - type: object - honorLabels: - description: HonorLabels chooses the metric's labels on collisions with target labels. - type: boolean - honorTimestamps: - description: HonorTimestamps controls whether Prometheus respects the timestamps present in scraped data. - type: boolean - interval: - description: Interval at which metrics should be scraped - type: string - metricRelabelings: - description: MetricRelabelConfigs to apply to samples before ingestion. - items: - description: 'RelabelConfig allows dynamic rewriting of the label set, being applied to samples before ingestion. It defines ``-section of Prometheus configuration. More info: https://prometheus.io/docs/prometheus/latest/configuration/configuration/#metric_relabel_configs' - properties: - action: - description: Action to perform based on regex matching. Default is 'replace' - type: string - modulus: - description: Modulus to take of the hash of the source label values. - format: int64 - type: integer - regex: - description: Regular expression against which the extracted value is matched. Default is '(.*)' - type: string - replacement: - description: Replacement value against which a regex replace is performed if the regular expression matches. Regex capture groups are available. Default is '$1' - type: string - separator: - description: Separator placed between concatenated source label values. default is ';'. - type: string - sourceLabels: - description: The source labels select values from existing labels. Their content is concatenated using the configured separator and matched against the configured regular expression for the replace, keep, and drop actions. - items: - type: string - type: array - targetLabel: - description: Label to which the resulting value is written in a replace action. It is mandatory for replace actions. Regex capture groups are available. - type: string - type: object - type: array - params: - additionalProperties: - items: - type: string - type: array - description: Optional HTTP URL parameters - type: object - path: - description: HTTP path to scrape for metrics. - type: string - port: - description: Name of the service port this endpoint refers to. Mutually exclusive with targetPort. - type: string - proxyUrl: - description: ProxyURL eg http://proxyserver:2195 Directs scrapes to proxy through this endpoint. - type: string - relabelings: - description: 'RelabelConfigs to apply to samples before scraping. Prometheus Operator automatically adds relabelings for a few standard Kubernetes fields and replaces original scrape job name with __tmp_prometheus_job_name. More info: https://prometheus.io/docs/prometheus/latest/configuration/configuration/#relabel_config' - items: - description: 'RelabelConfig allows dynamic rewriting of the label set, being applied to samples before ingestion. It defines ``-section of Prometheus configuration. More info: https://prometheus.io/docs/prometheus/latest/configuration/configuration/#metric_relabel_configs' - properties: - action: - description: Action to perform based on regex matching. Default is 'replace' - type: string - modulus: - description: Modulus to take of the hash of the source label values. - format: int64 - type: integer - regex: - description: Regular expression against which the extracted value is matched. Default is '(.*)' - type: string - replacement: - description: Replacement value against which a regex replace is performed if the regular expression matches. Regex capture groups are available. Default is '$1' - type: string - separator: - description: Separator placed between concatenated source label values. default is ';'. - type: string - sourceLabels: - description: The source labels select values from existing labels. Their content is concatenated using the configured separator and matched against the configured regular expression for the replace, keep, and drop actions. - items: - type: string - type: array - targetLabel: - description: Label to which the resulting value is written in a replace action. It is mandatory for replace actions. Regex capture groups are available. - type: string - type: object - type: array - scheme: - description: HTTP scheme to use for scraping. - type: string - scrapeTimeout: - description: Timeout after which the scrape is ended - type: string - targetPort: - anyOf: - - type: integer - - type: string - description: Name or number of the target port of the Pod behind the Service, the port must be specified with container port property. Mutually exclusive with port. - x-kubernetes-int-or-string: true - tlsConfig: - description: TLS configuration to use when scraping the endpoint - properties: - ca: - description: Struct containing the CA cert to use for the targets. - properties: - configMap: - description: ConfigMap containing data to use for the targets. - properties: - key: - description: The key to select. - type: string - name: - description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?' - type: string - optional: - description: Specify whether the ConfigMap or its key must be defined - type: boolean - required: - - key - type: object - secret: - description: Secret containing data to use for the targets. - properties: - key: - description: The key of the secret to select from. Must be a valid secret key. - type: string - name: - description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?' - type: string - optional: - description: Specify whether the Secret or its key must be defined - type: boolean - required: - - key - type: object - type: object - caFile: - description: Path to the CA cert in the Prometheus container to use for the targets. - type: string - cert: - description: Struct containing the client cert file for the targets. - properties: - configMap: - description: ConfigMap containing data to use for the targets. - properties: - key: - description: The key to select. - type: string - name: - description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?' - type: string - optional: - description: Specify whether the ConfigMap or its key must be defined - type: boolean - required: - - key - type: object - secret: - description: Secret containing data to use for the targets. - properties: - key: - description: The key of the secret to select from. Must be a valid secret key. - type: string - name: - description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?' - type: string - optional: - description: Specify whether the Secret or its key must be defined - type: boolean - required: - - key - type: object - type: object - certFile: - description: Path to the client cert file in the Prometheus container for the targets. - type: string - insecureSkipVerify: - description: Disable target certificate validation. - type: boolean - keyFile: - description: Path to the client key file in the Prometheus container for the targets. - type: string - keySecret: - description: Secret containing the client key file for the targets. - properties: - key: - description: The key of the secret to select from. Must be a valid secret key. - type: string - name: - description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?' - type: string - optional: - description: Specify whether the Secret or its key must be defined - type: boolean - required: - - key - type: object - serverName: - description: Used to verify the hostname for the targets. - type: string - type: object - type: object - type: array - jobLabel: - description: The label to use to retrieve the job name from. - type: string - namespaceSelector: - description: Selector to select which namespaces the Endpoints objects are discovered from. - properties: - any: - description: Boolean describing whether all namespaces are selected in contrast to a list restricting them. - type: boolean - matchNames: - description: List of namespace names. - items: - type: string - type: array - type: object - podTargetLabels: - description: PodTargetLabels transfers labels on the Kubernetes Pod onto the target. - items: - type: string - type: array - sampleLimit: - description: SampleLimit defines per-scrape limit on number of scraped samples that will be accepted. - format: int64 - type: integer - selector: - description: Selector to select Endpoints objects. - 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 relates 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. Valid 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, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch. - items: - type: string - type: array - required: - - key - - operator - type: object - type: array - matchLabels: - additionalProperties: - type: string - description: matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed. - type: object - type: object - targetLabels: - description: TargetLabels transfers labels on the Kubernetes Service onto the target. - items: - type: string - type: array - targetLimit: - description: TargetLimit defines a limit on the number of scraped targets that will be accepted. - format: int64 - type: integer - required: - - endpoints - - selector - type: object - required: - - spec - type: object - served: true - storage: true \ No newline at end of file diff --git a/charts/px-central/crds/crd-thanosrulers.yaml b/charts/px-central/crds/crd-thanosrulers.yaml deleted file mode 100644 index d6e064312..000000000 --- a/charts/px-central/crds/crd-thanosrulers.yaml +++ /dev/null @@ -1,5033 +0,0 @@ -# https://raw.githubusercontent.com/prometheus-operator/prometheus-operator/v0.50.0/example/prometheus-operator-crd/monitoring.coreos.com_thanosrulers.yaml ---- -apiVersion: apiextensions.k8s.io/v1 -kind: CustomResourceDefinition -metadata: - annotations: - controller-gen.kubebuilder.io/version: v0.4.1 - creationTimestamp: null - name: thanosrulers.monitoring.coreos.com -spec: - group: monitoring.coreos.com - names: - categories: - - prometheus-operator - kind: ThanosRuler - listKind: ThanosRulerList - plural: thanosrulers - singular: thanosruler - scope: Namespaced - versions: - - name: v1 - schema: - openAPIV3Schema: - description: ThanosRuler defines a ThanosRuler deployment. - properties: - apiVersion: - description: 'APIVersion defines the versioned schema of this representation - of an object. Servers should convert recognized schemas to the latest - internal value, and may reject unrecognized values. More 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. Servers may infer this from the endpoint the client - submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds' - type: string - metadata: - type: object - spec: - description: 'Specification of the desired behavior of the ThanosRuler - cluster. More info: https://github.com/kubernetes/community/blob/master/contributors/devel/sig-architecture/api-conventions.md#spec-and-status' - properties: - affinity: - description: If specified, the pod's scheduling constraints. - 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 the affinity expressions specified by - this field, but it may choose a node that violates one or - more of the expressions. The node that is most preferred - is the one with the greatest sum of weights, i.e. for each - node that meets all of the scheduling requirements (resource - request, requiredDuringScheduling affinity expressions, - etc.), compute a sum by iterating through the elements of - this field and adding "weight" to the sum if the node matches - the corresponding matchExpressions; the node(s) with the - highest sum are the most preferred. - items: - description: An empty preferred scheduling term matches - all objects with implicit weight 0 (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 that 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. Valid 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, the values - array must be non-empty. If the operator - is Exists or DoesNotExist, the values array - must be empty. If the operator is Gt or - Lt, the values array must have a single - element, which will be interpreted as an - integer. This array is replaced during a - strategic merge patch. - items: - type: string - type: array - required: - - key - - operator - type: object - type: array - 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 that 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. Valid 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, the values - array must be non-empty. If the operator - is Exists or DoesNotExist, the values array - must be empty. If the operator is Gt or - Lt, the values array must have a single - element, which will be interpreted as an - integer. This array is replaced during a - strategic merge patch. - items: - type: string - type: array - required: - - key - - operator - type: object - type: array - type: object - weight: - description: Weight associated with matching the corresponding - nodeSelectorTerm, in the range 1-100. - format: int32 - type: integer - required: - - preference - - weight - type: object - type: array - requiredDuringSchedulingIgnoredDuringExecution: - description: If the affinity requirements specified by this - field are not met at scheduling time, the pod will not be - scheduled onto the node. If the affinity requirements specified - by this field cease to be met at some point during pod execution - (e.g. due to an update), the system may 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 them are ANDed. The - 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 that 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. Valid 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, the values - array must be non-empty. If the operator - is Exists or DoesNotExist, the values array - must be empty. If the operator is Gt or - Lt, the values array must have a single - element, which will be interpreted as an - integer. This array is replaced during a - strategic merge patch. - items: - type: string - type: array - required: - - key - - operator - type: object - type: array - 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 that 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. Valid 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, the values - array must be non-empty. If the operator - is Exists or DoesNotExist, the values array - must be empty. If the operator is Gt or - Lt, the values array must have a single - element, which will be interpreted as an - integer. This array is replaced during a - strategic merge patch. - items: - type: string - type: array - required: - - key - - operator - type: object - type: array - type: object - type: array - required: - - nodeSelectorTerms - type: object - type: object - 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 the affinity expressions specified by - this field, but it may choose a node that violates one or - more of the expressions. The node that is most preferred - is the one with the greatest sum of weights, i.e. for each - node that meets all of the scheduling requirements (resource - request, requiredDuringScheduling affinity expressions, - etc.), compute a sum by iterating through the elements of - this field and adding "weight" to the sum if the node has - pods which matches the corresponding podAffinityTerm; the - node(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. - 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 relates 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. Valid - 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, - the values array must be non-empty. - If the operator is Exists or DoesNotExist, - the values array must be empty. This - array is replaced during a strategic - merge patch. - items: - type: string - type: array - required: - - key - - operator - type: object - type: array - matchLabels: - additionalProperties: - type: string - description: matchLabels is a map of {key,value} - pairs. A single {key,value} in the matchLabels - map is equivalent to an element of matchExpressions, - whose key field is "key", the operator is - "In", and the values array contains only "value". - The requirements are ANDed. - type: object - type: object - namespaces: - description: namespaces specifies which namespaces - the labelSelector applies to (matches against); - null or empty list means "this pod's namespace" - items: - type: string - type: array - topologyKey: - description: This pod should be co-located (affinity) - or not co-located (anti-affinity) with the pods - matching the labelSelector in the specified namespaces, - where co-located is defined as running on a node - whose value of the label with key topologyKey - matches that of any node on which any of the selected - pods is running. Empty topologyKey is not allowed. - type: string - required: - - topologyKey - type: object - weight: - description: weight associated with matching the corresponding - podAffinityTerm, in the range 1-100. - format: int32 - type: integer - required: - - podAffinityTerm - - weight - type: object - type: array - requiredDuringSchedulingIgnoredDuringExecution: - description: If the affinity requirements specified by this - field are not met at scheduling time, the pod will not be - scheduled onto the node. If the affinity requirements specified - by this field cease to be met at some point during pod execution - (e.g. due to a pod label update), the system may or may - not try to eventually evict the pod from its node. When - there are multiple elements, the lists of nodes corresponding - to each podAffinityTerm are intersected, i.e. all terms - must be satisfied. - items: - description: Defines a set of pods (namely those matching - the labelSelector relative to the given namespace(s)) - that this pod should be co-located (affinity) or not co-located - (anti-affinity) with, where co-located is defined as running - on a node whose value of the label with key - matches that of any node on which a pod of the set of - pods is running - properties: - labelSelector: - description: A label query over a set of resources, - in this case 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 relates 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. Valid 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, - the values array must be non-empty. If the - operator is Exists or DoesNotExist, the - values array must be empty. This array is - replaced during a strategic merge patch. - items: - type: string - type: array - required: - - key - - operator - type: object - type: array - matchLabels: - additionalProperties: - type: string - description: matchLabels is a map of {key,value} - pairs. A single {key,value} in the matchLabels - map is equivalent to an element of matchExpressions, - whose key field is "key", the operator is "In", - and the values array contains only "value". The - requirements are ANDed. - type: object - type: object - namespaces: - description: namespaces specifies which namespaces the - labelSelector applies to (matches against); null or - empty list means "this pod's namespace" - items: - type: string - type: array - topologyKey: - description: This pod should be co-located (affinity) - or not co-located (anti-affinity) with the pods matching - the labelSelector in the specified namespaces, where - co-located is defined as running on a node whose value - of the label with key topologyKey matches that of - any node on which any of the selected pods is running. - Empty topologyKey is not allowed. - type: string - required: - - topologyKey - type: object - type: array - type: object - 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 the anti-affinity expressions specified - by this field, but it may choose a node that violates one - or more of the expressions. The node that is most preferred - is the one with the greatest sum of weights, i.e. for each - node that meets all of the scheduling requirements (resource - request, requiredDuringScheduling anti-affinity expressions, - etc.), compute a sum by iterating through the elements of - this field and adding "weight" to the sum if the node has - pods which matches the corresponding podAffinityTerm; the - node(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. - 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 relates 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. Valid - 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, - the values array must be non-empty. - If the operator is Exists or DoesNotExist, - the values array must be empty. This - array is replaced during a strategic - merge patch. - items: - type: string - type: array - required: - - key - - operator - type: object - type: array - matchLabels: - additionalProperties: - type: string - description: matchLabels is a map of {key,value} - pairs. A single {key,value} in the matchLabels - map is equivalent to an element of matchExpressions, - whose key field is "key", the operator is - "In", and the values array contains only "value". - The requirements are ANDed. - type: object - type: object - namespaces: - description: namespaces specifies which namespaces - the labelSelector applies to (matches against); - null or empty list means "this pod's namespace" - items: - type: string - type: array - topologyKey: - description: This pod should be co-located (affinity) - or not co-located (anti-affinity) with the pods - matching the labelSelector in the specified namespaces, - where co-located is defined as running on a node - whose value of the label with key topologyKey - matches that of any node on which any of the selected - pods is running. Empty topologyKey is not allowed. - type: string - required: - - topologyKey - type: object - weight: - description: weight associated with matching the corresponding - podAffinityTerm, in the range 1-100. - format: int32 - type: integer - required: - - podAffinityTerm - - weight - type: object - type: array - requiredDuringSchedulingIgnoredDuringExecution: - description: If the anti-affinity requirements specified by - this field are not met at scheduling time, the pod will - not be scheduled onto the node. If the anti-affinity requirements - specified by this field cease to be met at some point during - pod execution (e.g. due to a pod label update), the system - may or may not try to eventually evict the pod from its - node. When there are multiple elements, the lists of nodes - corresponding to each podAffinityTerm are intersected, i.e. - all terms must be satisfied. - items: - description: Defines a set of pods (namely those matching - the labelSelector relative to the given namespace(s)) - that this pod should be co-located (affinity) or not co-located - (anti-affinity) with, where co-located is defined as running - on a node whose value of the label with key - matches that of any node on which a pod of the set of - pods is running - properties: - labelSelector: - description: A label query over a set of resources, - in this case 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 relates 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. Valid 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, - the values array must be non-empty. If the - operator is Exists or DoesNotExist, the - values array must be empty. This array is - replaced during a strategic merge patch. - items: - type: string - type: array - required: - - key - - operator - type: object - type: array - matchLabels: - additionalProperties: - type: string - description: matchLabels is a map of {key,value} - pairs. A single {key,value} in the matchLabels - map is equivalent to an element of matchExpressions, - whose key field is "key", the operator is "In", - and the values array contains only "value". The - requirements are ANDed. - type: object - type: object - namespaces: - description: namespaces specifies which namespaces the - labelSelector applies to (matches against); null or - empty list means "this pod's namespace" - items: - type: string - type: array - topologyKey: - description: This pod should be co-located (affinity) - or not co-located (anti-affinity) with the pods matching - the labelSelector in the specified namespaces, where - co-located is defined as running on a node whose value - of the label with key topologyKey matches that of - any node on which any of the selected pods is running. - Empty topologyKey is not allowed. - type: string - required: - - topologyKey - type: object - type: array - type: object - type: object - alertDropLabels: - description: AlertDropLabels configure the label names which should - be dropped in ThanosRuler alerts. If `labels` field is not provided, - `thanos_ruler_replica` will be dropped in alerts by default. - items: - type: string - type: array - alertQueryUrl: - description: The external Query URL the Thanos Ruler will set in the - 'Source' field of all alerts. Maps to the '--alert.query-url' CLI - arg. - type: string - alertmanagersConfig: - description: Define configuration for connecting to alertmanager. Only - available with thanos v0.10.0 and higher. Maps to the `alertmanagers.config` - arg. - properties: - key: - description: The key of the secret to select from. Must be a - valid secret key. - type: string - name: - description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names - TODO: Add other useful fields. apiVersion, kind, uid?' - type: string - optional: - description: Specify whether the Secret or its key must be defined - type: boolean - required: - - key - type: object - alertmanagersUrl: - description: 'Define URLs to send alerts to Alertmanager. For Thanos - v0.10.0 and higher, AlertManagersConfig should be used instead. Note: - this field will be ignored if AlertManagersConfig is specified. - Maps to the `alertmanagers.url` arg.' - items: - type: string - type: array - containers: - description: 'Containers allows injecting additional containers or - modifying operator generated containers. This can be used to allow - adding an authentication proxy to a ThanosRuler pod or to change - the behavior of an operator generated container. Containers described - here modify an operator generated container if they share the same - name and modifications are done via a strategic merge patch. The - current container names are: `thanos-ruler` and `config-reloader`. - Overriding containers is entirely outside the scope of what the - maintainers will support and by doing so, you accept that this behaviour - may break at any time without notice.' - items: - description: A single application container that you want to run - within a pod. - properties: - args: - description: 'Arguments to the entrypoint. The docker image''s - CMD is used if this is not provided. Variable references $(VAR_NAME) - are expanded using the container''s environment. If a variable - cannot be resolved, the reference in the input string will - be unchanged. The $(VAR_NAME) syntax can be escaped with a - double $$, ie: $$(VAR_NAME). Escaped references will never - be expanded, regardless of whether the variable exists or - not. Cannot be updated. More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell' - items: - type: string - type: array - command: - description: 'Entrypoint array. Not executed within a shell. - The docker image''s ENTRYPOINT is used if this is not provided. - Variable references $(VAR_NAME) are expanded using the container''s - environment. If a variable cannot be resolved, the reference - in the input string will be unchanged. The $(VAR_NAME) syntax - can be escaped with a double $$, ie: $$(VAR_NAME). Escaped - references will never be expanded, regardless of whether the - variable exists or not. Cannot be updated. More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell' - items: - type: string - type: array - env: - description: List of environment variables to set in the container. - Cannot be updated. - items: - description: EnvVar represents an environment variable present - in a Container. - properties: - name: - description: Name of the environment variable. Must be - a C_IDENTIFIER. - type: string - value: - description: 'Variable references $(VAR_NAME) are expanded - using the previous defined environment variables in - the container and any service environment variables. - If a variable cannot be resolved, the reference in the - input string will be unchanged. The $(VAR_NAME) syntax - can be escaped with a double $$, ie: $$(VAR_NAME). Escaped - references will never be expanded, regardless of whether - the variable exists or not. Defaults to "".' - type: string - valueFrom: - description: Source for the environment variable's value. - Cannot be used if value is not empty. - properties: - configMapKeyRef: - description: Selects a key of a ConfigMap. - properties: - key: - description: The key to select. - type: string - name: - description: 'Name of the referent. More info: - https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names - TODO: Add other useful fields. apiVersion, kind, - uid?' - type: string - optional: - description: Specify whether the ConfigMap or - its key must be defined - type: boolean - required: - - key - type: object - fieldRef: - description: 'Selects a field of the pod: supports - metadata.name, metadata.namespace, metadata.labels, - metadata.annotations, spec.nodeName, spec.serviceAccountName, - status.hostIP, status.podIP, status.podIPs.' - properties: - apiVersion: - description: Version of the schema the FieldPath - is written in terms of, defaults to "v1". - type: string - fieldPath: - description: Path of the field to select in the - specified API version. - type: string - required: - - fieldPath - type: object - resourceFieldRef: - description: 'Selects a resource of the container: - only resources limits and requests (limits.cpu, - limits.memory, limits.ephemeral-storage, requests.cpu, - requests.memory and requests.ephemeral-storage) - are currently supported.' - properties: - containerName: - description: 'Container name: required for volumes, - optional for env vars' - type: string - divisor: - anyOf: - - type: integer - - type: string - description: Specifies the output format of the - exposed resources, defaults to "1" - pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ - x-kubernetes-int-or-string: true - resource: - description: 'Required: resource to select' - type: string - required: - - resource - type: object - secretKeyRef: - description: Selects a key of a secret in the pod's - namespace - properties: - key: - description: The key of the secret to select from. Must - be a valid secret key. - type: string - name: - description: 'Name of the referent. More info: - https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names - TODO: Add other useful fields. apiVersion, kind, - uid?' - type: string - optional: - description: Specify whether the Secret or its - key must be defined - type: boolean - required: - - key - type: object - type: object - required: - - name - type: object - type: array - envFrom: - description: List of sources to populate environment variables - in the container. The keys defined within a source must be - a C_IDENTIFIER. All invalid keys will be reported as an event - when the container is starting. When a key exists in multiple - sources, the value associated with the last source will take - precedence. Values defined by an Env with a duplicate key - will take precedence. Cannot be updated. - items: - description: EnvFromSource represents the source of a set - of ConfigMaps - properties: - configMapRef: - description: The ConfigMap to select from - properties: - name: - description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names - TODO: Add other useful fields. apiVersion, kind, - uid?' - type: string - optional: - description: Specify whether the ConfigMap must be - defined - type: boolean - type: object - prefix: - description: An optional identifier to prepend to each - key in the ConfigMap. Must be a C_IDENTIFIER. - type: string - secretRef: - description: The Secret to select from - properties: - name: - description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names - TODO: Add other useful fields. apiVersion, kind, - uid?' - type: string - optional: - description: Specify whether the Secret must be defined - type: boolean - type: object - type: object - type: array - image: - description: 'Docker image name. More info: https://kubernetes.io/docs/concepts/containers/images - This field is optional to allow higher level config management - to default or override container images in workload controllers - like Deployments and StatefulSets.' - type: string - imagePullPolicy: - description: 'Image pull policy. One of Always, Never, IfNotPresent. - Defaults to Always if :latest tag is specified, or IfNotPresent - otherwise. Cannot be updated. More info: https://kubernetes.io/docs/concepts/containers/images#updating-images' - type: string - lifecycle: - description: Actions that the management system should take - in response to container lifecycle events. Cannot be updated. - properties: - postStart: - description: 'PostStart is called immediately after a container - is created. If the handler fails, the container is terminated - and restarted according to its restart policy. Other management - of the container blocks until the hook completes. More - info: https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks' - properties: - exec: - description: One and only one of the following should - be specified. Exec specifies the action to take. - properties: - command: - description: Command is the command line to execute - inside the container, the working directory for - the command is root ('/') in the container's - filesystem. The command is simply exec'd, it is - not run inside a shell, so traditional shell instructions - ('|', etc) won't work. To use a shell, you need - to explicitly call out to that shell. Exit status - of 0 is treated as live/healthy and non-zero is - unhealthy. - items: - type: string - type: array - type: object - httpGet: - description: HTTPGet specifies the http request to perform. - properties: - host: - description: Host name to connect to, defaults to - the pod IP. You probably want to set "Host" in - httpHeaders instead. - type: string - httpHeaders: - description: Custom headers to set in the request. - HTTP allows repeated headers. - items: - description: HTTPHeader describes a custom header - to be used in HTTP probes - properties: - name: - description: The header field name - type: string - value: - description: The header field value - type: string - required: - - name - - value - type: object - type: array - path: - description: Path to access on the HTTP server. - type: string - port: - anyOf: - - type: integer - - type: string - description: Name or number of the port to access - on the container. Number must be in the range - 1 to 65535. Name must be an IANA_SVC_NAME. - x-kubernetes-int-or-string: true - scheme: - description: Scheme to use for connecting to the - host. Defaults to HTTP. - type: string - required: - - port - type: object - tcpSocket: - description: 'TCPSocket specifies an action involving - a TCP port. TCP hooks not yet supported TODO: implement - a realistic TCP lifecycle hook' - properties: - host: - description: 'Optional: Host name to connect to, - defaults to the pod IP.' - type: string - port: - anyOf: - - type: integer - - type: string - description: Number or name of the port to access - on the container. Number must be in the range - 1 to 65535. Name must be an IANA_SVC_NAME. - x-kubernetes-int-or-string: true - required: - - port - type: object - type: object - preStop: - description: 'PreStop is called immediately before a container - is terminated due to an API request or management event - such as liveness/startup probe failure, preemption, resource - contention, etc. The handler is not called if the container - crashes or exits. The reason for termination is passed - to the handler. The Pod''s termination grace period countdown - begins before the PreStop hooked is executed. Regardless - of the outcome of the handler, the container will eventually - terminate within the Pod''s termination grace period. - Other management of the container blocks until the hook - completes or until the termination grace period is reached. - More info: https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks' - properties: - exec: - description: One and only one of the following should - be specified. Exec specifies the action to take. - properties: - command: - description: Command is the command line to execute - inside the container, the working directory for - the command is root ('/') in the container's - filesystem. The command is simply exec'd, it is - not run inside a shell, so traditional shell instructions - ('|', etc) won't work. To use a shell, you need - to explicitly call out to that shell. Exit status - of 0 is treated as live/healthy and non-zero is - unhealthy. - items: - type: string - type: array - type: object - httpGet: - description: HTTPGet specifies the http request to perform. - properties: - host: - description: Host name to connect to, defaults to - the pod IP. You probably want to set "Host" in - httpHeaders instead. - type: string - httpHeaders: - description: Custom headers to set in the request. - HTTP allows repeated headers. - items: - description: HTTPHeader describes a custom header - to be used in HTTP probes - properties: - name: - description: The header field name - type: string - value: - description: The header field value - type: string - required: - - name - - value - type: object - type: array - path: - description: Path to access on the HTTP server. - type: string - port: - anyOf: - - type: integer - - type: string - description: Name or number of the port to access - on the container. Number must be in the range - 1 to 65535. Name must be an IANA_SVC_NAME. - x-kubernetes-int-or-string: true - scheme: - description: Scheme to use for connecting to the - host. Defaults to HTTP. - type: string - required: - - port - type: object - tcpSocket: - description: 'TCPSocket specifies an action involving - a TCP port. TCP hooks not yet supported TODO: implement - a realistic TCP lifecycle hook' - properties: - host: - description: 'Optional: Host name to connect to, - defaults to the pod IP.' - type: string - port: - anyOf: - - type: integer - - type: string - description: Number or name of the port to access - on the container. Number must be in the range - 1 to 65535. Name must be an IANA_SVC_NAME. - x-kubernetes-int-or-string: true - required: - - port - type: object - type: object - type: object - livenessProbe: - description: 'Periodic probe of container liveness. Container - will be restarted if the probe fails. Cannot be updated. More - info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes' - properties: - exec: - description: One and only one of the following should be - specified. Exec specifies the action to take. - properties: - command: - description: Command is the command line to execute - inside the container, the working directory for the - command is root ('/') in the container's filesystem. - The command is simply exec'd, it is not run inside - a shell, so traditional shell instructions ('|', etc) - won't work. To use a shell, you need to explicitly - call out to that shell. Exit status of 0 is treated - as live/healthy and non-zero is unhealthy. - items: - type: string - type: array - type: object - failureThreshold: - description: Minimum consecutive failures for the probe - to be considered failed after having succeeded. Defaults - to 3. Minimum value is 1. - format: int32 - type: integer - httpGet: - description: HTTPGet specifies the http request to perform. - properties: - host: - description: Host name to connect to, defaults to the - pod IP. You probably want to set "Host" in httpHeaders - instead. - type: string - httpHeaders: - description: Custom headers to set in the request. HTTP - allows repeated headers. - items: - description: HTTPHeader describes a custom header - to be used in HTTP probes - properties: - name: - description: The header field name - type: string - value: - description: The header field value - type: string - required: - - name - - value - type: object - type: array - path: - description: Path to access on the HTTP server. - type: string - port: - anyOf: - - type: integer - - type: string - description: Name or number of the port to access on - the container. Number must be in the range 1 to 65535. - Name must be an IANA_SVC_NAME. - x-kubernetes-int-or-string: true - scheme: - description: Scheme to use for connecting to the host. - Defaults to HTTP. - type: string - required: - - port - type: object - initialDelaySeconds: - description: 'Number of seconds after the container has - started before liveness probes are initiated. More info: - https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes' - format: int32 - type: integer - periodSeconds: - description: How often (in seconds) to perform the probe. - Default to 10 seconds. Minimum value is 1. - format: int32 - type: integer - successThreshold: - description: Minimum consecutive successes for the probe - to be considered successful after having failed. Defaults - to 1. Must be 1 for liveness and startup. Minimum value - is 1. - format: int32 - type: integer - tcpSocket: - description: 'TCPSocket specifies an action involving a - TCP port. TCP hooks not yet supported TODO: implement - a realistic TCP lifecycle hook' - properties: - host: - description: 'Optional: Host name to connect to, defaults - to the pod IP.' - type: string - port: - anyOf: - - type: integer - - type: string - description: Number or name of the port to access on - the container. Number must be in the range 1 to 65535. - Name must be an IANA_SVC_NAME. - x-kubernetes-int-or-string: true - required: - - port - type: object - timeoutSeconds: - description: 'Number of seconds after which the probe times - out. Defaults to 1 second. Minimum value is 1. More info: - https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes' - format: int32 - type: integer - type: object - name: - description: Name of the container specified as a DNS_LABEL. - Each container in a pod must have a unique name (DNS_LABEL). - Cannot be updated. - type: string - ports: - description: List of ports to expose from the container. Exposing - a port here gives the system additional information about - the network connections a container uses, but is primarily - informational. Not specifying a port here DOES NOT prevent - that port from being exposed. Any port which is listening - on the default "0.0.0.0" address inside a container will be - accessible from the network. Cannot be updated. - items: - description: ContainerPort represents a network port in a - single container. - properties: - containerPort: - description: Number of port to expose on the pod's IP - address. This must be a valid port number, 0 < x < 65536. - format: int32 - type: integer - hostIP: - description: What host IP to bind the external port to. - type: string - hostPort: - description: Number of port to expose on the host. If - specified, this must be a valid port number, 0 < x < - 65536. If HostNetwork is specified, this must match - ContainerPort. Most containers do not need this. - format: int32 - type: integer - name: - description: If specified, this must be an IANA_SVC_NAME - and unique within the pod. Each named port in a pod - must have a unique name. Name for the port that can - be referred to by services. - type: string - protocol: - default: TCP - description: Protocol for port. Must be UDP, TCP, or SCTP. - Defaults to "TCP". - type: string - required: - - containerPort - type: object - type: array - x-kubernetes-list-map-keys: - - containerPort - - protocol - x-kubernetes-list-type: map - readinessProbe: - description: 'Periodic probe of container service readiness. - Container will be removed from service endpoints if the probe - fails. Cannot be updated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes' - properties: - exec: - description: One and only one of the following should be - specified. Exec specifies the action to take. - properties: - command: - description: Command is the command line to execute - inside the container, the working directory for the - command is root ('/') in the container's filesystem. - The command is simply exec'd, it is not run inside - a shell, so traditional shell instructions ('|', etc) - won't work. To use a shell, you need to explicitly - call out to that shell. Exit status of 0 is treated - as live/healthy and non-zero is unhealthy. - items: - type: string - type: array - type: object - failureThreshold: - description: Minimum consecutive failures for the probe - to be considered failed after having succeeded. Defaults - to 3. Minimum value is 1. - format: int32 - type: integer - httpGet: - description: HTTPGet specifies the http request to perform. - properties: - host: - description: Host name to connect to, defaults to the - pod IP. You probably want to set "Host" in httpHeaders - instead. - type: string - httpHeaders: - description: Custom headers to set in the request. HTTP - allows repeated headers. - items: - description: HTTPHeader describes a custom header - to be used in HTTP probes - properties: - name: - description: The header field name - type: string - value: - description: The header field value - type: string - required: - - name - - value - type: object - type: array - path: - description: Path to access on the HTTP server. - type: string - port: - anyOf: - - type: integer - - type: string - description: Name or number of the port to access on - the container. Number must be in the range 1 to 65535. - Name must be an IANA_SVC_NAME. - x-kubernetes-int-or-string: true - scheme: - description: Scheme to use for connecting to the host. - Defaults to HTTP. - type: string - required: - - port - type: object - initialDelaySeconds: - description: 'Number of seconds after the container has - started before liveness probes are initiated. More info: - https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes' - format: int32 - type: integer - periodSeconds: - description: How often (in seconds) to perform the probe. - Default to 10 seconds. Minimum value is 1. - format: int32 - type: integer - successThreshold: - description: Minimum consecutive successes for the probe - to be considered successful after having failed. Defaults - to 1. Must be 1 for liveness and startup. Minimum value - is 1. - format: int32 - type: integer - tcpSocket: - description: 'TCPSocket specifies an action involving a - TCP port. TCP hooks not yet supported TODO: implement - a realistic TCP lifecycle hook' - properties: - host: - description: 'Optional: Host name to connect to, defaults - to the pod IP.' - type: string - port: - anyOf: - - type: integer - - type: string - description: Number or name of the port to access on - the container. Number must be in the range 1 to 65535. - Name must be an IANA_SVC_NAME. - x-kubernetes-int-or-string: true - required: - - port - type: object - timeoutSeconds: - description: 'Number of seconds after which the probe times - out. Defaults to 1 second. Minimum value is 1. More info: - https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes' - format: int32 - type: integer - type: object - resources: - description: 'Compute Resources required by this container. - Cannot be updated. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/' - properties: - 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. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/' - 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. If Requests is omitted for a container, - it defaults to Limits if that is explicitly specified, - otherwise to an implementation-defined value. More info: - https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/' - type: object - type: object - securityContext: - description: 'Security options the pod should run with. More - info: https://kubernetes.io/docs/concepts/policy/security-context/ - More info: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/' - properties: - allowPrivilegeEscalation: - description: 'AllowPrivilegeEscalation controls whether - a process can gain more privileges than its parent process. - This bool directly controls if the no_new_privs flag will - be set on the container process. AllowPrivilegeEscalation - is true always when the container is: 1) run as Privileged - 2) has CAP_SYS_ADMIN' - type: boolean - capabilities: - description: The capabilities to add/drop when running containers. - Defaults to the default set of capabilities granted by - the container runtime. - properties: - add: - description: Added capabilities - items: - description: Capability represent POSIX capabilities - type - type: string - type: array - drop: - description: Removed capabilities - items: - description: Capability represent POSIX capabilities - type - type: string - type: array - type: object - privileged: - description: Run container in privileged mode. Processes - in privileged containers are essentially equivalent to - root on the host. Defaults to false. - type: boolean - procMount: - description: procMount denotes the type of proc mount to - use for the containers. The default is DefaultProcMount - which uses the container runtime defaults for readonly - paths and masked paths. This requires the ProcMountType - feature flag to be enabled. - type: string - readOnlyRootFilesystem: - description: Whether this container has a read-only root - filesystem. Default is false. - type: boolean - runAsGroup: - description: The GID to run the entrypoint of the container - process. Uses runtime default if unset. May also be set - in PodSecurityContext. If set in both SecurityContext - and PodSecurityContext, the value specified in SecurityContext - takes precedence. - format: int64 - type: integer - runAsNonRoot: - description: Indicates that the container must run as a - non-root user. If true, the Kubelet will validate the - image at runtime to ensure that it does not run as UID - 0 (root) and fail to start the container if it does. If - unset or false, no such validation will be performed. - May also be set in PodSecurityContext. If set in both - SecurityContext and PodSecurityContext, the value specified - in SecurityContext takes precedence. - type: boolean - runAsUser: - description: The UID to run the entrypoint of the container - process. Defaults to user specified in image metadata - if unspecified. May also be set in PodSecurityContext. If - set in both SecurityContext and PodSecurityContext, the - value specified in SecurityContext takes precedence. - format: int64 - type: integer - seLinuxOptions: - description: The SELinux context to be applied to the container. - If unspecified, the container runtime will allocate a - random SELinux context for each container. May also be - set in PodSecurityContext. If set in both SecurityContext - and PodSecurityContext, the value specified in SecurityContext - takes precedence. - 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 - windowsOptions: - description: The Windows specific settings applied to all - containers. If unspecified, the options from the PodSecurityContext - will be used. If set in both SecurityContext and PodSecurityContext, - the value specified in SecurityContext takes precedence. - properties: - gmsaCredentialSpec: - description: GMSACredentialSpec is where the GMSA admission - webhook (https://github.com/kubernetes-sigs/windows-gmsa) - inlines the contents of the GMSA credential spec named - by the GMSACredentialSpecName field. - type: string - gmsaCredentialSpecName: - description: GMSACredentialSpecName is the name of the - GMSA credential spec to use. - type: string - runAsUserName: - description: The UserName in Windows to run the entrypoint - of the container process. Defaults to the user specified - in image metadata if unspecified. May also be set - in PodSecurityContext. If set in both SecurityContext - and PodSecurityContext, the value specified in SecurityContext - takes precedence. - type: string - type: object - type: object - startupProbe: - description: 'StartupProbe indicates that the Pod has successfully - initialized. If specified, no other probes are executed until - this completes successfully. If this probe fails, the Pod - will be restarted, just as if the livenessProbe failed. This - can be used to provide different probe parameters at the beginning - of a Pod''s lifecycle, when it might take a long time to load - data or warm a cache, than during steady-state operation. - This cannot be updated. This is a beta feature enabled by - the StartupProbe feature flag. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes' - properties: - exec: - description: One and only one of the following should be - specified. Exec specifies the action to take. - properties: - command: - description: Command is the command line to execute - inside the container, the working directory for the - command is root ('/') in the container's filesystem. - The command is simply exec'd, it is not run inside - a shell, so traditional shell instructions ('|', etc) - won't work. To use a shell, you need to explicitly - call out to that shell. Exit status of 0 is treated - as live/healthy and non-zero is unhealthy. - items: - type: string - type: array - type: object - failureThreshold: - description: Minimum consecutive failures for the probe - to be considered failed after having succeeded. Defaults - to 3. Minimum value is 1. - format: int32 - type: integer - httpGet: - description: HTTPGet specifies the http request to perform. - properties: - host: - description: Host name to connect to, defaults to the - pod IP. You probably want to set "Host" in httpHeaders - instead. - type: string - httpHeaders: - description: Custom headers to set in the request. HTTP - allows repeated headers. - items: - description: HTTPHeader describes a custom header - to be used in HTTP probes - properties: - name: - description: The header field name - type: string - value: - description: The header field value - type: string - required: - - name - - value - type: object - type: array - path: - description: Path to access on the HTTP server. - type: string - port: - anyOf: - - type: integer - - type: string - description: Name or number of the port to access on - the container. Number must be in the range 1 to 65535. - Name must be an IANA_SVC_NAME. - x-kubernetes-int-or-string: true - scheme: - description: Scheme to use for connecting to the host. - Defaults to HTTP. - type: string - required: - - port - type: object - initialDelaySeconds: - description: 'Number of seconds after the container has - started before liveness probes are initiated. More info: - https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes' - format: int32 - type: integer - periodSeconds: - description: How often (in seconds) to perform the probe. - Default to 10 seconds. Minimum value is 1. - format: int32 - type: integer - successThreshold: - description: Minimum consecutive successes for the probe - to be considered successful after having failed. Defaults - to 1. Must be 1 for liveness and startup. Minimum value - is 1. - format: int32 - type: integer - tcpSocket: - description: 'TCPSocket specifies an action involving a - TCP port. TCP hooks not yet supported TODO: implement - a realistic TCP lifecycle hook' - properties: - host: - description: 'Optional: Host name to connect to, defaults - to the pod IP.' - type: string - port: - anyOf: - - type: integer - - type: string - description: Number or name of the port to access on - the container. Number must be in the range 1 to 65535. - Name must be an IANA_SVC_NAME. - x-kubernetes-int-or-string: true - required: - - port - type: object - timeoutSeconds: - description: 'Number of seconds after which the probe times - out. Defaults to 1 second. Minimum value is 1. More info: - https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes' - format: int32 - type: integer - type: object - stdin: - description: Whether this container should allocate a buffer - for stdin in the container runtime. If this is not set, reads - from stdin in the container will always result in EOF. Default - is false. - type: boolean - stdinOnce: - description: Whether the container runtime should close the - stdin channel after it has been opened by a single attach. - When stdin is true the stdin stream will remain open across - multiple attach sessions. If stdinOnce is set to true, stdin - is opened on container start, is empty until the first client - attaches to stdin, and then remains open and accepts data - until the client disconnects, at which time stdin is closed - and remains closed until the container is restarted. If this - flag is false, a container processes that reads from stdin - will never receive an EOF. Default is false - type: boolean - terminationMessagePath: - description: 'Optional: Path at which the file to which the - container''s termination message will be written is mounted - into the container''s filesystem. Message written is intended - to be brief final status, such as an assertion failure message. - Will be truncated by the node if greater than 4096 bytes. - The total message length across all containers will be limited - to 12kb. Defaults to /dev/termination-log. Cannot be updated.' - type: string - terminationMessagePolicy: - description: Indicate how the termination message should be - populated. File will use the contents of terminationMessagePath - to populate the container status message on both success and - failure. FallbackToLogsOnError will use the last chunk of - container log output if the termination message file is empty - and the container exited with an error. The log output is - limited to 2048 bytes or 80 lines, whichever is smaller. Defaults - to File. Cannot be updated. - type: string - tty: - description: Whether this container should allocate a TTY for - itself, also requires 'stdin' to be true. Default is false. - type: boolean - volumeDevices: - description: volumeDevices is the list of block devices to be - used by the container. - items: - description: volumeDevice describes a mapping of a raw block - device within a container. - properties: - devicePath: - description: devicePath is the path inside of the container - that the device will be mapped to. - type: string - name: - description: name must match the name of a persistentVolumeClaim - in the pod - type: string - required: - - devicePath - - name - type: object - type: array - volumeMounts: - description: Pod volumes to mount into the container's filesystem. - Cannot be updated. - items: - description: VolumeMount describes a mounting of a Volume - within a container. - properties: - mountPath: - description: Path within the container at which the volume - should be mounted. Must not contain ':'. - type: string - mountPropagation: - description: mountPropagation determines how mounts are - propagated from the host to container and the other - way around. When not set, MountPropagationNone is used. - This field is beta in 1.10. - type: string - name: - description: This must match the Name of a Volume. - type: string - readOnly: - description: Mounted read-only if true, read-write otherwise - (false or unspecified). Defaults to false. - type: boolean - subPath: - description: Path within the volume from which the container's - volume should be mounted. Defaults to "" (volume's root). - type: string - subPathExpr: - description: Expanded path within the volume from which - the container's volume should be mounted. Behaves similarly - to SubPath but environment variable references $(VAR_NAME) - are expanded using the container's environment. Defaults - to "" (volume's root). SubPathExpr and SubPath are mutually - exclusive. - type: string - required: - - mountPath - - name - type: object - type: array - workingDir: - description: Container's working directory. If not specified, - the container runtime's default will be used, which might - be configured in the container image. Cannot be updated. - type: string - required: - - name - type: object - type: array - enforcedNamespaceLabel: - description: EnforcedNamespaceLabel enforces adding a namespace label - of origin for each alert and metric that is user created. The label - value will always be the namespace of the object that is being created. - type: string - evaluationInterval: - description: Interval between consecutive evaluations. - type: string - externalPrefix: - description: The external URL the Thanos Ruler instances will be available - under. This is necessary to generate correct URLs. This is necessary - if Thanos Ruler is not served from root of a DNS name. - type: string - grpcServerTlsConfig: - description: 'GRPCServerTLSConfig configures the gRPC server from - which Thanos Querier reads recorded rule data. Note: Currently only - the CAFile, CertFile, and KeyFile fields are supported. Maps to - the ''--grpc-server-tls-*'' CLI args.' - properties: - ca: - description: Struct containing the CA cert to use for the targets. - properties: - configMap: - description: ConfigMap containing data to use for the targets. - properties: - key: - description: The key to select. - type: string - name: - description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names - TODO: Add other useful fields. apiVersion, kind, uid?' - type: string - optional: - description: Specify whether the ConfigMap or its key - must be defined - type: boolean - required: - - key - type: object - secret: - description: Secret containing data to use for the targets. - properties: - key: - description: The key of the secret to select from. Must - be a valid secret key. - type: string - name: - description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names - TODO: Add other useful fields. apiVersion, kind, uid?' - type: string - optional: - description: Specify whether the Secret or its key must - be defined - type: boolean - required: - - key - type: object - type: object - caFile: - description: Path to the CA cert in the Prometheus container to - use for the targets. - type: string - cert: - description: Struct containing the client cert file for the targets. - properties: - configMap: - description: ConfigMap containing data to use for the targets. - properties: - key: - description: The key to select. - type: string - name: - description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names - TODO: Add other useful fields. apiVersion, kind, uid?' - type: string - optional: - description: Specify whether the ConfigMap or its key - must be defined - type: boolean - required: - - key - type: object - secret: - description: Secret containing data to use for the targets. - properties: - key: - description: The key of the secret to select from. Must - be a valid secret key. - type: string - name: - description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names - TODO: Add other useful fields. apiVersion, kind, uid?' - type: string - optional: - description: Specify whether the Secret or its key must - be defined - type: boolean - required: - - key - type: object - type: object - certFile: - description: Path to the client cert file in the Prometheus container - for the targets. - type: string - insecureSkipVerify: - description: Disable target certificate validation. - type: boolean - keyFile: - description: Path to the client key file in the Prometheus container - for the targets. - type: string - keySecret: - description: Secret containing the client key file for the targets. - properties: - key: - description: The key of the secret to select from. Must be - a valid secret key. - type: string - name: - description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names - TODO: Add other useful fields. apiVersion, kind, uid?' - type: string - optional: - description: Specify whether the Secret or its key must be - defined - type: boolean - required: - - key - type: object - serverName: - description: Used to verify the hostname for the targets. - type: string - type: object - image: - description: Thanos container image URL. - type: string - imagePullSecrets: - description: An optional list of references to secrets in the same - namespace to use for pulling thanos images from registries see http://kubernetes.io/docs/user-guide/images#specifying-imagepullsecrets-on-a-pod - items: - description: LocalObjectReference contains enough information to - let you locate the referenced object inside the same namespace. - properties: - name: - description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names - TODO: Add other useful fields. apiVersion, kind, uid?' - type: string - type: object - type: array - initContainers: - description: 'InitContainers allows adding initContainers to the pod - definition. Those can be used to e.g. fetch secrets for injection - into the ThanosRuler configuration from external sources. Any errors - during the execution of an initContainer will lead to a restart - of the Pod. More info: https://kubernetes.io/docs/concepts/workloads/pods/init-containers/ - Using initContainers for any use case other then secret fetching - is entirely outside the scope of what the maintainers will support - and by doing so, you accept that this behaviour may break at any - time without notice.' - items: - description: A single application container that you want to run - within a pod. - properties: - args: - description: 'Arguments to the entrypoint. The docker image''s - CMD is used if this is not provided. Variable references $(VAR_NAME) - are expanded using the container''s environment. If a variable - cannot be resolved, the reference in the input string will - be unchanged. The $(VAR_NAME) syntax can be escaped with a - double $$, ie: $$(VAR_NAME). Escaped references will never - be expanded, regardless of whether the variable exists or - not. Cannot be updated. More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell' - items: - type: string - type: array - command: - description: 'Entrypoint array. Not executed within a shell. - The docker image''s ENTRYPOINT is used if this is not provided. - Variable references $(VAR_NAME) are expanded using the container''s - environment. If a variable cannot be resolved, the reference - in the input string will be unchanged. The $(VAR_NAME) syntax - can be escaped with a double $$, ie: $$(VAR_NAME). Escaped - references will never be expanded, regardless of whether the - variable exists or not. Cannot be updated. More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell' - items: - type: string - type: array - env: - description: List of environment variables to set in the container. - Cannot be updated. - items: - description: EnvVar represents an environment variable present - in a Container. - properties: - name: - description: Name of the environment variable. Must be - a C_IDENTIFIER. - type: string - value: - description: 'Variable references $(VAR_NAME) are expanded - using the previous defined environment variables in - the container and any service environment variables. - If a variable cannot be resolved, the reference in the - input string will be unchanged. The $(VAR_NAME) syntax - can be escaped with a double $$, ie: $$(VAR_NAME). Escaped - references will never be expanded, regardless of whether - the variable exists or not. Defaults to "".' - type: string - valueFrom: - description: Source for the environment variable's value. - Cannot be used if value is not empty. - properties: - configMapKeyRef: - description: Selects a key of a ConfigMap. - properties: - key: - description: The key to select. - type: string - name: - description: 'Name of the referent. More info: - https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names - TODO: Add other useful fields. apiVersion, kind, - uid?' - type: string - optional: - description: Specify whether the ConfigMap or - its key must be defined - type: boolean - required: - - key - type: object - fieldRef: - description: 'Selects a field of the pod: supports - metadata.name, metadata.namespace, metadata.labels, - metadata.annotations, spec.nodeName, spec.serviceAccountName, - status.hostIP, status.podIP, status.podIPs.' - properties: - apiVersion: - description: Version of the schema the FieldPath - is written in terms of, defaults to "v1". - type: string - fieldPath: - description: Path of the field to select in the - specified API version. - type: string - required: - - fieldPath - type: object - resourceFieldRef: - description: 'Selects a resource of the container: - only resources limits and requests (limits.cpu, - limits.memory, limits.ephemeral-storage, requests.cpu, - requests.memory and requests.ephemeral-storage) - are currently supported.' - properties: - containerName: - description: 'Container name: required for volumes, - optional for env vars' - type: string - divisor: - anyOf: - - type: integer - - type: string - description: Specifies the output format of the - exposed resources, defaults to "1" - pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ - x-kubernetes-int-or-string: true - resource: - description: 'Required: resource to select' - type: string - required: - - resource - type: object - secretKeyRef: - description: Selects a key of a secret in the pod's - namespace - properties: - key: - description: The key of the secret to select from. Must - be a valid secret key. - type: string - name: - description: 'Name of the referent. More info: - https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names - TODO: Add other useful fields. apiVersion, kind, - uid?' - type: string - optional: - description: Specify whether the Secret or its - key must be defined - type: boolean - required: - - key - type: object - type: object - required: - - name - type: object - type: array - envFrom: - description: List of sources to populate environment variables - in the container. The keys defined within a source must be - a C_IDENTIFIER. All invalid keys will be reported as an event - when the container is starting. When a key exists in multiple - sources, the value associated with the last source will take - precedence. Values defined by an Env with a duplicate key - will take precedence. Cannot be updated. - items: - description: EnvFromSource represents the source of a set - of ConfigMaps - properties: - configMapRef: - description: The ConfigMap to select from - properties: - name: - description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names - TODO: Add other useful fields. apiVersion, kind, - uid?' - type: string - optional: - description: Specify whether the ConfigMap must be - defined - type: boolean - type: object - prefix: - description: An optional identifier to prepend to each - key in the ConfigMap. Must be a C_IDENTIFIER. - type: string - secretRef: - description: The Secret to select from - properties: - name: - description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names - TODO: Add other useful fields. apiVersion, kind, - uid?' - type: string - optional: - description: Specify whether the Secret must be defined - type: boolean - type: object - type: object - type: array - image: - description: 'Docker image name. More info: https://kubernetes.io/docs/concepts/containers/images - This field is optional to allow higher level config management - to default or override container images in workload controllers - like Deployments and StatefulSets.' - type: string - imagePullPolicy: - description: 'Image pull policy. One of Always, Never, IfNotPresent. - Defaults to Always if :latest tag is specified, or IfNotPresent - otherwise. Cannot be updated. More info: https://kubernetes.io/docs/concepts/containers/images#updating-images' - type: string - lifecycle: - description: Actions that the management system should take - in response to container lifecycle events. Cannot be updated. - properties: - postStart: - description: 'PostStart is called immediately after a container - is created. If the handler fails, the container is terminated - and restarted according to its restart policy. Other management - of the container blocks until the hook completes. More - info: https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks' - properties: - exec: - description: One and only one of the following should - be specified. Exec specifies the action to take. - properties: - command: - description: Command is the command line to execute - inside the container, the working directory for - the command is root ('/') in the container's - filesystem. The command is simply exec'd, it is - not run inside a shell, so traditional shell instructions - ('|', etc) won't work. To use a shell, you need - to explicitly call out to that shell. Exit status - of 0 is treated as live/healthy and non-zero is - unhealthy. - items: - type: string - type: array - type: object - httpGet: - description: HTTPGet specifies the http request to perform. - properties: - host: - description: Host name to connect to, defaults to - the pod IP. You probably want to set "Host" in - httpHeaders instead. - type: string - httpHeaders: - description: Custom headers to set in the request. - HTTP allows repeated headers. - items: - description: HTTPHeader describes a custom header - to be used in HTTP probes - properties: - name: - description: The header field name - type: string - value: - description: The header field value - type: string - required: - - name - - value - type: object - type: array - path: - description: Path to access on the HTTP server. - type: string - port: - anyOf: - - type: integer - - type: string - description: Name or number of the port to access - on the container. Number must be in the range - 1 to 65535. Name must be an IANA_SVC_NAME. - x-kubernetes-int-or-string: true - scheme: - description: Scheme to use for connecting to the - host. Defaults to HTTP. - type: string - required: - - port - type: object - tcpSocket: - description: 'TCPSocket specifies an action involving - a TCP port. TCP hooks not yet supported TODO: implement - a realistic TCP lifecycle hook' - properties: - host: - description: 'Optional: Host name to connect to, - defaults to the pod IP.' - type: string - port: - anyOf: - - type: integer - - type: string - description: Number or name of the port to access - on the container. Number must be in the range - 1 to 65535. Name must be an IANA_SVC_NAME. - x-kubernetes-int-or-string: true - required: - - port - type: object - type: object - preStop: - description: 'PreStop is called immediately before a container - is terminated due to an API request or management event - such as liveness/startup probe failure, preemption, resource - contention, etc. The handler is not called if the container - crashes or exits. The reason for termination is passed - to the handler. The Pod''s termination grace period countdown - begins before the PreStop hooked is executed. Regardless - of the outcome of the handler, the container will eventually - terminate within the Pod''s termination grace period. - Other management of the container blocks until the hook - completes or until the termination grace period is reached. - More info: https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks' - properties: - exec: - description: One and only one of the following should - be specified. Exec specifies the action to take. - properties: - command: - description: Command is the command line to execute - inside the container, the working directory for - the command is root ('/') in the container's - filesystem. The command is simply exec'd, it is - not run inside a shell, so traditional shell instructions - ('|', etc) won't work. To use a shell, you need - to explicitly call out to that shell. Exit status - of 0 is treated as live/healthy and non-zero is - unhealthy. - items: - type: string - type: array - type: object - httpGet: - description: HTTPGet specifies the http request to perform. - properties: - host: - description: Host name to connect to, defaults to - the pod IP. You probably want to set "Host" in - httpHeaders instead. - type: string - httpHeaders: - description: Custom headers to set in the request. - HTTP allows repeated headers. - items: - description: HTTPHeader describes a custom header - to be used in HTTP probes - properties: - name: - description: The header field name - type: string - value: - description: The header field value - type: string - required: - - name - - value - type: object - type: array - path: - description: Path to access on the HTTP server. - type: string - port: - anyOf: - - type: integer - - type: string - description: Name or number of the port to access - on the container. Number must be in the range - 1 to 65535. Name must be an IANA_SVC_NAME. - x-kubernetes-int-or-string: true - scheme: - description: Scheme to use for connecting to the - host. Defaults to HTTP. - type: string - required: - - port - type: object - tcpSocket: - description: 'TCPSocket specifies an action involving - a TCP port. TCP hooks not yet supported TODO: implement - a realistic TCP lifecycle hook' - properties: - host: - description: 'Optional: Host name to connect to, - defaults to the pod IP.' - type: string - port: - anyOf: - - type: integer - - type: string - description: Number or name of the port to access - on the container. Number must be in the range - 1 to 65535. Name must be an IANA_SVC_NAME. - x-kubernetes-int-or-string: true - required: - - port - type: object - type: object - type: object - livenessProbe: - description: 'Periodic probe of container liveness. Container - will be restarted if the probe fails. Cannot be updated. More - info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes' - properties: - exec: - description: One and only one of the following should be - specified. Exec specifies the action to take. - properties: - command: - description: Command is the command line to execute - inside the container, the working directory for the - command is root ('/') in the container's filesystem. - The command is simply exec'd, it is not run inside - a shell, so traditional shell instructions ('|', etc) - won't work. To use a shell, you need to explicitly - call out to that shell. Exit status of 0 is treated - as live/healthy and non-zero is unhealthy. - items: - type: string - type: array - type: object - failureThreshold: - description: Minimum consecutive failures for the probe - to be considered failed after having succeeded. Defaults - to 3. Minimum value is 1. - format: int32 - type: integer - httpGet: - description: HTTPGet specifies the http request to perform. - properties: - host: - description: Host name to connect to, defaults to the - pod IP. You probably want to set "Host" in httpHeaders - instead. - type: string - httpHeaders: - description: Custom headers to set in the request. HTTP - allows repeated headers. - items: - description: HTTPHeader describes a custom header - to be used in HTTP probes - properties: - name: - description: The header field name - type: string - value: - description: The header field value - type: string - required: - - name - - value - type: object - type: array - path: - description: Path to access on the HTTP server. - type: string - port: - anyOf: - - type: integer - - type: string - description: Name or number of the port to access on - the container. Number must be in the range 1 to 65535. - Name must be an IANA_SVC_NAME. - x-kubernetes-int-or-string: true - scheme: - description: Scheme to use for connecting to the host. - Defaults to HTTP. - type: string - required: - - port - type: object - initialDelaySeconds: - description: 'Number of seconds after the container has - started before liveness probes are initiated. More info: - https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes' - format: int32 - type: integer - periodSeconds: - description: How often (in seconds) to perform the probe. - Default to 10 seconds. Minimum value is 1. - format: int32 - type: integer - successThreshold: - description: Minimum consecutive successes for the probe - to be considered successful after having failed. Defaults - to 1. Must be 1 for liveness and startup. Minimum value - is 1. - format: int32 - type: integer - tcpSocket: - description: 'TCPSocket specifies an action involving a - TCP port. TCP hooks not yet supported TODO: implement - a realistic TCP lifecycle hook' - properties: - host: - description: 'Optional: Host name to connect to, defaults - to the pod IP.' - type: string - port: - anyOf: - - type: integer - - type: string - description: Number or name of the port to access on - the container. Number must be in the range 1 to 65535. - Name must be an IANA_SVC_NAME. - x-kubernetes-int-or-string: true - required: - - port - type: object - timeoutSeconds: - description: 'Number of seconds after which the probe times - out. Defaults to 1 second. Minimum value is 1. More info: - https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes' - format: int32 - type: integer - type: object - name: - description: Name of the container specified as a DNS_LABEL. - Each container in a pod must have a unique name (DNS_LABEL). - Cannot be updated. - type: string - ports: - description: List of ports to expose from the container. Exposing - a port here gives the system additional information about - the network connections a container uses, but is primarily - informational. Not specifying a port here DOES NOT prevent - that port from being exposed. Any port which is listening - on the default "0.0.0.0" address inside a container will be - accessible from the network. Cannot be updated. - items: - description: ContainerPort represents a network port in a - single container. - properties: - containerPort: - description: Number of port to expose on the pod's IP - address. This must be a valid port number, 0 < x < 65536. - format: int32 - type: integer - hostIP: - description: What host IP to bind the external port to. - type: string - hostPort: - description: Number of port to expose on the host. If - specified, this must be a valid port number, 0 < x < - 65536. If HostNetwork is specified, this must match - ContainerPort. Most containers do not need this. - format: int32 - type: integer - name: - description: If specified, this must be an IANA_SVC_NAME - and unique within the pod. Each named port in a pod - must have a unique name. Name for the port that can - be referred to by services. - type: string - protocol: - default: TCP - description: Protocol for port. Must be UDP, TCP, or SCTP. - Defaults to "TCP". - type: string - required: - - containerPort - type: object - type: array - x-kubernetes-list-map-keys: - - containerPort - - protocol - x-kubernetes-list-type: map - readinessProbe: - description: 'Periodic probe of container service readiness. - Container will be removed from service endpoints if the probe - fails. Cannot be updated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes' - properties: - exec: - description: One and only one of the following should be - specified. Exec specifies the action to take. - properties: - command: - description: Command is the command line to execute - inside the container, the working directory for the - command is root ('/') in the container's filesystem. - The command is simply exec'd, it is not run inside - a shell, so traditional shell instructions ('|', etc) - won't work. To use a shell, you need to explicitly - call out to that shell. Exit status of 0 is treated - as live/healthy and non-zero is unhealthy. - items: - type: string - type: array - type: object - failureThreshold: - description: Minimum consecutive failures for the probe - to be considered failed after having succeeded. Defaults - to 3. Minimum value is 1. - format: int32 - type: integer - httpGet: - description: HTTPGet specifies the http request to perform. - properties: - host: - description: Host name to connect to, defaults to the - pod IP. You probably want to set "Host" in httpHeaders - instead. - type: string - httpHeaders: - description: Custom headers to set in the request. HTTP - allows repeated headers. - items: - description: HTTPHeader describes a custom header - to be used in HTTP probes - properties: - name: - description: The header field name - type: string - value: - description: The header field value - type: string - required: - - name - - value - type: object - type: array - path: - description: Path to access on the HTTP server. - type: string - port: - anyOf: - - type: integer - - type: string - description: Name or number of the port to access on - the container. Number must be in the range 1 to 65535. - Name must be an IANA_SVC_NAME. - x-kubernetes-int-or-string: true - scheme: - description: Scheme to use for connecting to the host. - Defaults to HTTP. - type: string - required: - - port - type: object - initialDelaySeconds: - description: 'Number of seconds after the container has - started before liveness probes are initiated. More info: - https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes' - format: int32 - type: integer - periodSeconds: - description: How often (in seconds) to perform the probe. - Default to 10 seconds. Minimum value is 1. - format: int32 - type: integer - successThreshold: - description: Minimum consecutive successes for the probe - to be considered successful after having failed. Defaults - to 1. Must be 1 for liveness and startup. Minimum value - is 1. - format: int32 - type: integer - tcpSocket: - description: 'TCPSocket specifies an action involving a - TCP port. TCP hooks not yet supported TODO: implement - a realistic TCP lifecycle hook' - properties: - host: - description: 'Optional: Host name to connect to, defaults - to the pod IP.' - type: string - port: - anyOf: - - type: integer - - type: string - description: Number or name of the port to access on - the container. Number must be in the range 1 to 65535. - Name must be an IANA_SVC_NAME. - x-kubernetes-int-or-string: true - required: - - port - type: object - timeoutSeconds: - description: 'Number of seconds after which the probe times - out. Defaults to 1 second. Minimum value is 1. More info: - https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes' - format: int32 - type: integer - type: object - resources: - description: 'Compute Resources required by this container. - Cannot be updated. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/' - properties: - 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. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/' - 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. If Requests is omitted for a container, - it defaults to Limits if that is explicitly specified, - otherwise to an implementation-defined value. More info: - https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/' - type: object - type: object - securityContext: - description: 'Security options the pod should run with. More - info: https://kubernetes.io/docs/concepts/policy/security-context/ - More info: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/' - properties: - allowPrivilegeEscalation: - description: 'AllowPrivilegeEscalation controls whether - a process can gain more privileges than its parent process. - This bool directly controls if the no_new_privs flag will - be set on the container process. AllowPrivilegeEscalation - is true always when the container is: 1) run as Privileged - 2) has CAP_SYS_ADMIN' - type: boolean - capabilities: - description: The capabilities to add/drop when running containers. - Defaults to the default set of capabilities granted by - the container runtime. - properties: - add: - description: Added capabilities - items: - description: Capability represent POSIX capabilities - type - type: string - type: array - drop: - description: Removed capabilities - items: - description: Capability represent POSIX capabilities - type - type: string - type: array - type: object - privileged: - description: Run container in privileged mode. Processes - in privileged containers are essentially equivalent to - root on the host. Defaults to false. - type: boolean - procMount: - description: procMount denotes the type of proc mount to - use for the containers. The default is DefaultProcMount - which uses the container runtime defaults for readonly - paths and masked paths. This requires the ProcMountType - feature flag to be enabled. - type: string - readOnlyRootFilesystem: - description: Whether this container has a read-only root - filesystem. Default is false. - type: boolean - runAsGroup: - description: The GID to run the entrypoint of the container - process. Uses runtime default if unset. May also be set - in PodSecurityContext. If set in both SecurityContext - and PodSecurityContext, the value specified in SecurityContext - takes precedence. - format: int64 - type: integer - runAsNonRoot: - description: Indicates that the container must run as a - non-root user. If true, the Kubelet will validate the - image at runtime to ensure that it does not run as UID - 0 (root) and fail to start the container if it does. If - unset or false, no such validation will be performed. - May also be set in PodSecurityContext. If set in both - SecurityContext and PodSecurityContext, the value specified - in SecurityContext takes precedence. - type: boolean - runAsUser: - description: The UID to run the entrypoint of the container - process. Defaults to user specified in image metadata - if unspecified. May also be set in PodSecurityContext. If - set in both SecurityContext and PodSecurityContext, the - value specified in SecurityContext takes precedence. - format: int64 - type: integer - seLinuxOptions: - description: The SELinux context to be applied to the container. - If unspecified, the container runtime will allocate a - random SELinux context for each container. May also be - set in PodSecurityContext. If set in both SecurityContext - and PodSecurityContext, the value specified in SecurityContext - takes precedence. - 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 - windowsOptions: - description: The Windows specific settings applied to all - containers. If unspecified, the options from the PodSecurityContext - will be used. If set in both SecurityContext and PodSecurityContext, - the value specified in SecurityContext takes precedence. - properties: - gmsaCredentialSpec: - description: GMSACredentialSpec is where the GMSA admission - webhook (https://github.com/kubernetes-sigs/windows-gmsa) - inlines the contents of the GMSA credential spec named - by the GMSACredentialSpecName field. - type: string - gmsaCredentialSpecName: - description: GMSACredentialSpecName is the name of the - GMSA credential spec to use. - type: string - runAsUserName: - description: The UserName in Windows to run the entrypoint - of the container process. Defaults to the user specified - in image metadata if unspecified. May also be set - in PodSecurityContext. If set in both SecurityContext - and PodSecurityContext, the value specified in SecurityContext - takes precedence. - type: string - type: object - type: object - startupProbe: - description: 'StartupProbe indicates that the Pod has successfully - initialized. If specified, no other probes are executed until - this completes successfully. If this probe fails, the Pod - will be restarted, just as if the livenessProbe failed. This - can be used to provide different probe parameters at the beginning - of a Pod''s lifecycle, when it might take a long time to load - data or warm a cache, than during steady-state operation. - This cannot be updated. This is a beta feature enabled by - the StartupProbe feature flag. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes' - properties: - exec: - description: One and only one of the following should be - specified. Exec specifies the action to take. - properties: - command: - description: Command is the command line to execute - inside the container, the working directory for the - command is root ('/') in the container's filesystem. - The command is simply exec'd, it is not run inside - a shell, so traditional shell instructions ('|', etc) - won't work. To use a shell, you need to explicitly - call out to that shell. Exit status of 0 is treated - as live/healthy and non-zero is unhealthy. - items: - type: string - type: array - type: object - failureThreshold: - description: Minimum consecutive failures for the probe - to be considered failed after having succeeded. Defaults - to 3. Minimum value is 1. - format: int32 - type: integer - httpGet: - description: HTTPGet specifies the http request to perform. - properties: - host: - description: Host name to connect to, defaults to the - pod IP. You probably want to set "Host" in httpHeaders - instead. - type: string - httpHeaders: - description: Custom headers to set in the request. HTTP - allows repeated headers. - items: - description: HTTPHeader describes a custom header - to be used in HTTP probes - properties: - name: - description: The header field name - type: string - value: - description: The header field value - type: string - required: - - name - - value - type: object - type: array - path: - description: Path to access on the HTTP server. - type: string - port: - anyOf: - - type: integer - - type: string - description: Name or number of the port to access on - the container. Number must be in the range 1 to 65535. - Name must be an IANA_SVC_NAME. - x-kubernetes-int-or-string: true - scheme: - description: Scheme to use for connecting to the host. - Defaults to HTTP. - type: string - required: - - port - type: object - initialDelaySeconds: - description: 'Number of seconds after the container has - started before liveness probes are initiated. More info: - https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes' - format: int32 - type: integer - periodSeconds: - description: How often (in seconds) to perform the probe. - Default to 10 seconds. Minimum value is 1. - format: int32 - type: integer - successThreshold: - description: Minimum consecutive successes for the probe - to be considered successful after having failed. Defaults - to 1. Must be 1 for liveness and startup. Minimum value - is 1. - format: int32 - type: integer - tcpSocket: - description: 'TCPSocket specifies an action involving a - TCP port. TCP hooks not yet supported TODO: implement - a realistic TCP lifecycle hook' - properties: - host: - description: 'Optional: Host name to connect to, defaults - to the pod IP.' - type: string - port: - anyOf: - - type: integer - - type: string - description: Number or name of the port to access on - the container. Number must be in the range 1 to 65535. - Name must be an IANA_SVC_NAME. - x-kubernetes-int-or-string: true - required: - - port - type: object - timeoutSeconds: - description: 'Number of seconds after which the probe times - out. Defaults to 1 second. Minimum value is 1. More info: - https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes' - format: int32 - type: integer - type: object - stdin: - description: Whether this container should allocate a buffer - for stdin in the container runtime. If this is not set, reads - from stdin in the container will always result in EOF. Default - is false. - type: boolean - stdinOnce: - description: Whether the container runtime should close the - stdin channel after it has been opened by a single attach. - When stdin is true the stdin stream will remain open across - multiple attach sessions. If stdinOnce is set to true, stdin - is opened on container start, is empty until the first client - attaches to stdin, and then remains open and accepts data - until the client disconnects, at which time stdin is closed - and remains closed until the container is restarted. If this - flag is false, a container processes that reads from stdin - will never receive an EOF. Default is false - type: boolean - terminationMessagePath: - description: 'Optional: Path at which the file to which the - container''s termination message will be written is mounted - into the container''s filesystem. Message written is intended - to be brief final status, such as an assertion failure message. - Will be truncated by the node if greater than 4096 bytes. - The total message length across all containers will be limited - to 12kb. Defaults to /dev/termination-log. Cannot be updated.' - type: string - terminationMessagePolicy: - description: Indicate how the termination message should be - populated. File will use the contents of terminationMessagePath - to populate the container status message on both success and - failure. FallbackToLogsOnError will use the last chunk of - container log output if the termination message file is empty - and the container exited with an error. The log output is - limited to 2048 bytes or 80 lines, whichever is smaller. Defaults - to File. Cannot be updated. - type: string - tty: - description: Whether this container should allocate a TTY for - itself, also requires 'stdin' to be true. Default is false. - type: boolean - volumeDevices: - description: volumeDevices is the list of block devices to be - used by the container. - items: - description: volumeDevice describes a mapping of a raw block - device within a container. - properties: - devicePath: - description: devicePath is the path inside of the container - that the device will be mapped to. - type: string - name: - description: name must match the name of a persistentVolumeClaim - in the pod - type: string - required: - - devicePath - - name - type: object - type: array - volumeMounts: - description: Pod volumes to mount into the container's filesystem. - Cannot be updated. - items: - description: VolumeMount describes a mounting of a Volume - within a container. - properties: - mountPath: - description: Path within the container at which the volume - should be mounted. Must not contain ':'. - type: string - mountPropagation: - description: mountPropagation determines how mounts are - propagated from the host to container and the other - way around. When not set, MountPropagationNone is used. - This field is beta in 1.10. - type: string - name: - description: This must match the Name of a Volume. - type: string - readOnly: - description: Mounted read-only if true, read-write otherwise - (false or unspecified). Defaults to false. - type: boolean - subPath: - description: Path within the volume from which the container's - volume should be mounted. Defaults to "" (volume's root). - type: string - subPathExpr: - description: Expanded path within the volume from which - the container's volume should be mounted. Behaves similarly - to SubPath but environment variable references $(VAR_NAME) - are expanded using the container's environment. Defaults - to "" (volume's root). SubPathExpr and SubPath are mutually - exclusive. - type: string - required: - - mountPath - - name - type: object - type: array - workingDir: - description: Container's working directory. If not specified, - the container runtime's default will be used, which might - be configured in the container image. Cannot be updated. - type: string - required: - - name - type: object - type: array - labels: - additionalProperties: - type: string - description: Labels configure the external label pairs to ThanosRuler. - If not provided, default replica label `thanos_ruler_replica` will - be added as a label and be dropped in alerts. - type: object - listenLocal: - description: ListenLocal makes the Thanos ruler listen on loopback, - so that it does not bind against the Pod IP. - type: boolean - logFormat: - description: Log format for ThanosRuler to be configured with. - type: string - logLevel: - description: Log level for ThanosRuler to be configured with. - type: string - nodeSelector: - additionalProperties: - type: string - description: Define which Nodes the Pods are scheduled on. - type: object - objectStorageConfig: - description: ObjectStorageConfig configures object storage in Thanos. - Alternative to ObjectStorageConfigFile, and lower order priority. - properties: - key: - description: The key of the secret to select from. Must be a - valid secret key. - type: string - name: - description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names - TODO: Add other useful fields. apiVersion, kind, uid?' - type: string - optional: - description: Specify whether the Secret or its key must be defined - type: boolean - required: - - key - type: object - objectStorageConfigFile: - description: ObjectStorageConfigFile specifies the path of the object - storage configuration file. When used alongside with ObjectStorageConfig, - ObjectStorageConfigFile takes precedence. - type: string - paused: - description: When a ThanosRuler deployment is paused, no actions except - for deletion will be performed on the underlying objects. - type: boolean - podMetadata: - description: PodMetadata contains Labels and Annotations gets propagated - to the thanos ruler pods. - properties: - annotations: - additionalProperties: - type: string - description: 'Annotations is an unstructured key value map stored - with a resource that may be set by external tools to store and - retrieve arbitrary metadata. They are not queryable and should - be preserved when modifying objects. More info: http://kubernetes.io/docs/user-guide/annotations' - type: object - labels: - additionalProperties: - type: string - description: 'Map of string keys and values that can be used to - organize and categorize (scope and select) objects. May match - selectors of replication controllers and services. More info: - http://kubernetes.io/docs/user-guide/labels' - type: object - name: - description: 'Name must be unique within a namespace. Is required - when creating resources, although some resources may allow a - client to request the generation of an appropriate name automatically. - Name is primarily intended for creation idempotence and configuration - definition. Cannot be updated. More info: http://kubernetes.io/docs/user-guide/identifiers#names' - type: string - type: object - portName: - description: Port name used for the pods and governing service. This - defaults to web - type: string - priorityClassName: - description: Priority class assigned to the Pods - type: string - prometheusRulesExcludedFromEnforce: - description: PrometheusRulesExcludedFromEnforce - list of Prometheus - rules to be excluded from enforcing of adding namespace labels. - Works only if enforcedNamespaceLabel set to true. Make sure both - ruleNamespace and ruleName are set for each pair - items: - description: PrometheusRuleExcludeConfig enables users to configure - excluded PrometheusRule names and their namespaces to be ignored - while enforcing namespace label for alerts and metrics. - properties: - ruleName: - description: RuleNamespace - name of excluded rule - type: string - ruleNamespace: - description: RuleNamespace - namespace of excluded rule - type: string - required: - - ruleName - - ruleNamespace - type: object - type: array - queryConfig: - description: Define configuration for connecting to thanos query instances. - If this is defined, the QueryEndpoints field will be ignored. Maps - to the `query.config` CLI argument. Only available with thanos v0.11.0 - and higher. - properties: - key: - description: The key of the secret to select from. Must be a - valid secret key. - type: string - name: - description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names - TODO: Add other useful fields. apiVersion, kind, uid?' - type: string - optional: - description: Specify whether the Secret or its key must be defined - type: boolean - required: - - key - type: object - queryEndpoints: - description: QueryEndpoints defines Thanos querier endpoints from - which to query metrics. Maps to the --query flag of thanos ruler. - items: - type: string - type: array - replicas: - description: Number of thanos ruler instances to deploy. - format: int32 - type: integer - resources: - description: Resources defines the resource requirements for single - Pods. If not provided, no requests/limits will be set - properties: - 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. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/' - 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. If Requests is omitted for a container, - it defaults to Limits if that is explicitly specified, otherwise - to an implementation-defined value. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/' - type: object - type: object - retention: - description: Time duration ThanosRuler shall retain data for. Default - is '24h', and must match the regular expression `[0-9]+(ms|s|m|h|d|w|y)` - (milliseconds seconds minutes hours days weeks years). - type: string - routePrefix: - description: The route prefix ThanosRuler registers HTTP handlers - for. This allows thanos UI to be served on a sub-path. - type: string - ruleNamespaceSelector: - description: Namespaces to be selected for Rules discovery. If unspecified, - only the same namespace as the ThanosRuler object is in is used. - 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 relates 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. Valid 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, the values array must be non-empty. - If the operator is Exists or DoesNotExist, the values - array must be empty. This array is replaced during a strategic - merge patch. - items: - type: string - type: array - required: - - key - - operator - type: object - type: array - matchLabels: - additionalProperties: - type: string - description: matchLabels is a map of {key,value} pairs. A single - {key,value} in the matchLabels map is equivalent to an element - of matchExpressions, whose key field is "key", the operator - is "In", and the values array contains only "value". The requirements - are ANDed. - type: object - type: object - ruleSelector: - description: A label selector to select which PrometheusRules to mount - for alerting and recording. - 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 relates 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. Valid 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, the values array must be non-empty. - If the operator is Exists or DoesNotExist, the values - array must be empty. This array is replaced during a strategic - merge patch. - items: - type: string - type: array - required: - - key - - operator - type: object - type: array - matchLabels: - additionalProperties: - type: string - description: matchLabels is a map of {key,value} pairs. A single - {key,value} in the matchLabels map is equivalent to an element - of matchExpressions, whose key field is "key", the operator - is "In", and the values array contains only "value". The requirements - are ANDed. - type: object - type: object - securityContext: - description: SecurityContext holds pod-level security attributes and - common container settings. This defaults to the default PodSecurityContext. - properties: - fsGroup: - description: "A special supplemental group that applies to all - containers in a pod. Some volume types allow the Kubelet to - change the ownership of that volume to be owned by the pod: - \n 1. The owning GID will be the FSGroup 2. The setgid bit is - set (new files created in the volume will be owned by FSGroup) - 3. The permission bits are OR'd with rw-rw---- \n If unset, - the Kubelet will not modify the ownership and permissions of - any volume." - format: int64 - type: integer - fsGroupChangePolicy: - description: 'fsGroupChangePolicy defines behavior of changing - ownership and permission of the volume before being exposed - inside Pod. This field will only apply to volume types which - support fsGroup based ownership(and permissions). It will have - no effect on ephemeral volume types such as: secret, configmaps - and emptydir. Valid values are "OnRootMismatch" and "Always". - If not specified defaults to "Always".' - type: string - runAsGroup: - description: The GID to run the entrypoint of the container process. - Uses runtime default if unset. May also be set in SecurityContext. If - set in both SecurityContext and PodSecurityContext, the value - specified in SecurityContext takes precedence for that container. - format: int64 - type: integer - runAsNonRoot: - description: Indicates that the container must run as a non-root - user. If true, the Kubelet will validate the image at runtime - to ensure that it does not run as UID 0 (root) and fail to start - the container if it does. If unset or false, no such validation - will be performed. May also be set in SecurityContext. If set - in both SecurityContext and PodSecurityContext, the value specified - in SecurityContext takes precedence. - type: boolean - runAsUser: - description: The UID to run the entrypoint of the container process. - Defaults to user specified in image metadata if unspecified. - May also be set in SecurityContext. If set in both SecurityContext - and PodSecurityContext, the value specified in SecurityContext - takes precedence for that container. - format: int64 - type: integer - seLinuxOptions: - description: The SELinux context to be applied to all containers. - If unspecified, the container runtime will allocate a random - SELinux context for each container. May also be set in SecurityContext. If - set in both SecurityContext and PodSecurityContext, the value - specified in SecurityContext takes precedence for that container. - 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 - supplementalGroups: - description: A list of groups applied to the first process run - in each container, in addition to the container's primary GID. If - unspecified, no groups will be added to any container. - items: - format: int64 - type: integer - type: array - sysctls: - description: Sysctls hold a list of namespaced sysctls used for - the pod. Pods with unsupported sysctls (by the container runtime) - might fail to launch. - 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 - type: array - windowsOptions: - description: The Windows specific settings applied to all containers. - If unspecified, the options within a container's SecurityContext - will be used. If set in both SecurityContext and PodSecurityContext, - the value specified in SecurityContext takes precedence. - properties: - gmsaCredentialSpec: - description: GMSACredentialSpec is where the GMSA admission - webhook (https://github.com/kubernetes-sigs/windows-gmsa) - inlines the contents of the GMSA credential spec named by - the GMSACredentialSpecName field. - type: string - gmsaCredentialSpecName: - description: GMSACredentialSpecName is the name of the GMSA - credential spec to use. - type: string - runAsUserName: - description: The UserName in Windows to run the entrypoint - of the container process. Defaults to the user specified - in image metadata if unspecified. May also be set in PodSecurityContext. - If set in both SecurityContext and PodSecurityContext, the - value specified in SecurityContext takes precedence. - type: string - type: object - type: object - serviceAccountName: - description: ServiceAccountName is the name of the ServiceAccount - to use to run the Thanos Ruler Pods. - type: string - storage: - description: Storage spec to specify how storage shall be used. - properties: - disableMountSubPath: - description: 'Deprecated: subPath usage will be disabled by default - in a future release, this option will become unnecessary. DisableMountSubPath - allows to remove any subPath usage in volume mounts.' - type: boolean - emptyDir: - description: 'EmptyDirVolumeSource to be used by the Prometheus - StatefulSets. If specified, used in place of any volumeClaimTemplate. - More info: https://kubernetes.io/docs/concepts/storage/volumes/#emptydir' - properties: - medium: - description: 'What type of storage medium should back this - directory. The default is "" which means to use the node''s - default medium. Must be an empty string (default) or Memory. - More info: https://kubernetes.io/docs/concepts/storage/volumes#emptydir' - type: string - sizeLimit: - anyOf: - - type: integer - - type: string - description: 'Total amount of local storage required for this - EmptyDir volume. The size limit is also applicable for memory - medium. The maximum usage on memory medium EmptyDir would - be the minimum value between the SizeLimit specified here - and the sum of memory limits of all containers in a pod. - The default is nil which means that the limit is undefined. - More info: http://kubernetes.io/docs/user-guide/volumes#emptydir' - pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ - x-kubernetes-int-or-string: true - type: object - volumeClaimTemplate: - description: A PVC spec to be used by the Prometheus StatefulSets. - properties: - apiVersion: - description: 'APIVersion defines the versioned schema of this - representation of an object. Servers should convert recognized - schemas to the latest internal value, and may reject unrecognized - values. More 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. Servers may infer this - from the endpoint the client submits requests to. Cannot - be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds' - type: string - metadata: - description: EmbeddedMetadata contains metadata relevant to - an EmbeddedResource. - properties: - annotations: - additionalProperties: - type: string - description: 'Annotations is an unstructured key value - map stored with a resource that may be set by external - tools to store and retrieve arbitrary metadata. They - are not queryable and should be preserved when modifying - objects. More info: http://kubernetes.io/docs/user-guide/annotations' - type: object - labels: - additionalProperties: - type: string - description: 'Map of string keys and values that can be - used to organize and categorize (scope and select) objects. - May match selectors of replication controllers and services. - More info: http://kubernetes.io/docs/user-guide/labels' - type: object - name: - description: 'Name must be unique within a namespace. - Is required when creating resources, although some resources - may allow a client to request the generation of an appropriate - name automatically. Name is primarily intended for creation - idempotence and configuration definition. Cannot be - updated. More info: http://kubernetes.io/docs/user-guide/identifiers#names' - type: string - type: object - spec: - description: 'Spec defines the desired characteristics of - a volume requested by a pod author. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims' - properties: - accessModes: - description: 'AccessModes contains the desired access - modes the volume should have. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#access-modes-1' - items: - type: string - type: array - dataSource: - description: 'This field can be used to specify either: - * An existing VolumeSnapshot object (snapshot.storage.k8s.io/VolumeSnapshot - - Beta) * An existing PVC (PersistentVolumeClaim) * - An existing custom resource/object that implements data - population (Alpha) In order to use VolumeSnapshot object - types, the appropriate feature gate must be enabled - (VolumeSnapshotDataSource or AnyVolumeDataSource) If - the provisioner or an external controller can support - the specified data source, it will create a new volume - based on the contents of the specified data source. - If the specified data source is not supported, the volume - will not be created and the failure will be reported - as an event. In the future, we plan to support more - data source types and the behavior of the provisioner - may change.' - properties: - apiGroup: - description: APIGroup is the group for the resource - being referenced. If APIGroup is not specified, - the specified Kind must be in the core API group. - For any other third-party types, APIGroup is required. - type: string - kind: - description: Kind is the type of resource being referenced - type: string - name: - description: Name is the name of resource being referenced - type: string - required: - - kind - - name - type: object - resources: - description: 'Resources represents the minimum resources - the volume should have. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#resources' - properties: - 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. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/' - 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. If Requests is omitted - for a container, it defaults to Limits if that is - explicitly specified, otherwise to an implementation-defined - value. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/' - type: object - type: object - selector: - description: A label query over volumes to consider for - binding. - 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 - relates 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. Valid 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, the values - array must be non-empty. If the operator is - Exists or DoesNotExist, the values array must - be empty. This array is replaced during a - strategic merge patch. - items: - type: string - type: array - required: - - key - - operator - type: object - type: array - matchLabels: - additionalProperties: - type: string - description: matchLabels is a map of {key,value} pairs. - A single {key,value} in the matchLabels map is equivalent - to an element of matchExpressions, whose key field - is "key", the operator is "In", and the values array - contains only "value". The requirements are ANDed. - type: object - type: object - storageClassName: - description: 'Name of the StorageClass required by the - claim. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#class-1' - type: string - volumeMode: - description: volumeMode defines what type of volume is - required by the claim. Value of Filesystem is implied - when not included in claim spec. - type: string - volumeName: - description: VolumeName is the binding reference to the - PersistentVolume backing this claim. - type: string - type: object - status: - description: 'Status represents the current information/status - of a persistent volume claim. Read-only. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims' - properties: - accessModes: - description: 'AccessModes contains the actual access modes - the volume backing the PVC has. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#access-modes-1' - items: - type: string - type: array - capacity: - 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: Represents the actual resources of the underlying - volume. - type: object - conditions: - description: Current Condition of persistent volume claim. - If underlying persistent volume is being resized then - the Condition will be set to 'ResizeStarted'. - items: - description: PersistentVolumeClaimCondition contails - details about state of pvc - properties: - lastProbeTime: - description: Last time we probed the condition. - format: date-time - type: string - lastTransitionTime: - description: Last time the condition transitioned - from one status to another. - format: date-time - type: string - message: - description: Human-readable message indicating details - about last transition. - type: string - reason: - description: Unique, this should be a short, machine - understandable string that gives the reason for - condition's last transition. If it reports "ResizeStarted" - that means the underlying persistent volume is - being resized. - type: string - status: - type: string - type: - description: PersistentVolumeClaimConditionType - is a valid value of PersistentVolumeClaimCondition.Type - type: string - required: - - status - - type - type: object - type: array - phase: - description: Phase represents the current phase of PersistentVolumeClaim. - type: string - type: object - type: object - type: object - tolerations: - description: If specified, the pod's tolerations. - items: - description: The pod this Toleration is attached to tolerates any - taint that matches the triple using the matching - operator . - properties: - effect: - description: Effect indicates the taint effect to match. Empty - means match all taint effects. When 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. If 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. Valid operators are Exists and Equal. Defaults to Equal. - Exists is equivalent to wildcard for value, so that a pod - can tolerate all taints of a particular category. - type: string - tolerationSeconds: - description: TolerationSeconds represents the period of time - the toleration (which must be of effect NoExecute, otherwise - this field is ignored) tolerates the taint. By default, it - is not set, which means tolerate the taint forever (do not - evict). Zero and negative values will be treated as 0 (evict - immediately) by the system. - format: int64 - type: integer - value: - description: Value is the taint value the toleration matches - to. If the operator is Exists, the value should be empty, - otherwise just a regular string. - type: string - type: object - type: array - topologySpreadConstraints: - description: If specified, the pod's topology spread constraints. - items: - description: TopologySpreadConstraint specifies how to spread matching - pods among the given topology. - properties: - labelSelector: - description: LabelSelector is used to find matching pods. Pods - that match this label selector are counted to determine the - number of pods in their corresponding topology domain. - 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 relates - 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. Valid 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, the values array - must be non-empty. If the operator is Exists or - DoesNotExist, the values array must be empty. This - array is replaced during a strategic merge patch. - items: - type: string - type: array - required: - - key - - operator - type: object - type: array - matchLabels: - additionalProperties: - type: string - description: matchLabels is a map of {key,value} pairs. - A single {key,value} in the matchLabels map is equivalent - to an element of matchExpressions, whose key field is - "key", the operator is "In", and the values array contains - only "value". The requirements are ANDed. - type: object - type: object - maxSkew: - description: 'MaxSkew describes the degree to which pods may - be unevenly distributed. It''s the maximum permitted difference - between the number of matching pods in any two topology domains - of a given topology type. For example, in a 3-zone cluster, - MaxSkew is set to 1, and pods with the same labelSelector - spread as 1/1/0: | zone1 | zone2 | zone3 | | P | P | | - - if MaxSkew is 1, incoming pod can only be scheduled to zone3 - to become 1/1/1; scheduling it onto zone1(zone2) would make - the ActualSkew(2-0) on zone1(zone2) violate MaxSkew(1). - - if MaxSkew is 2, incoming pod can be scheduled onto any zone. - It''s a required field. Default value is 1 and 0 is not allowed.' - format: int32 - type: integer - topologyKey: - description: TopologyKey is the key of node labels. Nodes that - have a label with this key and identical values are considered - to be in the same topology. We consider each - as a "bucket", and try to put balanced number of pods into - each bucket. It's a required field. - type: string - whenUnsatisfiable: - description: 'WhenUnsatisfiable indicates how to deal with a - pod if it doesn''t satisfy the spread constraint. - DoNotSchedule - (default) tells the scheduler not to schedule it - ScheduleAnyway - tells the scheduler to still schedule it It''s considered - as "Unsatisfiable" if and only if placing incoming pod on - any topology violates "MaxSkew". For example, in a 3-zone - cluster, MaxSkew is set to 1, and pods with the same labelSelector - spread as 3/1/1: | zone1 | zone2 | zone3 | | P P P | P | P | - If WhenUnsatisfiable is set to DoNotSchedule, incoming pod - can only be scheduled to zone2(zone3) to become 3/2/1(3/1/2) - as ActualSkew(2-1) on zone2(zone3) satisfies MaxSkew(1). In - other words, the cluster can still be imbalanced, but scheduler - won''t make it *more* imbalanced. It''s a required field.' - type: string - required: - - maxSkew - - topologyKey - - whenUnsatisfiable - type: object - type: array - tracingConfig: - description: TracingConfig configures tracing in Thanos. This is an - experimental feature, it may change in any upcoming release in a - breaking way. - properties: - key: - description: The key of the secret to select from. Must be a - valid secret key. - type: string - name: - description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names - TODO: Add other useful fields. apiVersion, kind, uid?' - type: string - optional: - description: Specify whether the Secret or its key must be defined - type: boolean - required: - - key - type: object - volumes: - description: Volumes allows configuration of additional volumes on - the output StatefulSet definition. Volumes specified will be appended - to other volumes that are generated as a result of StorageSpec objects. - items: - description: Volume represents a named volume in a pod that may - be accessed by any container in the pod. - properties: - awsElasticBlockStore: - description: 'AWSElasticBlockStore represents an AWS Disk resource - that is attached to a kubelet''s host machine and then exposed - to the pod. More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore' - properties: - fsType: - description: 'Filesystem type of the volume that you want - to mount. Tip: Ensure that the filesystem type is supported - by the host operating system. Examples: "ext4", "xfs", - "ntfs". Implicitly inferred to be "ext4" if unspecified. - More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore - TODO: how do we prevent errors in the filesystem from - compromising the machine' - type: string - partition: - description: 'The partition in the volume that you want - to mount. If omitted, the default is to mount by volume - name. Examples: For volume /dev/sda1, you specify the - partition as "1". Similarly, the volume partition for - /dev/sda is "0" (or you can leave the property empty).' - format: int32 - type: integer - readOnly: - description: 'Specify "true" to force and set the ReadOnly - property in VolumeMounts to "true". If omitted, the default - is "false". More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore' - type: boolean - volumeID: - description: 'Unique ID of the persistent disk resource - in AWS (Amazon EBS volume). More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore' - type: string - required: - - volumeID - type: object - azureDisk: - description: AzureDisk represents an Azure Data Disk mount on - the host and bind mount to the pod. - properties: - cachingMode: - description: 'Host Caching mode: None, Read Only, Read Write.' - type: string - diskName: - description: The Name of the data disk in the blob storage - type: string - diskURI: - description: The URI the data disk in the blob storage - type: string - fsType: - description: Filesystem type to mount. Must be a filesystem - type supported by the host operating system. Ex. "ext4", - "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. - type: string - kind: - description: 'Expected values Shared: multiple blob disks - per storage account Dedicated: single blob disk per storage - account Managed: azure managed data disk (only in managed - availability set). defaults to shared' - type: string - readOnly: - description: Defaults to false (read/write). ReadOnly here - will force the ReadOnly setting in VolumeMounts. - type: boolean - required: - - diskName - - diskURI - type: object - azureFile: - description: AzureFile represents an Azure File Service mount - on the host and bind mount to the pod. - properties: - readOnly: - description: Defaults to false (read/write). ReadOnly here - will force the ReadOnly setting in VolumeMounts. - type: boolean - secretName: - description: the name of secret that contains Azure Storage - Account Name and Key - type: string - shareName: - description: Share Name - type: string - required: - - secretName - - shareName - type: object - cephfs: - description: CephFS represents a Ceph FS mount on the host that - shares a pod's lifetime - properties: - monitors: - description: 'Required: Monitors is a collection of Ceph - monitors More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it' - items: - type: string - type: array - path: - description: 'Optional: Used as the mounted root, rather - than the full Ceph tree, default is /' - type: string - readOnly: - description: 'Optional: Defaults to false (read/write). - ReadOnly here will force the ReadOnly setting in VolumeMounts. - More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it' - type: boolean - secretFile: - description: 'Optional: SecretFile is the path to key ring - for User, default is /etc/ceph/user.secret More info: - https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it' - type: string - secretRef: - description: 'Optional: SecretRef is reference to the authentication - secret for User, default is empty. More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it' - properties: - name: - description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names - TODO: Add other useful fields. apiVersion, kind, uid?' - type: string - type: object - user: - description: 'Optional: User is the rados user name, default - is admin More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it' - type: string - required: - - monitors - type: object - cinder: - description: 'Cinder represents a cinder volume attached and - mounted on kubelets host machine. More info: https://examples.k8s.io/mysql-cinder-pd/README.md' - properties: - fsType: - description: 'Filesystem type to mount. Must be a filesystem - type supported by the host operating system. Examples: - "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" - if unspecified. More info: https://examples.k8s.io/mysql-cinder-pd/README.md' - type: string - readOnly: - description: 'Optional: Defaults to false (read/write). - ReadOnly here will force the ReadOnly setting in VolumeMounts. - More info: https://examples.k8s.io/mysql-cinder-pd/README.md' - type: boolean - secretRef: - description: 'Optional: points to a secret object containing - parameters used to connect to OpenStack.' - properties: - name: - description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names - TODO: Add other useful fields. apiVersion, kind, uid?' - type: string - type: object - volumeID: - description: 'volume id used to identify the volume in cinder. - More info: https://examples.k8s.io/mysql-cinder-pd/README.md' - type: string - required: - - volumeID - type: object - configMap: - description: ConfigMap represents a configMap that should populate - this volume - properties: - defaultMode: - description: 'Optional: mode bits to use on created files - by default. Must be a value between 0 and 0777. Defaults - to 0644. Directories within the path are not affected - by this setting. This might be in conflict with other - options that affect the file mode, like fsGroup, and the - result can be other mode bits set.' - format: int32 - type: integer - items: - description: If unspecified, each key-value pair in the - Data field of the referenced ConfigMap will be projected - into the volume as a file whose name is the key and content - is the value. If specified, the listed keys will be projected - into the specified paths, and unlisted keys will not be - present. If a key is specified which is not present in - the ConfigMap, the volume setup will error unless it is - marked optional. Paths must be relative and may not contain - the '..' path or start with '..'. - items: - description: Maps a string key to a path within a volume. - properties: - key: - description: The key to project. - type: string - mode: - description: 'Optional: mode bits to use on this file, - must be a value between 0 and 0777. If not specified, - the volume defaultMode will be used. This might - be in conflict with other options that affect the - file mode, like fsGroup, and the result can be other - mode bits set.' - format: int32 - type: integer - path: - description: The relative path of the file to map - the key to. May not be an absolute path. May not - contain the path element '..'. May not start with - the string '..'. - type: string - required: - - key - - path - type: object - type: array - name: - description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names - TODO: Add other useful fields. apiVersion, kind, uid?' - type: string - optional: - description: Specify whether the ConfigMap or its keys must - be defined - type: boolean - type: object - csi: - description: CSI (Container Storage Interface) represents storage - that is handled by an external CSI driver (Alpha feature). - properties: - driver: - description: Driver is the name of the CSI driver that handles - this volume. Consult with your admin for the correct name - as registered in the cluster. - type: string - fsType: - description: Filesystem type to mount. Ex. "ext4", "xfs", - "ntfs". If not provided, the empty value is passed to - the associated CSI driver which will determine the default - filesystem to apply. - type: string - nodePublishSecretRef: - description: NodePublishSecretRef is a reference to the - secret object containing sensitive information to pass - to the CSI driver to complete the CSI NodePublishVolume - and NodeUnpublishVolume calls. This field is optional, - and may be empty if no secret is required. If the secret - object contains more than one secret, all secret references - are passed. - properties: - name: - description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names - TODO: Add other useful fields. apiVersion, kind, uid?' - type: string - type: object - readOnly: - description: Specifies a read-only configuration for the - volume. Defaults to false (read/write). - type: boolean - volumeAttributes: - additionalProperties: - type: string - description: VolumeAttributes stores driver-specific properties - that are passed to the CSI driver. Consult your driver's - documentation for supported values. - type: object - required: - - driver - type: object - downwardAPI: - description: DownwardAPI represents downward API about the pod - that should populate this volume - properties: - defaultMode: - description: 'Optional: mode bits to use on created files - by default. Must be a value between 0 and 0777. Defaults - to 0644. Directories within the path are not affected - by this setting. This might be in conflict with other - options that affect the file mode, like fsGroup, and the - result can be other mode bits set.' - format: int32 - type: integer - items: - description: Items is a list of downward API volume file - items: - description: DownwardAPIVolumeFile represents information - to create the file containing the pod field - properties: - fieldRef: - description: 'Required: Selects a field of the pod: - only annotations, labels, name and namespace are - supported.' - properties: - apiVersion: - description: Version of the schema the FieldPath - is written in terms of, defaults to "v1". - type: string - fieldPath: - description: Path of the field to select in the - specified API version. - type: string - required: - - fieldPath - type: object - mode: - description: 'Optional: mode bits to use on this file, - must be a value between 0 and 0777. If not specified, - the volume defaultMode will be used. This might - be in conflict with other options that affect the - file mode, like fsGroup, and the result can be other - mode bits set.' - format: int32 - type: integer - path: - description: 'Required: Path is the relative path - name of the file to be created. Must not be absolute - or contain the ''..'' path. Must be utf-8 encoded. - The first item of the relative path must not start - with ''..''' - type: string - resourceFieldRef: - description: 'Selects a resource of the container: - only resources limits and requests (limits.cpu, - limits.memory, requests.cpu and requests.memory) - are currently supported.' - properties: - containerName: - description: 'Container name: required for volumes, - optional for env vars' - type: string - divisor: - anyOf: - - type: integer - - type: string - description: Specifies the output format of the - exposed resources, defaults to "1" - pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ - x-kubernetes-int-or-string: true - resource: - description: 'Required: resource to select' - type: string - required: - - resource - type: object - required: - - path - type: object - type: array - type: object - emptyDir: - description: 'EmptyDir represents a temporary directory that - shares a pod''s lifetime. More info: https://kubernetes.io/docs/concepts/storage/volumes#emptydir' - properties: - medium: - description: 'What type of storage medium should back this - directory. The default is "" which means to use the node''s - default medium. Must be an empty string (default) or Memory. - More info: https://kubernetes.io/docs/concepts/storage/volumes#emptydir' - type: string - sizeLimit: - anyOf: - - type: integer - - type: string - description: 'Total amount of local storage required for - this EmptyDir volume. The size limit is also applicable - for memory medium. The maximum usage on memory medium - EmptyDir would be the minimum value between the SizeLimit - specified here and the sum of memory limits of all containers - in a pod. The default is nil which means that the limit - is undefined. More info: http://kubernetes.io/docs/user-guide/volumes#emptydir' - pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ - x-kubernetes-int-or-string: true - type: object - fc: - description: FC represents a Fibre Channel resource that is - attached to a kubelet's host machine and then exposed to the - pod. - properties: - fsType: - description: 'Filesystem type to mount. Must be a filesystem - type supported by the host operating system. Ex. "ext4", - "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. - TODO: how do we prevent errors in the filesystem from - compromising the machine' - type: string - lun: - description: 'Optional: FC target lun number' - format: int32 - type: integer - readOnly: - description: 'Optional: Defaults to false (read/write). - ReadOnly here will force the ReadOnly setting in VolumeMounts.' - type: boolean - targetWWNs: - description: 'Optional: FC target worldwide names (WWNs)' - items: - type: string - type: array - wwids: - description: 'Optional: FC volume world wide identifiers - (wwids) Either wwids or combination of targetWWNs and - lun must be set, but not both simultaneously.' - items: - type: string - type: array - type: object - flexVolume: - description: FlexVolume represents a generic volume resource - that is provisioned/attached using an exec based plugin. - properties: - driver: - description: Driver is the name of the driver to use for - this volume. - type: string - fsType: - description: Filesystem type to mount. Must be a filesystem - type supported by the host operating system. Ex. "ext4", - "xfs", "ntfs". The default filesystem depends on FlexVolume - script. - type: string - options: - additionalProperties: - type: string - description: 'Optional: Extra command options if any.' - type: object - readOnly: - description: 'Optional: Defaults to false (read/write). - ReadOnly here will force the ReadOnly setting in VolumeMounts.' - type: boolean - secretRef: - description: 'Optional: SecretRef is reference to the secret - object containing sensitive information to pass to the - plugin scripts. This may be empty if no secret object - is specified. If the secret object contains more than - one secret, all secrets are passed to the plugin scripts.' - properties: - name: - description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names - TODO: Add other useful fields. apiVersion, kind, uid?' - type: string - type: object - required: - - driver - type: object - flocker: - description: Flocker represents a Flocker volume attached to - a kubelet's host machine. This depends on the Flocker control - service being running - properties: - datasetName: - description: Name of the dataset stored as metadata -> name - on the dataset for Flocker should be considered as deprecated - type: string - datasetUUID: - description: UUID of the dataset. This is unique identifier - of a Flocker dataset - type: string - type: object - gcePersistentDisk: - description: 'GCEPersistentDisk represents a GCE Disk resource - that is attached to a kubelet''s host machine and then exposed - to the pod. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk' - properties: - fsType: - description: 'Filesystem type of the volume that you want - to mount. Tip: Ensure that the filesystem type is supported - by the host operating system. Examples: "ext4", "xfs", - "ntfs". Implicitly inferred to be "ext4" if unspecified. - More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk - TODO: how do we prevent errors in the filesystem from - compromising the machine' - type: string - partition: - description: 'The partition in the volume that you want - to mount. If omitted, the default is to mount by volume - name. Examples: For volume /dev/sda1, you specify the - partition as "1". Similarly, the volume partition for - /dev/sda is "0" (or you can leave the property empty). - More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk' - format: int32 - type: integer - pdName: - description: 'Unique name of the PD resource in GCE. Used - to identify the disk in GCE. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk' - type: string - readOnly: - description: 'ReadOnly here will force the ReadOnly setting - in VolumeMounts. Defaults to false. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk' - type: boolean - required: - - pdName - type: object - gitRepo: - description: 'GitRepo represents a git repository at a particular - revision. DEPRECATED: GitRepo is deprecated. To provision - a container with a git repo, mount an EmptyDir into an InitContainer - that clones the repo using git, then mount the EmptyDir into - the Pod''s container.' - properties: - directory: - description: Target directory name. Must not contain or - start with '..'. If '.' is supplied, the volume directory - will be the git repository. Otherwise, if specified, - the volume will contain the git repository in the subdirectory - with the given name. - type: string - repository: - description: Repository URL - type: string - revision: - description: Commit hash for the specified revision. - type: string - required: - - repository - type: object - glusterfs: - description: 'Glusterfs represents a Glusterfs mount on the - host that shares a pod''s lifetime. More info: https://examples.k8s.io/volumes/glusterfs/README.md' - properties: - endpoints: - description: 'EndpointsName is the endpoint name that details - Glusterfs topology. More info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod' - type: string - path: - description: 'Path is the Glusterfs volume path. More info: - https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod' - type: string - readOnly: - description: 'ReadOnly here will force the Glusterfs volume - to be mounted with read-only permissions. Defaults to - false. More info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod' - type: boolean - required: - - endpoints - - path - type: object - hostPath: - description: 'HostPath represents a pre-existing file or directory - on the host machine that is directly exposed to the container. - This is generally used for system agents or other privileged - things that are allowed to see the host machine. Most containers - will NOT need this. More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath - --- TODO(jonesdl) We need to restrict who can use host directory - mounts and who can/can not mount host directories as read/write.' - properties: - path: - description: 'Path of the directory on the host. If the - path is a symlink, it will follow the link to the real - path. More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath' - type: string - type: - description: 'Type for HostPath Volume Defaults to "" More - info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath' - type: string - required: - - path - type: object - iscsi: - description: 'ISCSI represents an ISCSI Disk resource that is - attached to a kubelet''s host machine and then exposed to - the pod. More info: https://examples.k8s.io/volumes/iscsi/README.md' - properties: - chapAuthDiscovery: - description: whether support iSCSI Discovery CHAP authentication - type: boolean - chapAuthSession: - description: whether support iSCSI Session CHAP authentication - type: boolean - fsType: - description: 'Filesystem type of the volume that you want - to mount. Tip: Ensure that the filesystem type is supported - by the host operating system. Examples: "ext4", "xfs", - "ntfs". Implicitly inferred to be "ext4" if unspecified. - More info: https://kubernetes.io/docs/concepts/storage/volumes#iscsi - TODO: how do we prevent errors in the filesystem from - compromising the machine' - type: string - initiatorName: - description: Custom iSCSI Initiator Name. If initiatorName - is specified with iscsiInterface simultaneously, new iSCSI - interface : will be created - for the connection. - type: string - iqn: - description: Target iSCSI Qualified Name. - type: string - iscsiInterface: - description: iSCSI Interface Name that uses an iSCSI transport. - Defaults to 'default' (tcp). - type: string - lun: - description: iSCSI Target Lun number. - format: int32 - type: integer - portals: - description: iSCSI Target Portal List. The portal is either - an IP or ip_addr:port if the port is other than default - (typically TCP ports 860 and 3260). - items: - type: string - type: array - readOnly: - description: ReadOnly here will force the ReadOnly setting - in VolumeMounts. Defaults to false. - type: boolean - secretRef: - description: CHAP Secret for iSCSI target and initiator - authentication - properties: - name: - description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names - TODO: Add other useful fields. apiVersion, kind, uid?' - type: string - type: object - targetPortal: - description: iSCSI Target Portal. The Portal is either an - IP or ip_addr:port if the port is other than default (typically - TCP ports 860 and 3260). - type: string - required: - - iqn - - lun - - targetPortal - type: object - name: - description: 'Volume''s name. Must be a DNS_LABEL and unique - within the pod. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' - type: string - nfs: - description: 'NFS represents an NFS mount on the host that shares - a pod''s lifetime More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs' - properties: - path: - description: 'Path that is exported by the NFS server. More - info: https://kubernetes.io/docs/concepts/storage/volumes#nfs' - type: string - readOnly: - description: 'ReadOnly here will force the NFS export to - be mounted with read-only permissions. Defaults to false. - More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs' - type: boolean - server: - description: 'Server is the hostname or IP address of the - NFS server. More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs' - type: string - required: - - path - - server - type: object - persistentVolumeClaim: - description: 'PersistentVolumeClaimVolumeSource represents a - reference to a PersistentVolumeClaim in the same namespace. - More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims' - properties: - claimName: - description: 'ClaimName is the name of a PersistentVolumeClaim - in the same namespace as the pod using this volume. More - info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims' - type: string - readOnly: - description: Will force the ReadOnly setting in VolumeMounts. - Default false. - type: boolean - required: - - claimName - type: object - photonPersistentDisk: - description: PhotonPersistentDisk represents a PhotonController - persistent disk attached and mounted on kubelets host machine - properties: - fsType: - description: Filesystem type to mount. Must be a filesystem - type supported by the host operating system. Ex. "ext4", - "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. - type: string - pdID: - description: ID that identifies Photon Controller persistent - disk - type: string - required: - - pdID - type: object - portworxVolume: - description: PortworxVolume represents a portworx volume attached - and mounted on kubelets host machine - properties: - fsType: - description: FSType represents the filesystem type to mount - Must be a filesystem type supported by the host operating - system. Ex. "ext4", "xfs". Implicitly inferred to be "ext4" - if unspecified. - type: string - readOnly: - description: Defaults to false (read/write). ReadOnly here - will force the ReadOnly setting in VolumeMounts. - type: boolean - volumeID: - description: VolumeID uniquely identifies a Portworx volume - type: string - required: - - volumeID - type: object - projected: - description: Items for all in one resources secrets, configmaps, - and downward API - properties: - defaultMode: - description: Mode bits to use on created files by default. - Must be a value between 0 and 0777. Directories within - the path are not affected by this setting. This might - be in conflict with other options that affect the file - mode, like fsGroup, and the result can be other mode bits - set. - format: int32 - type: integer - sources: - description: list of volume projections - items: - description: Projection that may be projected along with - other supported volume types - properties: - configMap: - description: information about the configMap data - to project - properties: - items: - description: If unspecified, each key-value pair - in the Data field of the referenced ConfigMap - will be projected into the volume as a file - whose name is the key and content is the value. - If specified, the listed keys will be projected - into the specified paths, and unlisted keys - will not be present. If a key is specified which - is not present in the ConfigMap, the volume - setup will error unless it is marked optional. - Paths must be relative and may not contain the - '..' path or start with '..'. - items: - description: Maps a string key to a path within - a volume. - properties: - key: - description: The key to project. - type: string - mode: - description: 'Optional: mode bits to use - on this file, must be a value between - 0 and 0777. If not specified, the volume - defaultMode will be used. This might be - in conflict with other options that affect - the file mode, like fsGroup, and the result - can be other mode bits set.' - format: int32 - type: integer - path: - description: The relative path of the file - to map the key to. May not be an absolute - path. May not contain the path element - '..'. May not start with the string '..'. - type: string - required: - - key - - path - type: object - type: array - name: - description: 'Name of the referent. More info: - https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names - TODO: Add other useful fields. apiVersion, kind, - uid?' - type: string - optional: - description: Specify whether the ConfigMap or - its keys must be defined - type: boolean - type: object - downwardAPI: - description: information about the downwardAPI data - to project - properties: - items: - description: Items is a list of DownwardAPIVolume - file - items: - description: DownwardAPIVolumeFile represents - information to create the file containing - the pod field - properties: - fieldRef: - description: 'Required: Selects a field - of the pod: only annotations, labels, - name and namespace are supported.' - properties: - apiVersion: - description: Version of the schema the - FieldPath is written in terms of, - defaults to "v1". - type: string - fieldPath: - description: Path of the field to select - in the specified API version. - type: string - required: - - fieldPath - type: object - mode: - description: 'Optional: mode bits to use - on this file, must be a value between - 0 and 0777. If not specified, the volume - defaultMode will be used. This might be - in conflict with other options that affect - the file mode, like fsGroup, and the result - can be other mode bits set.' - format: int32 - type: integer - path: - description: 'Required: Path is the relative - path name of the file to be created. Must - not be absolute or contain the ''..'' - path. Must be utf-8 encoded. The first - item of the relative path must not start - with ''..''' - type: string - resourceFieldRef: - description: 'Selects a resource of the - container: only resources limits and requests - (limits.cpu, limits.memory, requests.cpu - and requests.memory) are currently supported.' - properties: - containerName: - description: 'Container name: required - for volumes, optional for env vars' - type: string - divisor: - anyOf: - - type: integer - - type: string - description: Specifies the output format - of the exposed resources, defaults - to "1" - pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ - x-kubernetes-int-or-string: true - resource: - description: 'Required: resource to - select' - type: string - required: - - resource - type: object - required: - - path - type: object - type: array - type: object - secret: - description: information about the secret data to - project - properties: - items: - description: If unspecified, each key-value pair - in the Data field of the referenced Secret will - be projected into the volume as a file whose - name is the key and content is the value. If - specified, the listed keys will be projected - into the specified paths, and unlisted keys - will not be present. If a key is specified which - is not present in the Secret, the volume setup - will error unless it is marked optional. Paths - must be relative and may not contain the '..' - path or start with '..'. - items: - description: Maps a string key to a path within - a volume. - properties: - key: - description: The key to project. - type: string - mode: - description: 'Optional: mode bits to use - on this file, must be a value between - 0 and 0777. If not specified, the volume - defaultMode will be used. This might be - in conflict with other options that affect - the file mode, like fsGroup, and the result - can be other mode bits set.' - format: int32 - type: integer - path: - description: The relative path of the file - to map the key to. May not be an absolute - path. May not contain the path element - '..'. May not start with the string '..'. - type: string - required: - - key - - path - type: object - type: array - name: - description: 'Name of the referent. More info: - https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names - TODO: Add other useful fields. apiVersion, kind, - uid?' - type: string - optional: - description: Specify whether the Secret or its - key must be defined - type: boolean - type: object - serviceAccountToken: - description: information about the serviceAccountToken - data to project - properties: - audience: - description: Audience is the intended audience - of the token. A recipient of a token must identify - itself with an identifier specified in the audience - of the token, and otherwise should reject the - token. The audience defaults to the identifier - of the apiserver. - type: string - expirationSeconds: - description: ExpirationSeconds is the requested - duration of validity of the service account - token. As the token approaches expiration, the - kubelet volume plugin will proactively rotate - the service account token. The kubelet will - start trying to rotate the token if the token - is older than 80 percent of its time to live - or if the token is older than 24 hours.Defaults - to 1 hour and must be at least 10 minutes. - format: int64 - type: integer - path: - description: Path is the path relative to the - mount point of the file to project the token - into. - type: string - required: - - path - type: object - type: object - type: array - required: - - sources - type: object - quobyte: - description: Quobyte represents a Quobyte mount on the host - that shares a pod's lifetime - properties: - group: - description: Group to map volume access to Default is no - group - type: string - readOnly: - description: ReadOnly here will force the Quobyte volume - to be mounted with read-only permissions. Defaults to - false. - type: boolean - registry: - description: Registry represents a single or multiple Quobyte - Registry services specified as a string as host:port pair - (multiple entries are separated with commas) which acts - as the central registry for volumes - type: string - tenant: - description: Tenant owning the given Quobyte volume in the - Backend Used with dynamically provisioned Quobyte volumes, - value is set by the plugin - type: string - user: - description: User to map volume access to Defaults to serivceaccount - user - type: string - volume: - description: Volume is a string that references an already - created Quobyte volume by name. - type: string - required: - - registry - - volume - type: object - rbd: - description: 'RBD represents a Rados Block Device mount on the - host that shares a pod''s lifetime. More info: https://examples.k8s.io/volumes/rbd/README.md' - properties: - fsType: - description: 'Filesystem type of the volume that you want - to mount. Tip: Ensure that the filesystem type is supported - by the host operating system. Examples: "ext4", "xfs", - "ntfs". Implicitly inferred to be "ext4" if unspecified. - More info: https://kubernetes.io/docs/concepts/storage/volumes#rbd - TODO: how do we prevent errors in the filesystem from - compromising the machine' - type: string - image: - description: 'The rados image name. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it' - type: string - keyring: - description: 'Keyring is the path to key ring for RBDUser. - Default is /etc/ceph/keyring. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it' - type: string - monitors: - description: 'A collection of Ceph monitors. More info: - https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it' - items: - type: string - type: array - pool: - description: 'The rados pool name. Default is rbd. More - info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it' - type: string - readOnly: - description: 'ReadOnly here will force the ReadOnly setting - in VolumeMounts. Defaults to false. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it' - type: boolean - secretRef: - description: 'SecretRef is name of the authentication secret - for RBDUser. If provided overrides keyring. Default is - nil. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it' - properties: - name: - description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names - TODO: Add other useful fields. apiVersion, kind, uid?' - type: string - type: object - user: - description: 'The rados user name. Default is admin. More - info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it' - type: string - required: - - image - - monitors - type: object - scaleIO: - description: ScaleIO represents a ScaleIO persistent volume - attached and mounted on Kubernetes nodes. - properties: - fsType: - description: Filesystem type to mount. Must be a filesystem - type supported by the host operating system. Ex. "ext4", - "xfs", "ntfs". Default is "xfs". - type: string - gateway: - description: The host address of the ScaleIO API Gateway. - type: string - protectionDomain: - description: The name of the ScaleIO Protection Domain for - the configured storage. - type: string - readOnly: - description: Defaults to false (read/write). ReadOnly here - will force the ReadOnly setting in VolumeMounts. - type: boolean - secretRef: - description: SecretRef references to the secret for ScaleIO - user and other sensitive information. If this is not provided, - Login operation will fail. - properties: - name: - description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names - TODO: Add other useful fields. apiVersion, kind, uid?' - type: string - type: object - sslEnabled: - description: Flag to enable/disable SSL communication with - Gateway, default false - type: boolean - storageMode: - description: Indicates whether the storage for a volume - should be ThickProvisioned or ThinProvisioned. Default - is ThinProvisioned. - type: string - storagePool: - description: The ScaleIO Storage Pool associated with the - protection domain. - type: string - system: - description: The name of the storage system as configured - in ScaleIO. - type: string - volumeName: - description: The name of a volume already created in the - ScaleIO system that is associated with this volume source. - type: string - required: - - gateway - - secretRef - - system - type: object - secret: - description: 'Secret represents a secret that should populate - this volume. More info: https://kubernetes.io/docs/concepts/storage/volumes#secret' - properties: - defaultMode: - description: 'Optional: mode bits to use on created files - by default. Must be a value between 0 and 0777. Defaults - to 0644. Directories within the path are not affected - by this setting. This might be in conflict with other - options that affect the file mode, like fsGroup, and the - result can be other mode bits set.' - format: int32 - type: integer - items: - description: If unspecified, each key-value pair in the - Data field of the referenced Secret will be projected - into the volume as a file whose name is the key and content - is the value. If specified, the listed keys will be projected - into the specified paths, and unlisted keys will not be - present. If a key is specified which is not present in - the Secret, the volume setup will error unless it is marked - optional. Paths must be relative and may not contain the - '..' path or start with '..'. - items: - description: Maps a string key to a path within a volume. - properties: - key: - description: The key to project. - type: string - mode: - description: 'Optional: mode bits to use on this file, - must be a value between 0 and 0777. If not specified, - the volume defaultMode will be used. This might - be in conflict with other options that affect the - file mode, like fsGroup, and the result can be other - mode bits set.' - format: int32 - type: integer - path: - description: The relative path of the file to map - the key to. May not be an absolute path. May not - contain the path element '..'. May not start with - the string '..'. - type: string - required: - - key - - path - type: object - type: array - optional: - description: Specify whether the Secret or its keys must - be defined - type: boolean - secretName: - description: 'Name of the secret in the pod''s namespace - to use. More info: https://kubernetes.io/docs/concepts/storage/volumes#secret' - type: string - type: object - storageos: - description: StorageOS represents a StorageOS volume attached - and mounted on Kubernetes nodes. - properties: - fsType: - description: Filesystem type to mount. Must be a filesystem - type supported by the host operating system. Ex. "ext4", - "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. - type: string - readOnly: - description: Defaults to false (read/write). ReadOnly here - will force the ReadOnly setting in VolumeMounts. - type: boolean - secretRef: - description: SecretRef specifies the secret to use for obtaining - the StorageOS API credentials. If not specified, default - values will be attempted. - properties: - name: - description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names - TODO: Add other useful fields. apiVersion, kind, uid?' - type: string - type: object - volumeName: - description: VolumeName is the human-readable name of the - StorageOS volume. Volume names are only unique within - a namespace. - type: string - volumeNamespace: - description: VolumeNamespace specifies the scope of the - volume within StorageOS. If no namespace is specified - then the Pod's namespace will be used. This allows the - Kubernetes name scoping to be mirrored within StorageOS - for tighter integration. Set VolumeName to any name to - override the default behaviour. Set to "default" if you - are not using namespaces within StorageOS. Namespaces - that do not pre-exist within StorageOS will be created. - type: string - type: object - vsphereVolume: - description: VsphereVolume represents a vSphere volume attached - and mounted on kubelets host machine - properties: - fsType: - description: Filesystem type to mount. Must be a filesystem - type supported by the host operating system. Ex. "ext4", - "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. - type: string - storagePolicyID: - description: Storage Policy Based Management (SPBM) profile - ID associated with the StoragePolicyName. - type: string - storagePolicyName: - description: Storage Policy Based Management (SPBM) profile - name. - type: string - volumePath: - description: Path that identifies vSphere volume vmdk - type: string - required: - - volumePath - type: object - required: - - name - type: object - type: array - type: object - status: - description: 'Most recent observed status of the ThanosRuler cluster. - Read-only. Not included when requesting from the apiserver, only from - the ThanosRuler Operator API itself. More info: https://github.com/kubernetes/community/blob/master/contributors/devel/sig-architecture/api-conventions.md#spec-and-status' - properties: - availableReplicas: - description: Total number of available pods (ready for at least minReadySeconds) - targeted by this ThanosRuler deployment. - format: int32 - type: integer - paused: - description: Represents whether any actions on the underlying managed - objects are being performed. Only delete actions will be performed. - type: boolean - replicas: - description: Total number of non-terminated pods targeted by this - ThanosRuler deployment (their labels match the selector). - format: int32 - type: integer - unavailableReplicas: - description: Total number of unavailable pods targeted by this ThanosRuler - deployment. - format: int32 - type: integer - updatedReplicas: - description: Total number of non-terminated pods targeted by this - ThanosRuler deployment that have the desired version spec. - format: int32 - type: integer - required: - - availableReplicas - - paused - - replicas - - unavailableReplicas - - updatedReplicas - type: object - required: - - spec - type: object - served: true - storage: true -status: - acceptedNames: - kind: "" - plural: "" - conditions: [] - storedVersions: [] \ No newline at end of file diff --git a/charts/px-central/templates/px-backup/pre-install-hook/pre-install-check.yaml b/charts/px-central/templates/px-backup/pre-install-hook/pre-install-check.yaml index 82bd6ed6d..6e136f561 100644 --- a/charts/px-central/templates/px-backup/pre-install-hook/pre-install-check.yaml +++ b/charts/px-central/templates/px-backup/pre-install-hook/pre-install-check.yaml @@ -67,6 +67,37 @@ rules: resources: ["resourcequotas"] verbs: ["get", "list", "watch"] --- +# Pre-install ClusterRole (cluster-scoped resources) +apiVersion: rbac.authorization.k8s.io/v1 +kind: ClusterRole +metadata: + name: {{ .Release.Namespace }}-px-backup-pre-install-clusterrole + annotations: + "helm.sh/hook": pre-install + "helm.sh/hook-weight": "2" + "helm.sh/hook-delete-policy": before-hook-creation,hook-succeeded + labels: + name: pxcentral-pre-install-hook + app.kubernetes.io/component: pxcentral-pre-install-hook +{{- include "px-central.partOfLabel" . | nindent 4 }} +rules: + # For ValidateNamespace + - apiGroups: [""] + resources: ["namespaces"] + verbs: ["get", "list", "watch"] + # For ValidateStorageClass / Storage provisioner validation + - apiGroups: ["storage.k8s.io"] + resources: ["storageclasses"] + verbs: ["get", "list", "watch"] + # For CRD lifecycle management (cluster-scoped) + - apiGroups: ["apiextensions.k8s.io"] + resources: ["customresourcedefinitions"] + verbs: ["get", "list", "create", "update", "patch"] + # For applying monitoring CRs from the px-backup-monitoring-crs ConfigMap + - apiGroups: ["monitoring.coreos.com"] + resources: ["prometheuses", "alertmanagers", "servicemonitors", "prometheusrules"] + verbs: ["get", "create", "update", "patch"] +--- apiVersion: rbac.authorization.k8s.io/v1 kind: RoleBinding metadata: @@ -89,6 +120,27 @@ roleRef: name: px-backup-pre-install-role apiGroup: rbac.authorization.k8s.io --- +apiVersion: rbac.authorization.k8s.io/v1 +kind: ClusterRoleBinding +metadata: + name: {{ .Release.Namespace }}-px-backup-pre-install-crd-rolebinding + annotations: + "helm.sh/hook": pre-install + "helm.sh/hook-weight": "3" + "helm.sh/hook-delete-policy": before-hook-creation,hook-succeeded + labels: + name: pxcentral-pre-install-hook + app.kubernetes.io/component: pxcentral-pre-install-hook +{{- include "px-central.partOfLabel" . | nindent 4 }} +subjects: + - kind: ServiceAccount + name: default + namespace: {{ .Release.Namespace }} +roleRef: + kind: ClusterRole + name: {{ .Release.Namespace }}-px-backup-pre-install-clusterrole + apiGroup: rbac.authorization.k8s.io +--- apiVersion: v1 kind: PersistentVolumeClaim metadata: @@ -129,6 +181,7 @@ metadata: "helm.sh/hook": pre-install "helm.sh/hook-weight": "6" "helm.sh/hook-delete-policy": before-hook-creation,hook-succeeded,hook-completed + "argocd.argoproj.io/hook-delete-policy": BeforeHookCreation meta.helm.sh/release-name: {{ .Release.Name }} meta.helm.sh/release-namespace: {{ .Release.Namespace }} spec: @@ -162,6 +215,8 @@ spec: - name: pxbackup-pre-install-check image: {{ printf "%s/%s/%s:%s" (default .Values.images.preSetupHookImage.registry .Values.images.registry) (default .Values.images.preSetupHookImage.repo .Values.images.repo) .Values.images.preSetupHookImage.imageName .Values.images.preSetupHookImage.tag }} imagePullPolicy: {{ .Values.images.pullPolicy }} + securityContext: + readOnlyRootFilesystem: true command: ["/pxcentral-hook/bin/pxcentral-hook"] args: ["--hook=pre-install"] env: @@ -211,6 +266,9 @@ spec: volumeMounts: - name: data-volume mountPath: /mnt/data + - name: monitoring-crs + mountPath: /etc/pxcentral/monitoring-crs + readOnly: true {{- if .Values.proxy.configSecretName }} - mountPath: /etc/ssl/certs/proxy-ca.pem subPath: proxy-ca.pem @@ -221,6 +279,9 @@ spec: - name: data-volume persistentVolumeClaim: claimName: pre-install-data-pvc + - name: monitoring-crs + configMap: + name: px-backup-monitoring-crs {{- if .Values.proxy.configSecretName }} - name: proxy-ca-volume secret: @@ -321,6 +382,8 @@ spec: value: {{ .Values.images.insecureRegistry | default false | quote }} - name: SKIP_VALIDATIONS value: {{ .Values.pxbackup.skipValidations | default false | quote }} + - name: TARGET_PXBACKUP_VERSION + value: "{{ .Values.pxbackup.version }}" volumeMounts: {{- if .Values.proxy.configSecretName }} - mountPath: /etc/ssl/certs/proxy-ca.pem diff --git a/charts/px-central/templates/px-backup/pre-upgrade-hook/pre-upgrade-check.yaml b/charts/px-central/templates/px-backup/pre-upgrade-hook/pre-upgrade-check.yaml index a98006308..f75cbf91e 100644 --- a/charts/px-central/templates/px-backup/pre-upgrade-hook/pre-upgrade-check.yaml +++ b/charts/px-central/templates/px-backup/pre-upgrade-hook/pre-upgrade-check.yaml @@ -32,6 +32,45 @@ {{- end }} {{- end }} +apiVersion: rbac.authorization.k8s.io/v1 +kind: ClusterRole +metadata: + name: px-backup-pre-upgrade-crd-role + annotations: + "helm.sh/hook": pre-upgrade + "helm.sh/hook-delete-policy": before-hook-creation,hook-succeeded + labels: + name: pxcentral-pre-upgrade-hook + app.kubernetes.io/component: pxcentral-pre-upgrade-hook +{{- include "px-central.partOfLabel" . | nindent 4 }} +rules: + - apiGroups: ["apiextensions.k8s.io"] + resources: ["customresourcedefinitions"] + verbs: ["create", "update", "get", "patch", "list", "watch"] + - apiGroups: ["monitoring.coreos.com"] + resources: ["prometheuses", "alertmanagers", "servicemonitors", "prometheusrules"] + verbs: ["get", "create", "update", "patch"] +--- +apiVersion: rbac.authorization.k8s.io/v1 +kind: ClusterRoleBinding +metadata: + name: px-backup-pre-upgrade-crd-rolebinding + annotations: + "helm.sh/hook": pre-upgrade + "helm.sh/hook-delete-policy": before-hook-creation,hook-succeeded + labels: + name: pxcentral-pre-upgrade-hook + app.kubernetes.io/component: pxcentral-pre-upgrade-hook +{{- include "px-central.partOfLabel" . | nindent 4 }} +subjects: + - kind: ServiceAccount + name: default + namespace: {{ .Release.Namespace }} +roleRef: + kind: ClusterRole + name: px-backup-pre-upgrade-crd-role + apiGroup: rbac.authorization.k8s.io +--- apiVersion: rbac.authorization.k8s.io/v1 kind: Role metadata: @@ -50,13 +89,13 @@ rules: verbs: ["get", "list", "update", "delete", "create", "patch"] - apiGroups: [""] resources: ["secrets"] - verbs: ["delete","get", "list", "watch","create","update"] + verbs: ["delete","get", "list", "watch","create","update","patch"] - apiGroups: [""] resources: ["serviceaccounts"] verbs: ["get", "list", "watch"] - apiGroups: [""] resources: ["configmaps"] - verbs: ["delete","get", "list", "watch","update","create"] + verbs: ["delete","get", "list", "watch","update","create","patch"] - apiGroups: [""] resources: ["persistentvolumeclaims"] verbs: ["get", "create", "delete", "update", "list"] @@ -81,9 +120,6 @@ rules: - apiGroups: ["apps"] resources: ["deployments"] verbs: ["get", "list", "update", "patch"] - - apiGroups: ["apiextensions.k8s.io"] - resources: ["customresourcedefinitions"] - verbs: ["create", "update", "get", "patch", "list", "watch"] - apiGroups: [""] resources: ["persistentvolumes"] verbs: ["create", "update", "get", "patch", "list", "delete"] @@ -152,6 +188,7 @@ metadata: "helm.sh/hook": pre-upgrade "helm.sh/hook-weight": "6" "helm.sh/hook-delete-policy": before-hook-creation,hook-succeeded,hook-completed + "argocd.argoproj.io/hook-delete-policy": BeforeHookCreation meta.helm.sh/release-name: {{ .Release.Name }} meta.helm.sh/release-namespace: {{ .Release.Namespace }} spec: @@ -185,6 +222,8 @@ spec: - name: pxc-pre-upgrade image: {{ printf "%s/%s/%s:%s" (default .Values.images.preSetupHookImage.registry .Values.images.registry) (default .Values.images.preSetupHookImage.repo .Values.images.repo) .Values.images.preSetupHookImage.imageName .Values.images.preSetupHookImage.tag }} imagePullPolicy: {{ .Values.images.pullPolicy }} + securityContext: + readOnlyRootFilesystem: true command: ["/pxcentral-hook/bin/pxcentral-hook"] args: ["--hook=pre-upgrade"] env: @@ -290,6 +329,9 @@ spec: volumeMounts: - name: data-volume mountPath: /mnt/data + - name: monitoring-crs + mountPath: /etc/pxcentral/monitoring-crs + readOnly: true {{- if .Values.proxy.configSecretName }} - mountPath: /etc/ssl/certs/proxy-ca.pem subPath: proxy-ca.pem @@ -300,6 +342,9 @@ spec: - name: data-volume persistentVolumeClaim: claimName: pre-upgrade-data-pvc + - name: monitoring-crs + configMap: + name: px-backup-monitoring-crs {{- if .Values.proxy.configSecretName }} - name: proxy-ca-volume secret: diff --git a/charts/px-central/templates/px-backup/pxcentral-alertmanager.yaml b/charts/px-central/templates/px-backup/pxcentral-alertmanager.yaml index 8110a56a8..3a9cdd6ca 100644 --- a/charts/px-central/templates/px-backup/pxcentral-alertmanager.yaml +++ b/charts/px-central/templates/px-backup/pxcentral-alertmanager.yaml @@ -1,180 +1,5 @@ {{- $pxBackupEnabled := .Values.pxbackup.enabled | default false }} {{- if eq $pxBackupEnabled true }} -{{- $isOpenshiftCluster := or .Values.isOpenshift (.Capabilities.APIVersions.Has "apps.openshift.io/v1") -}} -{{- $deployDedicatedMonitoringSystem := .Values.pxbackup.deployDedicatedMonitoringSystem }} -{{- $azureProxyEnabled := .Values.proxy.azureProxyEnabled | default false }} -{{- if eq $deployDedicatedMonitoringSystem true }} -apiVersion: monitoring.coreos.com/v1 -kind: Alertmanager -metadata: - name: px-backup-alertmanager - namespace: {{ .Release.Namespace }} - labels: -{{- include "px-central.partOfLabel" . | nindent 4 }} -spec: - affinity: - nodeAffinity: - requiredDuringSchedulingIgnoredDuringExecution: - nodeSelectorTerms: - - matchExpressions: - {{- if .Values.nodeAffinityLabel }} - - key: {{ .Values.nodeAffinityLabel }} - operator: Exists - {{- else }} - - key: pxbackup/enabled - operator: NotIn - values: - - "false" - {{- end }} - configSecret: px-backup-alertmanager-custom-config - podMetadata: - {{- if and (eq $azureProxyEnabled true) (not (has "px-backup-alertmanager" .Values.proxy.excludeAzureProxyList)) }} - annotations: - kubernetes.azure.com/no-http-proxy-vars: "true" - {{- end }} - labels: -{{- include "px-central.partOfLabel" . | nindent 6 }} - alertmanagerConfigSelector: - matchLabels: - app: px-backup-alert-configs - replicas: {{ .Values.pxbackup.alertmanager.replicas }} - {{- if .Values.images.pullSecrets }} - imagePullSecrets: - {{- range $sec := .Values.images.pullSecrets }} - - name: {{ $sec | quote }} - {{- end }} - {{- end }} - retention: {{ .Values.pxbackup.alertmanager.retention}} - initContainers: - - name: init-config-reloader - {{- if .Values.proxy.configSecretName }} - volumeMounts: - - mountPath: /etc/ssl/certs/proxy-ca.pem - subPath: proxy-ca.pem - name: proxy-ca-volume - readOnly: true - {{- end }} - {{- $proxyEnv := include "proxy.proxyEnv" . }} - {{- if and (or (empty .Values.proxy.includeNoProxyList) (has "px-backup-alertmanager" .Values.proxy.includeNoProxyList)) (ne (trim $proxyEnv) "") }} - env: - {{ $proxyEnv | nindent 8 }} - {{- end }} - containers: - - args: - - '--config.file=/etc/alertmanager/config_out/alertmanager.env.yaml' - - '--storage.path=/alertmanager' - - '--data.retention={{ .Values.pxbackup.alertmanager.retention }}' - - '--cluster.listen-address=[$(POD_IP)]:9094' - - '--web.listen-address=:9093' - - '--web.route-prefix=/' - - '--cluster.label={{ .Release.Namespace }}/px-backup-alertmanager' - - '--cluster.peer=alertmanager-px-backup-alertmanager-0.alertmanager-operated:9094' - - '--cluster.peer=alertmanager-px-backup-alertmanager-1.alertmanager-operated:9094' - - '--cluster.reconnect-timeout=5m' - - '--web.config.file=/etc/alertmanager/web_config/web-config-custom.yaml' - env: - - name: AUTH_SECRET - valueFrom: - secretKeyRef: - name: pxc-backup-metrics - key: metrics-token - {{- include "serviceMesh.env" . | nindent 8 }} - {{- if or (empty .Values.proxy.includeNoProxyList) (has "px-backup-alertmanager" .Values.proxy.includeNoProxyList) }} - {{ include "proxy.proxyEnv" . | nindent 8 }} - {{- end }} - - name: POD_IP - valueFrom: - fieldRef: - apiVersion: v1 - fieldPath: status.podIP - image: {{ printf "%s/%s/%s:%s" (default .Values.images.pxBackupAlertmanagerImage.registry .Values.images.registry) (default .Values.images.pxBackupAlertmanagerImage.repo .Values.images.repo) .Values.images.pxBackupAlertmanagerImage.imageName .Values.images.pxBackupAlertmanagerImage.tag }} - name: alertmanager - ports: - - containerPort: 9093 - name: web - protocol: TCP - - args: - - --listen-address=:8080 - - --reload-url=http://$(USERNAME):$(PASSWORD)@localhost:9093/-/reload - - --config-file=/etc/alertmanager/config/alertmanager.yaml.gz - - --config-envsubst-file=/etc/alertmanager/config_out/alertmanager.env.yaml - - --watched-dir=/etc/alertmanager/config - env: - - name: USERNAME - valueFrom: - secretKeyRef: - key: username - name: pxc-backup-metrics - - name: PASSWORD - valueFrom: - secretKeyRef: - key: password - name: pxc-backup-metrics - {{- if or (empty .Values.proxy.includeNoProxyList) (has "px-backup-alertmanager" .Values.proxy.includeNoProxyList) }} - {{ include "proxy.proxyEnv" . | nindent 6 }} - {{- end }} - name: config-reloader - ports: - - containerPort: 8080 - name: reloader-web - protocol: TCP - {{- if .Values.proxy.configSecretName }} - volumeMounts: - - mountPath: /etc/ssl/certs/proxy-ca.pem - subPath: proxy-ca.pem - name: proxy-ca-volume - readOnly: true - {{- end }} - {{- if $isOpenshiftCluster }} - {{- else }} - securityContext: - fsGroup: 2000 - runAsNonRoot: true - runAsUser: 1000 - {{- end }} - listenLocal: true - volumeMounts: - - mountPath: /etc/alertmanager/web_config/web-config-custom.yaml - name: web-config-custom - readOnly: true - subPath: web-config-custom.yaml - {{- if .Values.proxy.configSecretName }} - - mountPath: /etc/ssl/certs/proxy-ca.pem - subPath: proxy-ca.pem - name: proxy-ca-volume - readOnly: true - {{- end }} - volumes: - - name: web-config-custom - secret: - defaultMode: 420 - secretName: pxc-backup-metrics - {{- if .Values.proxy.configSecretName }} - - name: proxy-ca-volume - secret: - items: - - key: CA - path: proxy-ca.pem - optional: true - secretName: {{ .Values.proxy.configSecretName }} - {{- end }} - {{- if .Values.persistentStorage.storageClassName }} - storage: - volumeClaimTemplate: - metadata: - labels: -{{- include "px-central.partOfLabel" . | nindent 10 }} - spec: - storageClassName: {{ .Values.persistentStorage.storageClassName }} - resources: - requests: - storage: {{ .Values.persistentStorage.alertManager.storage }} - {{- end }} - {{- with .Values.tolerations }} - tolerations: - {{- toYaml . | nindent 4 }} - {{- end }} -{{- end }} --- apiVersion: v1 kind: Secret @@ -283,7 +108,7 @@ stringData:
- Critical Alert: + Critical Alert: {{ if eq .Labels.alertname "PartialBackupAlert" }}Backup was only partially completed {{ else if and (eq .Labels.alertname "BackupAlert") (eq .Annotations.value "4") }}Backup Failed {{ else if and (eq .Labels.alertname "BackupAlert") (eq .Annotations.value "10") }}Backup Missing @@ -316,13 +141,13 @@ stringData:
  • Error:
    -
    {{ .Labels.error_reason }}
    +
    {{ .Labels.error_reason }}
  • -
  • +
  • -
    Alert Creation Time:
    -
    {{ .StartsAt.Format "2006-01-02 15:04:05" }}
    +
    Alert Creation Time:
    +
    {{ .StartsAt.Format "2006-01-02 15:04:05" }}
  • @@ -358,13 +183,13 @@ stringData:
  • Error:
    -
    {{ .Labels.error_reason }}
    +
    {{ .Labels.error_reason }}
  • -
  • +
  • -
    Alert Creation Time:
    -
    {{ .StartsAt.Format "2006-01-02 15:04:05" }}
    +
    Alert Creation Time:
    +
    {{ .StartsAt.Format "2006-01-02 15:04:05" }}
  • @@ -372,7 +197,7 @@ stringData:
    - Critical Alert: + Critical Alert: {{if eq .Labels.alertname "BackupLocationAlert"}}Backup Location Disconnected {{else if eq .Labels.alertname "BackupLocationLimitedAvailabilityAlert"}}Backup Location state changed to limited availability {{ else }}unknown{{ end }} @@ -399,21 +224,21 @@ stringData:
    Error:
    {{ .Labels.error_reason }} -
    +
    -
  • +
  • -
    Alert Creation Time:
    +
    Alert Creation Time:
    {{ .StartsAt.Format "2006-01-02 15:04:05" }}
    -
    +
  • {{- else if eq .Labels.alertname "LicenseExpiryAlert" }}
    - Critical Alert: + Critical Alert: {{- if eq .Labels.error_reason "License expires in 0 days" }} License Expires Today {{- else if match ".*expired.*" .Labels.error_reason }} @@ -471,10 +296,10 @@ stringData:
    {{ .Labels.error_reason }}
    -
  • +
  • -
    Alert Creation Time:
    -
    {{ .StartsAt.Format "2006-01-02 15:04:05" }}
    +
    Alert Creation Time:
    +
    {{ .StartsAt.Format "2006-01-02 15:04:05" }}
  • @@ -756,7 +581,7 @@ stringData: {{- range .Alerts }} {{- if eq .Labels.alertname "LicenseExpiryAlert" }} {{- $hasLicenseAlert = true }} - Please contact support to renew your license to avoid service interruption. + Please contact support to renew your license to avoid service interruption.

    {{- break }} {{- end }} @@ -769,4 +594,4 @@ stringData: `}} -{{- end -}} \ No newline at end of file +{{- end -}} diff --git a/charts/px-central/templates/px-backup/pxcentral-monitoring-crs.yaml b/charts/px-central/templates/px-backup/pxcentral-monitoring-crs.yaml new file mode 100644 index 000000000..115bec871 --- /dev/null +++ b/charts/px-central/templates/px-backup/pxcentral-monitoring-crs.yaml @@ -0,0 +1,822 @@ +{{- define "px-central.cr.prometheus" -}} +{{- $isOpenshiftCluster := or .Values.isOpenshift (.Capabilities.APIVersions.Has "apps.openshift.io/v1") -}} +{{- $azureProxyEnabled := .Values.proxy.azureProxyEnabled | default false -}} +{{- $hasAzureAnnotation := and (eq $azureProxyEnabled true) (not (has "px-backup-dashboard-prometheus" .Values.proxy.excludeAzureProxyList)) -}} +{{- $hasIstioAnnotation := .Values.istio.enabled -}} +{{- $storageSize := "5Gi" -}} +{{- $retentionSize := "4096MB" -}} +{{- if and (not .Release.IsInstall) ($.Capabilities.APIVersions.Has "monitoring.coreos.com/v1") -}} +{{- $prometheus := lookup "monitoring.coreos.com/v1" "Prometheus" .Release.Namespace "px-backup-dashboard-prometheus" -}} +{{- if $prometheus -}} +{{- $storageSize = $prometheus.spec.storage.volumeClaimTemplate.spec.resources.requests.storage -}} +{{- range $prometheus.spec.containers -}} + {{- range $arg := .args -}} + {{- if hasPrefix "--storage.tsdb.retention.size=" $arg -}} + {{- $retentionSize = trimPrefix "--storage.tsdb.retention.size=" $arg -}} + {{- if eq $retentionSize "4600MB" -}} + {{- $retentionSize = "4096MB" -}} + {{- end -}} + {{- end -}} + {{- end -}} +{{- end -}} +{{- end -}} +{{- end -}} +apiVersion: monitoring.coreos.com/v1 +kind: Prometheus +metadata: + name: px-backup-dashboard-prometheus + namespace: {{ .Release.Namespace }} + annotations: + helm.sh/resource-policy: keep + labels: +{{- include "px-central.partOfLabel" . | nindent 5 }} +spec: + affinity: + nodeAffinity: + requiredDuringSchedulingIgnoredDuringExecution: + nodeSelectorTerms: + - matchExpressions: + {{- if .Values.nodeAffinityLabel }} + - key: {{ .Values.nodeAffinityLabel }} + operator: Exists + {{- else }} + - key: pxbackup/enabled + operator: NotIn + values: + - "false" + {{- end }} + additionalAlertManagerConfigs: + key: am-configs.yaml + name: pxc-backup-metrics + podMetadata: + {{- if or $hasAzureAnnotation $hasIstioAnnotation }} + annotations: + {{- if $hasAzureAnnotation }} + kubernetes.azure.com/no-http-proxy-vars: "true" + {{- end }} + {{- if $hasIstioAnnotation }} + proxy.istio.io/config: | + proxyMetadata: + OUTPUT_CERTS: /etc/istio-output-certs + sidecar.istio.io/userVolumeMount: '[{"name": "istio-certs", "mountPath": "/etc/istio-output-certs"}]' + traffic.sidecar.istio.io/includeOutboundIPRanges: "" + {{- end}} + {{- end }} + labels: +{{- include "px-central.partOfLabel" . | nindent 6 }} + {{- if .Values.persistentStorage.storageClassName }} + storage: + volumeClaimTemplate: + metadata: + labels: +{{- include "px-central.partOfLabel" . | nindent 10 }} + spec: + storageClassName: {{ .Values.persistentStorage.storageClassName }} + resources: + requests: + {{- if eq .Release.IsInstall true }} + storage: {{ .Values.persistentStorage.prometheus.storage }} + {{- else }} + storage: {{ $storageSize }} + {{- end }} + {{- end }} + initContainers: + - name: init-config-reloader + {{- if .Values.proxy.configSecretName }} + volumeMounts: + - mountPath: /etc/ssl/certs/proxy-ca.pem + subPath: proxy-ca.pem + name: proxy-ca-volume + readOnly: true + {{- end }} + {{- $proxyEnv := include "proxy.proxyEnv" . }} + {{- if and (or (empty .Values.proxy.includeNoProxyList) (has "px-backup-dashboard-prometheus" .Values.proxy.includeNoProxyList)) (ne (trim $proxyEnv) "") }} + env: + {{ $proxyEnv | nindent 4 }} + {{- end }} + containers: + - args: + - --web.console.templates=/etc/prometheus/consoles + - --web.console.libraries=/etc/prometheus/console_libraries + - --storage.tsdb.retention.time={{ .Values.pxbackup.prometheus.retention }} + {{- if eq .Release.IsInstall true }} + - --storage.tsdb.retention.size={{ .Values.persistentStorage.prometheus.retentionSize }} + {{- else }} + - --storage.tsdb.retention.size={{ $retentionSize }} + {{- end }} + - --config.file=/etc/prometheus/config_out/prometheus.env.yaml + - --storage.tsdb.path=/prometheus + - --web.enable-lifecycle + - --web.route-prefix=/ + - --log.level=debug + - --web.config.file=/etc/prometheus/web_config/web-config-custom.yaml + env: + - name: AUTH_SECRET + valueFrom: + secretKeyRef: + name: pxc-backup-metrics + key: metrics-token + {{- include "serviceMesh.env" . | nindent 4 }} + {{- if or (empty .Values.proxy.includeNoProxyList) (has "px-backup-dashboard-prometheus" .Values.proxy.includeNoProxyList) }} + {{ include "proxy.proxyEnv" . | nindent 4 }} + {{- end }} + image: {{ printf "%s/%s/%s:%s" (default .Values.images.pxBackupPrometheusImage.registry .Values.images.registry) (default .Values.images.pxBackupPrometheusImage.repo .Values.images.repo) .Values.images.pxBackupPrometheusImage.imageName .Values.images.pxBackupPrometheusImage.tag }} + livenessProbe: + exec: + command: + - sh + - -c + - wget {{ if or .Values.proxy.httpProxy.noProxy .Values.proxy.configSecretName }}--proxy=off{{ end }} http://localhost:9090/-/healthy --header="Authorization:Basic $AUTH_SECRET" + -qO- + name: prometheus + readinessProbe: + exec: + command: + - sh + - -c + - wget {{ if or .Values.proxy.httpProxy.noProxy .Values.proxy.configSecretName }}--proxy=off{{ end }} http://localhost:9090/-/ready --header="Authorization:Basic $AUTH_SECRET" + -qO- + startupProbe: + exec: + command: + - sh + - -c + - wget {{ if or .Values.proxy.httpProxy.noProxy .Values.proxy.configSecretName }}--proxy=off{{ end }} http://localhost:9090/-/ready --header="Authorization:Basic $AUTH_SECRET" + -qO- + ports: + - containerPort: 9090 + name: http-web + protocol: TCP + - args: + - --listen-address=:8080 + - --reload-url=http://$(USERNAME):$(PASSWORD)@localhost:9090/-/reload + - --config-file=/etc/prometheus/config/prometheus.yaml.gz + - --config-envsubst-file=/etc/prometheus/config_out/prometheus.env.yaml + - --watched-dir=/etc/prometheus/rules/prometheus-px-backup-dashboard-prometheus-rulefiles-0 + - --log-level=debug + name: config-reloader + env: + - name: USERNAME + valueFrom: + secretKeyRef: + key: username + name: pxc-backup-metrics + - name: PASSWORD + valueFrom: + secretKeyRef: + key: password + name: pxc-backup-metrics + {{- if or (empty .Values.proxy.includeNoProxyList) (has "px-backup-dashboard-prometheus" .Values.proxy.includeNoProxyList) }} + {{ include "proxy.proxyEnv" . | nindent 4 }} + {{- end }} + ports: + - containerPort: 8080 + name: reloader-web + protocol: TCP + {{- if .Values.proxy.configSecretName }} + volumeMounts: + - mountPath: /etc/ssl/certs/proxy-ca.pem + subPath: proxy-ca.pem + name: proxy-ca-volume + readOnly: true + {{- end }} + {{- if $isOpenshiftCluster }} + {{- else }} + securityContext: + fsGroup: 2000 + runAsNonRoot: true + runAsUser: 1000 + {{- end }} + logLevel: debug + listenLocal: true + volumeMounts: + - mountPath: /etc/prometheus/web_config/web-config-custom.yaml + name: web-config-custom + readOnly: true + subPath: web-config-custom.yaml + {{- if .Values.proxy.configSecretName }} + - mountPath: /etc/ssl/certs/proxy-ca.pem + subPath: proxy-ca.pem + name: proxy-ca-volume + readOnly: true + {{- end }} + {{- if .Values.istio.enabled }} + - mountPath: /etc/prom-certs/ + name: istio-certs + {{- end}} + volumes: + - name: web-config-custom + secret: + defaultMode: 420 + secretName: pxc-backup-metrics + {{- if .Values.proxy.configSecretName }} + - name: proxy-ca-volume + secret: + items: + - key: CA + path: proxy-ca.pem + optional: true + secretName: {{ .Values.proxy.configSecretName }} + {{- end }} + {{- if .Values.istio.enabled }} + - emptyDir: + medium: Memory + name: istio-certs + {{- end}} + replicas: {{ .Values.pxbackup.prometheus.replicas }} + evaluationInterval: 30s + scrapeInterval: 30s + ruleSelector: + matchLabels: + app: px-backup-alerts + serviceAccountName: px-backup-dashboard-prometheus + {{- if .Values.images.pullSecrets }} + imagePullSecrets: + {{- range $sec := .Values.images.pullSecrets }} + - name: {{ $sec | quote }} + {{- end }} + {{- end }} + serviceMonitorSelector: + matchLabels: + name: px-backup-dashboard-prometheus-sm + {{- with .Values.tolerations }} + tolerations: + {{- toYaml . | nindent 4 }} + {{- end }} +{{- end -}} + +{{- define "px-central.cr.alertmanager" -}} +{{- $isOpenshiftCluster := or .Values.isOpenshift (.Capabilities.APIVersions.Has "apps.openshift.io/v1") -}} +{{- $azureProxyEnabled := .Values.proxy.azureProxyEnabled | default false -}} +apiVersion: monitoring.coreos.com/v1 +kind: Alertmanager +metadata: + name: px-backup-alertmanager + namespace: {{ .Release.Namespace }} + annotations: + helm.sh/resource-policy: keep + labels: +{{- include "px-central.partOfLabel" . | nindent 4 }} +spec: + affinity: + nodeAffinity: + requiredDuringSchedulingIgnoredDuringExecution: + nodeSelectorTerms: + - matchExpressions: + {{- if .Values.nodeAffinityLabel }} + - key: {{ .Values.nodeAffinityLabel }} + operator: Exists + {{- else }} + - key: pxbackup/enabled + operator: NotIn + values: + - "false" + {{- end }} + configSecret: px-backup-alertmanager-custom-config + podMetadata: + {{- if and (eq $azureProxyEnabled true) (not (has "px-backup-alertmanager" .Values.proxy.excludeAzureProxyList)) }} + annotations: + kubernetes.azure.com/no-http-proxy-vars: "true" + {{- end }} + labels: +{{- include "px-central.partOfLabel" . | nindent 6 }} + alertmanagerConfigSelector: + matchLabels: + app: px-backup-alert-configs + replicas: {{ .Values.pxbackup.alertmanager.replicas }} + {{- if .Values.images.pullSecrets }} + imagePullSecrets: + {{- range $sec := .Values.images.pullSecrets }} + - name: {{ $sec | quote }} + {{- end }} + {{- end }} + retention: {{ .Values.pxbackup.alertmanager.retention}} + initContainers: + - name: init-config-reloader + {{- if .Values.proxy.configSecretName }} + volumeMounts: + - mountPath: /etc/ssl/certs/proxy-ca.pem + subPath: proxy-ca.pem + name: proxy-ca-volume + readOnly: true + {{- end }} + {{- $proxyEnv := include "proxy.proxyEnv" . }} + {{- if and (or (empty .Values.proxy.includeNoProxyList) (has "px-backup-alertmanager" .Values.proxy.includeNoProxyList)) (ne (trim $proxyEnv) "") }} + env: + {{ $proxyEnv | nindent 8 }} + {{- end }} + containers: + - args: + - '--config.file=/etc/alertmanager/config_out/alertmanager.env.yaml' + - '--storage.path=/alertmanager' + - '--data.retention={{ .Values.pxbackup.alertmanager.retention }}' + - '--cluster.listen-address=[$(POD_IP)]:9094' + - '--web.listen-address=:9093' + - '--web.route-prefix=/' + - '--cluster.label={{ .Release.Namespace }}/px-backup-alertmanager' + - '--cluster.peer=alertmanager-px-backup-alertmanager-0.alertmanager-operated:9094' + - '--cluster.peer=alertmanager-px-backup-alertmanager-1.alertmanager-operated:9094' + - '--cluster.reconnect-timeout=5m' + - '--web.config.file=/etc/alertmanager/web_config/web-config-custom.yaml' + env: + - name: AUTH_SECRET + valueFrom: + secretKeyRef: + name: pxc-backup-metrics + key: metrics-token + {{- include "serviceMesh.env" . | nindent 8 }} + {{- if or (empty .Values.proxy.includeNoProxyList) (has "px-backup-alertmanager" .Values.proxy.includeNoProxyList) }} + {{ include "proxy.proxyEnv" . | nindent 8 }} + {{- end }} + - name: POD_IP + valueFrom: + fieldRef: + apiVersion: v1 + fieldPath: status.podIP + image: {{ printf "%s/%s/%s:%s" (default .Values.images.pxBackupAlertmanagerImage.registry .Values.images.registry) (default .Values.images.pxBackupAlertmanagerImage.repo .Values.images.repo) .Values.images.pxBackupAlertmanagerImage.imageName .Values.images.pxBackupAlertmanagerImage.tag }} + name: alertmanager + ports: + - containerPort: 9093 + name: web + protocol: TCP + - args: + - --listen-address=:8080 + - --reload-url=http://$(USERNAME):$(PASSWORD)@localhost:9093/-/reload + - --config-file=/etc/alertmanager/config/alertmanager.yaml.gz + - --config-envsubst-file=/etc/alertmanager/config_out/alertmanager.env.yaml + - --watched-dir=/etc/alertmanager/config + env: + - name: USERNAME + valueFrom: + secretKeyRef: + key: username + name: pxc-backup-metrics + - name: PASSWORD + valueFrom: + secretKeyRef: + key: password + name: pxc-backup-metrics + {{- if or (empty .Values.proxy.includeNoProxyList) (has "px-backup-alertmanager" .Values.proxy.includeNoProxyList) }} + {{ include "proxy.proxyEnv" . | nindent 6 }} + {{- end }} + name: config-reloader + ports: + - containerPort: 8080 + name: reloader-web + protocol: TCP + {{- if .Values.proxy.configSecretName }} + volumeMounts: + - mountPath: /etc/ssl/certs/proxy-ca.pem + subPath: proxy-ca.pem + name: proxy-ca-volume + readOnly: true + {{- end }} + {{- if $isOpenshiftCluster }} + {{- else }} + securityContext: + fsGroup: 2000 + runAsNonRoot: true + runAsUser: 1000 + {{- end }} + listenLocal: true + volumeMounts: + - mountPath: /etc/alertmanager/web_config/web-config-custom.yaml + name: web-config-custom + readOnly: true + subPath: web-config-custom.yaml + {{- if .Values.proxy.configSecretName }} + - mountPath: /etc/ssl/certs/proxy-ca.pem + subPath: proxy-ca.pem + name: proxy-ca-volume + readOnly: true + {{- end }} + volumes: + - name: web-config-custom + secret: + defaultMode: 420 + secretName: pxc-backup-metrics + {{- if .Values.proxy.configSecretName }} + - name: proxy-ca-volume + secret: + items: + - key: CA + path: proxy-ca.pem + optional: true + secretName: {{ .Values.proxy.configSecretName }} + {{- end }} + {{- if .Values.persistentStorage.storageClassName }} + storage: + volumeClaimTemplate: + metadata: + labels: +{{- include "px-central.partOfLabel" . | nindent 10 }} + spec: + storageClassName: {{ .Values.persistentStorage.storageClassName }} + resources: + requests: + storage: {{ .Values.persistentStorage.alertManager.storage }} + {{- end }} + {{- with .Values.tolerations }} + tolerations: + {{- toYaml . | nindent 4 }} + {{- end }} +{{- end -}} + +{{- define "px-central.cr.serviceMonitorDedicated" -}} +# ServiceMonitor for px-backup's dedicated Prometheus dashboard +# Created when dedicated monitoring system is enabled (deployDedicatedMonitoringSystem=true) +# Includes metric drops to optimize for dashboard use +apiVersion: monitoring.coreos.com/v1 +kind: ServiceMonitor +metadata: + namespace: {{ .Release.Namespace }} + name: px-backup-dashboard-prometheus-sm + annotations: + helm.sh/resource-policy: keep + labels: + name: px-backup-dashboard-prometheus-sm + app.kubernetes.io/component: px-backup +{{- include "px-central.labels" . | nindent 4 }} +spec: + endpoints: + - metricRelabelings: + - action: labeldrop + regex: (instance|pod) + - action: drop + regex: process_.* + sourceLabels: + - __name__ + - action: drop + regex: go_.* + sourceLabels: + - __name__ + - action: drop + regex: grpc_.* + sourceLabels: + - __name__ + - action: drop + regex: (pxbackup_backup_duration_seconds|pxbackup_backup_resource_count|pxbackup_backup_schedule_status|pxbackup_backup_size_bytes|pxbackup_backup_volume_count|pxbackup_backuplocation_metrics|pxbackup_cloudcred_metrics|pxbackup_schedpolicy_metrics|pxbackup_restore_duration_seconds|pxbackup_restore_resource_count|pxbackup_restore_size_bytes|pxbackup_restore_volume_count|pxbackup_backup_object_info|pxbackup_backup_volume_info|pxbackup_virtual_machine_info|pxbackup_virtual_machine_resource_info|pxbackup_namespace_resource_type_info|pxbackup_namespace_resource_info) + sourceLabels: + - __name__ + port: http-rest-api + {{- if .Values.istio.enabled }} + scheme: https + tlsConfig: + caFile: /etc/prom-certs/root-cert.pem + certFile: /etc/prom-certs/cert-chain.pem + insecureSkipVerify: true + keyFile: /etc/prom-certs/key.pem + {{- end }} + targetPort: 10001 + namespaceSelector: + any: true + selector: + matchLabels: + app: px-backup +{{- end -}} + +{{- define "px-central.cr.serviceMonitorExternalFalse" -}} +# ServiceMonitor for px-backup's dashboard Prometheus or external monitoring +# Created when dedicated monitoring is disabled AND external scraping is disabled +# This handles the case: deployDedicatedMonitoringSystem=false, enableExternalMetricsScraping=false +# Allows external Prometheus to discover and scrape px-backup metrics +apiVersion: monitoring.coreos.com/v1 +kind: ServiceMonitor +metadata: + namespace: {{ .Release.Namespace }} + name: px-backup-dashboard-prometheus-sm + annotations: + helm.sh/resource-policy: keep + labels: + name: px-backup-dashboard-prometheus-sm + app.kubernetes.io/component: px-backup +{{- include "px-central.labels" . | nindent 4 }} +spec: + endpoints: + - metricRelabelings: + - action: labeldrop + regex: (instance|pod) + - action: drop + regex: process_.* + sourceLabels: + - __name__ + - action: drop + regex: go_.* + sourceLabels: + - __name__ + - action: drop + regex: grpc_.* + sourceLabels: + - __name__ + - action: drop + regex: (pxbackup_backup_duration_seconds|pxbackup_backup_resource_count|pxbackup_backup_schedule_status|pxbackup_backup_size_bytes|pxbackup_backup_volume_count|pxbackup_backuplocation_metrics|pxbackup_cloudcred_metrics|pxbackup_schedpolicy_metrics|pxbackup_restore_duration_seconds|pxbackup_restore_resource_count|pxbackup_restore_size_bytes|pxbackup_restore_volume_count|pxbackup_backup_object_info|pxbackup_backup_volume_info|pxbackup_virtual_machine_info|pxbackup_virtual_machine_resource_info|pxbackup_namespace_resource_type_info|pxbackup_namespace_resource_info) + sourceLabels: + - __name__ + port: http-rest-api + {{- if .Values.istio.enabled }} + scheme: https + tlsConfig: + caFile: /etc/istio-output-certs/root-cert.pem + certFile: /etc/istio-output-certs/cert-chain.pem + insecureSkipVerify: true + keyFile: /etc/istio-output-certs/key.pem + {{- end }} + targetPort: 10001 + namespaceSelector: + any: true + selector: + matchLabels: + app: px-backup +{{- end -}} + +{{- define "px-central.cr.serviceMonitorExternalTrue" -}} +# ServiceMonitor for external monitoring systems (e.g., central monitoring namespace) +# Drops noisy metrics (process/go/grpc) and legacy pxbackup metrics +# But KEEPS detailed metrics for comprehensive monitoring +# External Prometheus should select this using label: prometheus=external-monitoring +# Can coexist with px-backup-dashboard-prometheus-sm when both monitoring systems are enabled +apiVersion: monitoring.coreos.com/v1 +kind: ServiceMonitor +metadata: + namespace: {{ .Release.Namespace }} + name: px-backup-external-monitoring-sm + annotations: + helm.sh/resource-policy: keep + labels: + name: px-backup-external-monitoring-sm + app.kubernetes.io/component: px-backup + prometheus: external-monitoring +{{- include "px-central.labels" . | nindent 4 }} +spec: + endpoints: + - metricRelabelings: + - action: labeldrop + regex: (instance|pod) + - action: drop + regex: process_.* + sourceLabels: + - __name__ + - action: drop + regex: go_.* + sourceLabels: + - __name__ + - action: drop + regex: grpc_.* + sourceLabels: + - __name__ + - action: drop + regex: (pxbackup_backup_duration_seconds|pxbackup_backup_resource_count|pxbackup_backup_schedule_status|pxbackup_backup_size_bytes|pxbackup_backup_volume_count|pxbackup_backuplocation_metrics|pxbackup_cloudcred_metrics|pxbackup_schedpolicy_metrics|pxbackup_restore_duration_seconds|pxbackup_restore_resource_count|pxbackup_restore_size_bytes|pxbackup_restore_volume_count) + sourceLabels: + - __name__ + # NOTE: Detailed metrics are NOT dropped for external monitoring + # These are kept: pxbackup_backup_object_info, pxbackup_backup_volume_info, + # pxbackup_virtual_machine_info, pxbackup_virtual_machine_resource_info + port: http-rest-api + targetPort: 10001 + {{- if .Values.istio.enabled }} + scheme: https + tlsConfig: + caFile: /etc/istio-output-certs/root-cert.pem + certFile: /etc/istio-output-certs/cert-chain.pem + insecureSkipVerify: true + keyFile: /etc/istio-output-certs/key.pem + {{- end }} + namespaceSelector: + any: true + selector: + matchLabels: + app: px-backup +{{- end -}} + +{{- define "px-central.cr.prometheusRule" -}} +apiVersion: monitoring.coreos.com/v1 +kind: PrometheusRule +metadata: + annotations: + helm.sh/resource-policy: keep + labels: + app: px-backup-alerts +{{- include "px-central.partOfLabel" . | nindent 4 }} + name: px-backup-dashboard-prometheus-rules +spec: + groups: + - name: gauge_rules + rules: + - alert: ClusterAlert + annotations: + description: {{`The Cluster "{{ $labels.name }}" {{- if eq $value 5.00 }} has failed. {{- else if eq $value 2.00 }} has turned offline.{{- else }}unknown state.{{- end }} `}} + summary: {{`Cluster {{- if eq $value 5.00 }} addition failed {{- else if eq $value 2.00}} turned offline {{- else }}unknown state {{- end }}`}} + value: "{{`{{ $value }}`}}" + expr: pxbackup_cluster_status == 5 or pxbackup_cluster_status == 2 + for: 1m + labels: + severity: critical + + - alert: BackupAlert + annotations: + description: |- + {{ `The Backup "{{ $labels.name }}" + {{- if eq $labels.schedule_name "" }} + {{ else }} part of backup schedule "{{ $labels.schedule_name }}" + {{ end }} taken for cluster "{{ $labels.cluster }}" on namespace "{{ $labels.backup_namespace }}" + {{- if eq $value 4.00 }} has failed. {{- else }} is missing from backup location. {{- end }} `}} + summary: "{{` {{- if eq $value 4.00 -}} Backup failed {{- else -}} Cloud file missing {{- end }} `}}" + value: "{{`{{ $value }}`}}" + expr: pxbackup_backup_status == 4 or pxbackup_backup_status == 10 + for: 1m + labels: + severity: critical + + - alert: RestoreAlert + annotations: + description: {{`The Restore "{{ $labels.name + }}" made from backup "{{ $labels.backup}}" has failed.`}} + summary: Restoring backup failed + expr: pxbackup_restore_status == 4 + for: 1m + labels: + severity: critical + + - alert: BackupLocationAlert + annotations: + description: {{`The Backup Location "{{ $labels.name }}" has failed.`}} + summary: Backup Location addition failed + expr: pxbackup_backup_location_status == 4 + for: 1m + labels: + severity: critical + + - alert: BackupLocationLimitedAvailabilityAlert + annotations: + description: {{`The Backup Location "{{ $labels.name }}" has transitioned to a limited availability state.`}} + summary: Backup Location status changed to limited availability. KDMP backup will not be allowed. + expr: pxbackup_backup_location_status == 5 + for: 1m + labels: + severity: critical + + - alert: PartialBackupAlert + annotations: + description: {{`The Backup "{{ $labels.name }}" + {{- if eq .Labels.schedule_name "" }} + {{ else }} part of backup schedule "{{ $labels.schedule_name }}" + {{ end }} taken for cluster "{{ $labels.cluster }}"on namespace "{{ $labels.backup_namespace}}" + was only completed partially.`}} + summary: Partial Backup Success + expr: pxbackup_backup_status == 8 + for: 1m + labels: + severity: critical + + - alert: BulkOperationFailure + annotations: + description: |- + {{`{{- $obj := reReplaceAll "_" " " $labels.object_type | title -}} + The {{ $obj }} "{{ $labels.name }}" {{ $labels.operation }} operation has failed for user "{{ $labels.user_name }}" on cluster "{{ $labels.cluster }}". Error: {{ $labels.error_reason }}`}} + summary: {{`Bulk operation {{ $labels.operation }} operation failed`}} + value: "{{`{{ $value }}`}}" + expr: pxbackup_bulk_operation_failure > 0 + for: 0s + labels: + severity: critical + + - alert: LicenseExpiryAlert + annotations: + description: >- + {{`{{ $labels.license_type }} license + {{- if eq $labels.error_reason "License expires in 0 days" }} + expires today + {{- else if match ".*expired.*" $labels.error_reason }} + has expired + {{- else if eq $labels.error_reason "License expires in 1 days" }} + expires tomorrow + {{- else if match ".*expires in [2-7] days.*" $labels.error_reason }} + expires soon (critical) + {{- else if match ".*expires in (8|9|[12][0-9]|30) days.*" $labels.error_reason }} + expires soon (warning) + {{- else if match ".*expires in [0-9]+ days.*" $labels.error_reason }} + expires soon + {{- else }} + needs attention + {{- end }}`}} + summary: >- + {{`{{ $labels.license_type }} license for "{{ $labels.name }}" ({{ $labels.license_count }} nodes) + {{- if eq $labels.error_reason "License expires in 0 days" }} + expires today ({{ $labels.expiry_date }}) + {{- else if match ".*expired.*" $labels.error_reason }} + has expired on {{ $labels.expiry_date }} + {{- else if eq $labels.error_reason "License expires in 1 days" }} + expires tomorrow ({{ $labels.expiry_date }}) + {{- else if match ".*expires in [2-9] days.*" $labels.error_reason }} + expires in a few days on {{ $labels.expiry_date }} + {{- else if match ".*expires in [0-9]+ days.*" $labels.error_reason }} + will expire soon on {{ $labels.expiry_date }} + {{- else }} + status: {{ $labels.error_reason }} + {{- end }}. + Please contact support to renew your license to avoid service interruption.`}} + expr: pxbackup_license_expiry_status + for: 1m + labels: + severity: critical + user_id: "{{`{{ $labels.user_id }}`}}" + + - alert: OrphanedBackupDataAlert + annotations: + description: >- + {{`Backup "{{ $labels.name }}" is stuck in deleting state because the underlying cluster + "{{ $labels.cluster }}" is no longer available. The backup data on backup location + "{{ $labels.backup_location_name }}" cannot be cleaned up automatically. To ensure full + data deletion, register a temporary + cluster associated with this backup location. Alternatively, use the --force flag to + remove only the backup metadata from PX-Backup; this skips physical cleanup of the + backup data in the object store, which must then be cleaned up manually.`}} + summary: {{`Backup "{{ $labels.name }}" stuck in deleting - underlying cluster "{{ $labels.cluster }}" is unavailable`}} + expr: pxbackup_orphaned_backup_data > 0 + for: 1m + labels: + severity: critical + user_id: "{{`{{ $labels.user_id }}`}}" + + - alert: ClusterCountLimitAlert + annotations: + description: >- + {{`{{ $labels.error_reason }}`}} + summary: >- + {{`Cluster count limit reached ({{ $labels.current_count }}/{{ $labels.max_count }} clusters). Further cluster additions are now suspended.`}} + expr: pxbackup_cluster_count_limit_status + for: 1m + labels: + severity: critical + user_id: "{{`{{ $labels.user_id }}`}}" + + - name: cluster_discovery_rules + rules: + - alert: ClusterDiscoveryConfigFailed + annotations: + description: >- + {{`Cluster discovery config "{{ $labels.config_name }}" + (project: {{ $labels.project_name }}, selector: {{ $labels.label_selector }}) + has failed. Reason: {{ $labels.error_reason }}`}} + summary: {{`Gardener cluster discovery failed`}} + expr: pxbackup_cluster_discovery_config_status == 3 + for: 1m + labels: + severity: critical + + - alert: GardenerConnectivityFailure + annotations: + description: >- + {{`Gardener API connectivity failed for discovery config "{{ $labels.config_name }}". + Reason: {{ $labels.error_reason }}`}} + summary: {{`Gardener API connectivity failure`}} + expr: pxbackup_gardener_connectivity_failure == 1 + for: 1m + labels: + severity: critical + + - alert: GardenerShootKubeconfigValidationFailure + annotations: + description: >- + {{`Shoot kubeconfig validation failed for cluster "{{ $labels.cluster_name }}" + in discovery config "{{ $labels.config_name }}". + Reason: {{ $labels.error_reason }}`}} + summary: {{`Shoot kubeconfig validation failed`}} + expr: pxbackup_gardener_shoot_kubeconfig_validation_failure == 1 + for: 1m + labels: + severity: critical +{{- end -}} + +{{- $deployDedicatedMonitoringSystem := .Values.pxbackup.deployDedicatedMonitoringSystem }} +{{- $enableExternalMetricsScraping := .Values.pxbackup.enableExternalMetricsScraping | default false }} +apiVersion: v1 +kind: ConfigMap +metadata: + name: px-backup-monitoring-crs + namespace: {{ .Release.Namespace }} + labels: + app.kubernetes.io/component: px-backup +{{- include "px-central.labels" . | nindent 4 }} + annotations: + "helm.sh/hook": pre-install,pre-upgrade + "helm.sh/hook-weight": "-5" + "helm.sh/hook-delete-policy": before-hook-creation,hook-succeeded +data: +{{- if eq $deployDedicatedMonitoringSystem true }} + prometheus.yaml: | +{{ include "px-central.cr.prometheus" . | indent 4 }} + alertmanager.yaml: | +{{ include "px-central.cr.alertmanager" . | indent 4 }} + servicemonitor-dashboard.yaml: | +{{ include "px-central.cr.serviceMonitorDedicated" . | indent 4 }} +{{- else if eq $enableExternalMetricsScraping false }} + servicemonitor-dashboard.yaml: | +{{ include "px-central.cr.serviceMonitorExternalFalse" . | indent 4 }} +{{- end }} +{{- if eq $enableExternalMetricsScraping true }} + servicemonitor-external.yaml: | +{{ include "px-central.cr.serviceMonitorExternalTrue" . | indent 4 }} +{{- end }} + prometheusrule.yaml: | +{{ include "px-central.cr.prometheusRule" . | indent 4 }} diff --git a/charts/px-central/templates/px-backup/pxcentral-prometheus.yaml b/charts/px-central/templates/px-backup/pxcentral-prometheus.yaml index 98a486de8..0a14e6f23 100644 --- a/charts/px-central/templates/px-backup/pxcentral-prometheus.yaml +++ b/charts/px-central/templates/px-backup/pxcentral-prometheus.yaml @@ -2,29 +2,7 @@ {{- if eq $pxBackupEnabled true }} {{- $isOpenshiftCluster := or .Values.isOpenshift (.Capabilities.APIVersions.Has "apps.openshift.io/v1") -}} {{- $deployDedicatedMonitoringSystem := .Values.pxbackup.deployDedicatedMonitoringSystem }} -{{- $pxMonitorEnabled := .Values.pxmonitor.enabled | default false }} {{- $azureProxyEnabled := .Values.proxy.azureProxyEnabled | default false }} -{{- $enableExternalMetricsScraping := .Values.pxbackup.enableExternalMetricsScraping | default false }} -{{- if eq $deployDedicatedMonitoringSystem true }} -{{- $storageSize := "5Gi" }} -{{- $retentionSize := "4096MB" }} -{{- $prometheus := lookup "monitoring.coreos.com/v1" "Prometheus" .Release.Namespace "px-backup-dashboard-prometheus" }} -{{- if $prometheus }} -{{- $storageSize = $prometheus.spec.storage.volumeClaimTemplate.spec.resources.requests.storage }} -{{- range $prometheus.spec.containers -}} - {{- range $arg := .args -}} - {{- if hasPrefix "--storage.tsdb.retention.size=" $arg -}} - {{- $retentionSize = trimPrefix "--storage.tsdb.retention.size=" $arg -}} - {{- if eq $retentionSize "4600MB" -}} - {{- $retentionSize = "4096MB" -}} - {{- end -}} - {{- end -}} - {{- end -}} -{{- end -}} -{{- else }} -{{- end }} -{{- $hasAzureAnnotation := and (eq $azureProxyEnabled true) (not (has "px-backup-dashboard-prometheus" .Values.proxy.excludeAzureProxyList)) }} -{{- $hasIstioAnnotation := .Values.istio.enabled }} apiVersion: rbac.authorization.k8s.io/v1 kind: ClusterRoleBinding metadata: @@ -280,584 +258,4 @@ metadata: labels: app.kubernetes.io/component: px-backup {{- include "px-central.labels" . | nindent 4 }} - - ---- -apiVersion: monitoring.coreos.com/v1 -kind: Prometheus -metadata: - name: px-backup-dashboard-prometheus - namespace: {{ .Release.Namespace }} - labels: -{{- include "px-central.partOfLabel" . | nindent 5 }} -spec: - affinity: - nodeAffinity: - requiredDuringSchedulingIgnoredDuringExecution: - nodeSelectorTerms: - - matchExpressions: - {{- if .Values.nodeAffinityLabel }} - - key: {{ .Values.nodeAffinityLabel }} - operator: Exists - {{- else }} - - key: pxbackup/enabled - operator: NotIn - values: - - "false" - {{- end }} - additionalAlertManagerConfigs: - key: am-configs.yaml - name: pxc-backup-metrics - podMetadata: - {{- if or $hasAzureAnnotation $hasIstioAnnotation }} - annotations: - {{- if $hasAzureAnnotation }} - kubernetes.azure.com/no-http-proxy-vars: "true" - {{- end }} - {{- if $hasIstioAnnotation }} - proxy.istio.io/config: | - proxyMetadata: - OUTPUT_CERTS: /etc/istio-output-certs - sidecar.istio.io/userVolumeMount: '[{"name": "istio-certs", "mountPath": "/etc/istio-output-certs"}]' - traffic.sidecar.istio.io/includeOutboundIPRanges: "" - {{- end}} - {{- end }} - labels: -{{- include "px-central.partOfLabel" . | nindent 6 }} - {{- if .Values.persistentStorage.storageClassName }} - storage: - volumeClaimTemplate: - metadata: - labels: -{{- include "px-central.partOfLabel" . | nindent 10 }} - spec: - storageClassName: {{ .Values.persistentStorage.storageClassName }} - resources: - requests: - {{- if eq .Release.IsInstall true }} - storage: {{ .Values.persistentStorage.prometheus.storage }} - {{- else }} - storage: {{ $storageSize }} - {{- end }} - {{- end }} - initContainers: - - name: init-config-reloader - {{- if .Values.proxy.configSecretName }} - volumeMounts: - - mountPath: /etc/ssl/certs/proxy-ca.pem - subPath: proxy-ca.pem - name: proxy-ca-volume - readOnly: true - {{- end }} - {{- $proxyEnv := include "proxy.proxyEnv" . }} - {{- if and (or (empty .Values.proxy.includeNoProxyList) (has "px-backup-dashboard-prometheus" .Values.proxy.includeNoProxyList)) (ne (trim $proxyEnv) "") }} - env: - {{ $proxyEnv | nindent 4 }} - {{- end }} - containers: - - args: - - --web.console.templates=/etc/prometheus/consoles - - --web.console.libraries=/etc/prometheus/console_libraries - - --storage.tsdb.retention.time={{ .Values.pxbackup.prometheus.retention }} - {{- if eq .Release.IsInstall true }} - - --storage.tsdb.retention.size={{ .Values.persistentStorage.prometheus.retentionSize }} - {{- else }} - - --storage.tsdb.retention.size={{ $retentionSize }} - {{- end }} - - --config.file=/etc/prometheus/config_out/prometheus.env.yaml - - --storage.tsdb.path=/prometheus - - --web.enable-lifecycle - - --web.route-prefix=/ - - --log.level=debug - - --web.config.file=/etc/prometheus/web_config/web-config-custom.yaml - env: - - name: AUTH_SECRET - valueFrom: - secretKeyRef: - name: pxc-backup-metrics - key: metrics-token - {{- include "serviceMesh.env" . | nindent 4 }} - {{- if or (empty .Values.proxy.includeNoProxyList) (has "px-backup-dashboard-prometheus" .Values.proxy.includeNoProxyList) }} - {{ include "proxy.proxyEnv" . | nindent 4 }} - {{- end }} - image: {{ printf "%s/%s/%s:%s" (default .Values.images.pxBackupPrometheusImage.registry .Values.images.registry) (default .Values.images.pxBackupPrometheusImage.repo .Values.images.repo) .Values.images.pxBackupPrometheusImage.imageName .Values.images.pxBackupPrometheusImage.tag }} - livenessProbe: - exec: - command: - - sh - - -c - - wget {{ if or .Values.proxy.httpProxy.noProxy .Values.proxy.configSecretName }}--proxy=off{{ end }} http://localhost:9090/-/healthy --header="Authorization:Basic $AUTH_SECRET" - -qO- - name: prometheus - readinessProbe: - exec: - command: - - sh - - -c - - wget {{ if or .Values.proxy.httpProxy.noProxy .Values.proxy.configSecretName }}--proxy=off{{ end }} http://localhost:9090/-/ready --header="Authorization:Basic $AUTH_SECRET" - -qO- - startupProbe: - exec: - command: - - sh - - -c - - wget {{ if or .Values.proxy.httpProxy.noProxy .Values.proxy.configSecretName }}--proxy=off{{ end }} http://localhost:9090/-/ready --header="Authorization:Basic $AUTH_SECRET" - -qO- - ports: - - containerPort: 9090 - name: http-web - protocol: TCP - - args: - - --listen-address=:8080 - - --reload-url=http://$(USERNAME):$(PASSWORD)@localhost:9090/-/reload - - --config-file=/etc/prometheus/config/prometheus.yaml.gz - - --config-envsubst-file=/etc/prometheus/config_out/prometheus.env.yaml - - --watched-dir=/etc/prometheus/rules/prometheus-px-backup-dashboard-prometheus-rulefiles-0 - - --log-level=debug - name: config-reloader - env: - - name: USERNAME - valueFrom: - secretKeyRef: - key: username - name: pxc-backup-metrics - - name: PASSWORD - valueFrom: - secretKeyRef: - key: password - name: pxc-backup-metrics - {{- if or (empty .Values.proxy.includeNoProxyList) (has "px-backup-dashboard-prometheus" .Values.proxy.includeNoProxyList) }} - {{ include "proxy.proxyEnv" . | nindent 4 }} - {{- end }} - ports: - - containerPort: 8080 - name: reloader-web - protocol: TCP - {{- if .Values.proxy.configSecretName }} - volumeMounts: - - mountPath: /etc/ssl/certs/proxy-ca.pem - subPath: proxy-ca.pem - name: proxy-ca-volume - readOnly: true - {{- end }} - {{- if $isOpenshiftCluster }} - {{- else }} - securityContext: - fsGroup: 2000 - runAsNonRoot: true - runAsUser: 1000 - {{- end }} - logLevel: debug - listenLocal: true - volumeMounts: - - mountPath: /etc/prometheus/web_config/web-config-custom.yaml - name: web-config-custom - readOnly: true - subPath: web-config-custom.yaml - {{- if .Values.proxy.configSecretName }} - - mountPath: /etc/ssl/certs/proxy-ca.pem - subPath: proxy-ca.pem - name: proxy-ca-volume - readOnly: true - {{- end }} - {{- if .Values.istio.enabled }} - - mountPath: /etc/prom-certs/ - name: istio-certs - {{- end}} - volumes: - - name: web-config-custom - secret: - defaultMode: 420 - secretName: pxc-backup-metrics - {{- if .Values.proxy.configSecretName }} - - name: proxy-ca-volume - secret: - items: - - key: CA - path: proxy-ca.pem - optional: true - secretName: {{ .Values.proxy.configSecretName }} - {{- end }} - {{- if .Values.istio.enabled }} - - emptyDir: - medium: Memory - name: istio-certs - {{- end}} - replicas: {{ .Values.pxbackup.prometheus.replicas }} - evaluationInterval: 30s - scrapeInterval: 30s - ruleSelector: - matchLabels: - app: px-backup-alerts - serviceAccountName: px-backup-dashboard-prometheus - {{- if .Values.images.pullSecrets }} - imagePullSecrets: - {{- range $sec := .Values.images.pullSecrets }} - - name: {{ $sec | quote }} - {{- end }} - {{- end }} - serviceMonitorSelector: - matchLabels: - name: px-backup-dashboard-prometheus-sm - {{- with .Values.tolerations }} - tolerations: - {{- toYaml . | nindent 4 }} - {{- end }} - ---- -# ServiceMonitor for px-backup's dedicated Prometheus dashboard -# Created when dedicated monitoring system is enabled (deployDedicatedMonitoringSystem=true) -# Includes metric drops to optimize for dashboard use -apiVersion: monitoring.coreos.com/v1 -kind: ServiceMonitor -metadata: - namespace: {{ .Release.Namespace }} - name: px-backup-dashboard-prometheus-sm - labels: - name: px-backup-dashboard-prometheus-sm - app.kubernetes.io/component: px-backup -{{- include "px-central.labels" . | nindent 4 }} -spec: - endpoints: - - metricRelabelings: - - action: labeldrop - regex: (instance|pod) - - action: drop - regex: process_.* - sourceLabels: - - __name__ - - action: drop - regex: go_.* - sourceLabels: - - __name__ - - action: drop - regex: grpc_.* - sourceLabels: - - __name__ - - action: drop - regex: (pxbackup_backup_duration_seconds|pxbackup_backup_resource_count|pxbackup_backup_schedule_status|pxbackup_backup_size_bytes|pxbackup_backup_volume_count|pxbackup_backuplocation_metrics|pxbackup_cloudcred_metrics|pxbackup_schedpolicy_metrics|pxbackup_restore_duration_seconds|pxbackup_restore_resource_count|pxbackup_restore_size_bytes|pxbackup_restore_volume_count|pxbackup_backup_object_info|pxbackup_backup_volume_info|pxbackup_virtual_machine_info|pxbackup_virtual_machine_resource_info|pxbackup_namespace_resource_type_info|pxbackup_namespace_resource_info) - sourceLabels: - - __name__ - port: http-rest-api - {{- if .Values.istio.enabled }} - scheme: https - tlsConfig: - caFile: /etc/prom-certs/root-cert.pem - certFile: /etc/prom-certs/cert-chain.pem - insecureSkipVerify: true - keyFile: /etc/prom-certs/key.pem - {{- end }} - targetPort: 10001 - namespaceSelector: - any: true - selector: - matchLabels: - app: px-backup -{{- else if eq $enableExternalMetricsScraping false }} ---- -# ServiceMonitor for px-backup's dashboard Prometheus or external monitoring -# Created when dedicated monitoring is disabled AND external scraping is disabled -# This handles the case: deployDedicatedMonitoringSystem=false, enableExternalMetricsScraping=false -# Allows external Prometheus to discover and scrape px-backup metrics -apiVersion: monitoring.coreos.com/v1 -kind: ServiceMonitor -metadata: - namespace: {{ .Release.Namespace }} - name: px-backup-dashboard-prometheus-sm - labels: - name: px-backup-dashboard-prometheus-sm - app.kubernetes.io/component: px-backup -{{- include "px-central.labels" . | nindent 4 }} -spec: - endpoints: - - metricRelabelings: - - action: labeldrop - regex: (instance|pod) - - action: drop - regex: process_.* - sourceLabels: - - __name__ - - action: drop - regex: go_.* - sourceLabels: - - __name__ - - action: drop - regex: grpc_.* - sourceLabels: - - __name__ - - action: drop - regex: (pxbackup_backup_duration_seconds|pxbackup_backup_resource_count|pxbackup_backup_schedule_status|pxbackup_backup_size_bytes|pxbackup_backup_volume_count|pxbackup_backuplocation_metrics|pxbackup_cloudcred_metrics|pxbackup_schedpolicy_metrics|pxbackup_restore_duration_seconds|pxbackup_restore_resource_count|pxbackup_restore_size_bytes|pxbackup_restore_volume_count|pxbackup_backup_object_info|pxbackup_backup_volume_info|pxbackup_virtual_machine_info|pxbackup_virtual_machine_resource_info|pxbackup_namespace_resource_type_info|pxbackup_namespace_resource_info) - sourceLabels: - - __name__ - port: http-rest-api - {{- if .Values.istio.enabled }} - scheme: https - tlsConfig: - caFile: /etc/istio-output-certs/root-cert.pem - certFile: /etc/istio-output-certs/cert-chain.pem - insecureSkipVerify: true - keyFile: /etc/istio-output-certs/key.pem - {{- end }} - targetPort: 10001 - namespaceSelector: - any: true - selector: - matchLabels: - app: px-backup -{{- end}} - -{{- if eq $enableExternalMetricsScraping true }} ---- -# ServiceMonitor for external monitoring systems (e.g., central monitoring namespace) -# Drops noisy metrics (process/go/grpc) and legacy pxbackup metrics -# But KEEPS detailed metrics for comprehensive monitoring -# External Prometheus should select this using label: prometheus=external-monitoring -# Can coexist with px-backup-dashboard-prometheus-sm when both monitoring systems are enabled -apiVersion: monitoring.coreos.com/v1 -kind: ServiceMonitor -metadata: - namespace: {{ .Release.Namespace }} - name: px-backup-external-monitoring-sm - labels: - name: px-backup-external-monitoring-sm - app.kubernetes.io/component: px-backup - prometheus: external-monitoring -{{- include "px-central.labels" . | nindent 4 }} -spec: - endpoints: - - metricRelabelings: - - action: labeldrop - regex: (instance|pod) - - action: drop - regex: process_.* - sourceLabels: - - __name__ - - action: drop - regex: go_.* - sourceLabels: - - __name__ - - action: drop - regex: grpc_.* - sourceLabels: - - __name__ - - action: drop - regex: (pxbackup_backup_duration_seconds|pxbackup_backup_resource_count|pxbackup_backup_schedule_status|pxbackup_backup_size_bytes|pxbackup_backup_volume_count|pxbackup_backuplocation_metrics|pxbackup_cloudcred_metrics|pxbackup_schedpolicy_metrics|pxbackup_restore_duration_seconds|pxbackup_restore_resource_count|pxbackup_restore_size_bytes|pxbackup_restore_volume_count) - sourceLabels: - - __name__ - # NOTE: Detailed metrics are NOT dropped for external monitoring - # These are kept: pxbackup_backup_object_info, pxbackup_backup_volume_info, - # pxbackup_virtual_machine_info, pxbackup_virtual_machine_resource_info - port: http-rest-api - targetPort: 10001 - {{- if .Values.istio.enabled }} - scheme: https - tlsConfig: - caFile: /etc/istio-output-certs/root-cert.pem - certFile: /etc/istio-output-certs/cert-chain.pem - insecureSkipVerify: true - keyFile: /etc/istio-output-certs/key.pem - {{- end }} - namespaceSelector: - any: true - selector: - matchLabels: - app: px-backup -{{- end}} - ---- -apiVersion: monitoring.coreos.com/v1 -kind: PrometheusRule -metadata: - labels: - app: px-backup-alerts -{{- include "px-central.partOfLabel" . | nindent 4 }} - name: px-backup-dashboard-prometheus-rules -spec: - groups: - - name: gauge_rules - rules: - - alert: ClusterAlert - annotations: - description: {{`The Cluster "{{ $labels.name }}" {{- if eq $value 5.00 }} has failed. {{- else if eq $value 2.00 }} has turned offline.{{- else }}unknown state.{{- end }} `}} - summary: {{`Cluster {{- if eq $value 5.00 }} addition failed {{- else if eq $value 2.00}} turned offline {{- else }}unknown state {{- end }}`}} - value: "{{`{{ $value }}`}}" - expr: pxbackup_cluster_status == 5 or pxbackup_cluster_status == 2 - for: 1m - labels: - severity: critical - - - alert: BackupAlert - annotations: - description: |- - {{ `The Backup "{{ $labels.name }}" - {{- if eq $labels.schedule_name "" }} - {{ else }} part of backup schedule "{{ $labels.schedule_name }}" - {{ end }} taken for cluster "{{ $labels.cluster }}" on namespace "{{ $labels.backup_namespace }}" - {{- if eq $value 4.00 }} has failed. {{- else }} is missing from backup location. {{- end }} `}} - summary: "{{` {{- if eq $value 4.00 -}} Backup failed {{- else -}} Cloud file missing {{- end }} `}}" - value: "{{`{{ $value }}`}}" - expr: pxbackup_backup_status == 4 or pxbackup_backup_status == 10 - for: 1m - labels: - severity: critical - - - alert: RestoreAlert - annotations: - description: {{`The Restore "{{ $labels.name - }}" made from backup "{{ $labels.backup}}" has failed.`}} - summary: Restoring backup failed - expr: pxbackup_restore_status == 4 - for: 1m - labels: - severity: critical - - - alert: BackupLocationAlert - annotations: - description: {{`The Backup Location "{{ $labels.name }}" has failed.`}} - summary: Backup Location addition failed - expr: pxbackup_backup_location_status == 4 - for: 1m - labels: - severity: critical - - - alert: BackupLocationLimitedAvailabilityAlert - annotations: - description: {{`The Backup Location "{{ $labels.name }}" has transitioned to a limited availability state.`}} - summary: Backup Location status changed to limited availability. KDMP backup will not be allowed. - expr: pxbackup_backup_location_status == 5 - for: 1m - labels: - severity: critical - - - alert: PartialBackupAlert - annotations: - description: {{`The Backup "{{ $labels.name }}" - {{- if eq .Labels.schedule_name "" }} - {{ else }} part of backup schedule "{{ $labels.schedule_name }}" - {{ end }} taken for cluster "{{ $labels.cluster }}"on namespace "{{ $labels.backup_namespace}}" - was only completed partially.`}} - summary: Partial Backup Success - expr: pxbackup_backup_status == 8 - for: 1m - labels: - severity: critical - - - alert: BulkOperationFailure - annotations: - description: |- - {{`{{- $obj := reReplaceAll "_" " " $labels.object_type | title -}} - The {{ $obj }} "{{ $labels.name }}" {{ $labels.operation }} operation has failed for user "{{ $labels.user_name }}" on cluster "{{ $labels.cluster }}". Error: {{ $labels.error_reason }}`}} - summary: {{`Bulk operation {{ $labels.operation }} operation failed`}} - value: "{{`{{ $value }}`}}" - expr: pxbackup_bulk_operation_failure > 0 - for: 0s - labels: - severity: critical - - - alert: LicenseExpiryAlert - annotations: - description: >- - {{`{{ $labels.license_type }} license - {{- if eq $labels.error_reason "License expires in 0 days" }} - expires today - {{- else if match ".*expired.*" $labels.error_reason }} - has expired - {{- else if eq $labels.error_reason "License expires in 1 days" }} - expires tomorrow - {{- else if match ".*expires in [2-7] days.*" $labels.error_reason }} - expires soon (critical) - {{- else if match ".*expires in (8|9|[12][0-9]|30) days.*" $labels.error_reason }} - expires soon (warning) - {{- else if match ".*expires in [0-9]+ days.*" $labels.error_reason }} - expires soon - {{- else }} - needs attention - {{- end }}`}} - summary: >- - {{`{{ $labels.license_type }} license for "{{ $labels.name }}" ({{ $labels.license_count }} nodes) - {{- if eq $labels.error_reason "License expires in 0 days" }} - expires today ({{ $labels.expiry_date }}) - {{- else if match ".*expired.*" $labels.error_reason }} - has expired on {{ $labels.expiry_date }} - {{- else if eq $labels.error_reason "License expires in 1 days" }} - expires tomorrow ({{ $labels.expiry_date }}) - {{- else if match ".*expires in [2-9] days.*" $labels.error_reason }} - expires in a few days on {{ $labels.expiry_date }} - {{- else if match ".*expires in [0-9]+ days.*" $labels.error_reason }} - will expire soon on {{ $labels.expiry_date }} - {{- else }} - status: {{ $labels.error_reason }} - {{- end }}. - Please contact support to renew your license to avoid service interruption.`}} - expr: pxbackup_license_expiry_status - for: 1m - labels: - severity: critical - user_id: "{{`{{ $labels.user_id }}`}}" - - - alert: OrphanedBackupDataAlert - annotations: - description: >- - {{`Backup "{{ $labels.name }}" is stuck in deleting state because the underlying cluster - "{{ $labels.cluster }}" is no longer available. The backup data on backup location - "{{ $labels.backup_location_name }}" cannot be cleaned up automatically. To ensure full - data deletion, register a temporary - cluster associated with this backup location. Alternatively, use the --force flag to - remove only the backup metadata from PX-Backup; this skips physical cleanup of the - backup data in the object store, which must then be cleaned up manually.`}} - summary: {{`Backup "{{ $labels.name }}" stuck in deleting - underlying cluster "{{ $labels.cluster }}" is unavailable`}} - expr: pxbackup_orphaned_backup_data > 0 - for: 1m - labels: - severity: critical - user_id: "{{`{{ $labels.user_id }}`}}" - - - alert: ClusterCountLimitAlert - annotations: - description: >- - {{`{{ $labels.error_reason }}`}} - summary: >- - {{`Cluster count limit reached ({{ $labels.current_count }}/{{ $labels.max_count }} clusters). Further cluster additions are now suspended.`}} - expr: pxbackup_cluster_count_limit_status - for: 1m - labels: - severity: critical - user_id: "{{`{{ $labels.user_id }}`}}" - - - name: cluster_discovery_rules - rules: - - alert: ClusterDiscoveryConfigFailed - annotations: - description: >- - {{`Cluster discovery config "{{ $labels.config_name }}" - (project: {{ $labels.project_name }}, selector: {{ $labels.label_selector }}) - has failed. Reason: {{ $labels.error_reason }}`}} - summary: {{`Gardener cluster discovery failed`}} - expr: pxbackup_cluster_discovery_config_status == 3 - for: 1m - labels: - severity: critical - - - alert: GardenerConnectivityFailure - annotations: - description: >- - {{`Gardener API connectivity failed for discovery config "{{ $labels.config_name }}". - Reason: {{ $labels.error_reason }}`}} - summary: {{`Gardener API connectivity failure`}} - expr: pxbackup_gardener_connectivity_failure == 1 - for: 1m - labels: - severity: critical - - - alert: GardenerShootKubeconfigValidationFailure - annotations: - description: >- - {{`Shoot kubeconfig validation failed for cluster "{{ $labels.cluster_name }}" - in discovery config "{{ $labels.config_name }}". - Reason: {{ $labels.error_reason }}`}} - summary: {{`Shoot kubeconfig validation failed`}} - expr: pxbackup_gardener_shoot_kubeconfig_validation_failure == 1 - for: 1m - labels: - severity: critical -{{- end -}} \ No newline at end of file +{{- end -}} diff --git a/charts/px-central/templates/px-lighthouse/px-central-ui/pxcentral-ui-configmap.yaml b/charts/px-central/templates/px-lighthouse/px-central-ui/pxcentral-ui-configmap.yaml index 57bc69214..5da6f5f0c 100644 --- a/charts/px-central/templates/px-lighthouse/px-central-ui/pxcentral-ui-configmap.yaml +++ b/charts/px-central/templates/px-lighthouse/px-central-ui/pxcentral-ui-configmap.yaml @@ -13,7 +13,6 @@ data: BASE_ROOT_PATH: / DB_PORT: "3306" DB_DATABASE: pxcentral - FRONTEND_ENABLED_MODULES: COMPANY,USERS,SSO PX_BACKUP_ENDPOINT: "px-backup:10002" PX_BACKUP_ORGID: "{{ .Values.pxbackup.orgName }}" PX_STATUS_ENDPOINT: "http://pxcentral-apiserver:10006" diff --git a/charts/px-central/values.yaml b/charts/px-central/values.yaml index 83fc5561f..cf0e51802 100644 --- a/charts/px-central/values.yaml +++ b/charts/px-central/values.yaml @@ -209,7 +209,6 @@ cassandra: maxHeapSize: newHeapSize: -installCRDs: false clusterDomain: "cluster.local" cassandraUsername: cassandra cassandraPassword: cassandra From 1196658c55cbd91e5c9f58037b0399521caeff3d Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Mon, 20 Jul 2026 16:14:43 +0000 Subject: [PATCH 2/2] chore: package helm chart px-central --- stable/index.yaml | 452 ++++++++++++++++++------------------ stable/px-central-3.2.0.tgz | Bin 202312 -> 79961 bytes 2 files changed, 226 insertions(+), 226 deletions(-) diff --git a/stable/index.yaml b/stable/index.yaml index e9e8d22f4..70080ecf5 100644 --- a/stable/index.yaml +++ b/stable/index.yaml @@ -3,7 +3,7 @@ entries: portworx: - apiVersion: v1 appVersion: 3.6.1 - created: "2026-07-17T05:20:12.87072104Z" + created: "2026-07-20T16:14:42.525228858Z" description: A Helm chart for installing Portworx on Kubernetes. digest: a9ef4c90cd1d256c9a955412ece891e024973c8388565e71330467eb7527eab0 home: https://www.purestorage.com/products/cloud-native-applications/portworx.html @@ -24,11 +24,11 @@ entries: sources: - https://github.com/portworx/helm urls: - - https://raw.githubusercontent.com/portworx/helm/3.2.0-fc1/stable/portworx-9.1.0.tgz + - https://raw.githubusercontent.com/portworx/helm/PB-15811-final/stable/portworx-9.1.0.tgz version: 9.1.0 - apiVersion: v1 appVersion: 3.6.0 - created: "2026-07-17T05:20:12.866084976Z" + created: "2026-07-20T16:14:42.520739254Z" description: A Helm chart for installing Portworx on Kubernetes. digest: be4faefae633d54b04b02ed46d888912f17a2bda75a907372e7f53a3e1c3cc56 home: https://www.purestorage.com/products/cloud-native-applications/portworx.html @@ -49,11 +49,11 @@ entries: sources: - https://github.com/portworx/helm urls: - - https://raw.githubusercontent.com/portworx/helm/3.2.0-fc1/stable/portworx-9.0.1.tgz + - https://raw.githubusercontent.com/portworx/helm/PB-15811-final/stable/portworx-9.0.1.tgz version: 9.0.1 - apiVersion: v1 appVersion: 3.6.0 - created: "2026-07-17T05:20:12.861505014Z" + created: "2026-07-20T16:14:42.51595698Z" description: A Helm chart for installing Portworx on Kubernetes. digest: 3784de931f0bc5704e30fcfdfeaa5faa320b8c10dfac5c920050d92cd2461a52 home: https://www.purestorage.com/products/cloud-native-applications/portworx.html @@ -74,11 +74,11 @@ entries: sources: - https://github.com/portworx/helm urls: - - https://raw.githubusercontent.com/portworx/helm/3.2.0-fc1/stable/portworx-9.0.0.tgz + - https://raw.githubusercontent.com/portworx/helm/PB-15811-final/stable/portworx-9.0.0.tgz version: 9.0.0 - apiVersion: v1 appVersion: 3.5.2 - created: "2026-07-17T05:20:12.85765908Z" + created: "2026-07-20T16:14:42.512174091Z" description: A Helm chart for installing Portworx on Kubernetes. digest: 93e8acc62383fe9340769f6c52bfe1c844ea760fe1579c1d96331302ad8403ec home: https://www.purestorage.com/products/cloud-native-applications/portworx.html @@ -99,11 +99,11 @@ entries: sources: - https://github.com/portworx/helm urls: - - https://raw.githubusercontent.com/portworx/helm/3.2.0-fc1/stable/portworx-8.2.2.tgz + - https://raw.githubusercontent.com/portworx/helm/PB-15811-final/stable/portworx-8.2.2.tgz version: 8.2.2 - apiVersion: v1 appVersion: 3.5.2 - created: "2026-07-17T05:20:12.852271768Z" + created: "2026-07-20T16:14:42.507191343Z" description: A Helm chart for installing Portworx on Kubernetes. digest: 8defe5838b883b55f452d903538fd145a036ef31183a476e29650c5977f9ab70 home: https://www.purestorage.com/products/cloud-native-applications/portworx.html @@ -124,11 +124,11 @@ entries: sources: - https://github.com/portworx/helm urls: - - https://raw.githubusercontent.com/portworx/helm/3.2.0-fc1/stable/portworx-8.2.1.tgz + - https://raw.githubusercontent.com/portworx/helm/PB-15811-final/stable/portworx-8.2.1.tgz version: 8.2.1 - apiVersion: v1 appVersion: 3.5.2 - created: "2026-07-17T05:20:12.847891901Z" + created: "2026-07-20T16:14:42.502133266Z" description: A Helm chart for installing Portworx on Kubernetes. digest: 74bb965502a323d0d35a20c0f6ac8e950ef0cf123d367f8e97a2662dd513d5dc home: https://www.purestorage.com/products/cloud-native-applications/portworx.html @@ -149,11 +149,11 @@ entries: sources: - https://github.com/portworx/helm urls: - - https://raw.githubusercontent.com/portworx/helm/3.2.0-fc1/stable/portworx-8.2.0.tgz + - https://raw.githubusercontent.com/portworx/helm/PB-15811-final/stable/portworx-8.2.0.tgz version: 8.2.0 - apiVersion: v1 appVersion: 3.5.2 - created: "2026-07-17T05:20:12.843369779Z" + created: "2026-07-20T16:14:42.497739009Z" description: A Helm chart for installing Portworx on Kubernetes. digest: 91734a4b8fe9218dbb6e339bd21a35a993a6f90acdaf6f6de9973818154680b7 home: https://www.purestorage.com/products/cloud-native-applications/portworx.html @@ -174,11 +174,11 @@ entries: sources: - https://github.com/portworx/helm urls: - - https://raw.githubusercontent.com/portworx/helm/3.2.0-fc1/stable/portworx-8.1.0.tgz + - https://raw.githubusercontent.com/portworx/helm/PB-15811-final/stable/portworx-8.1.0.tgz version: 8.1.0 - apiVersion: v1 appVersion: 3.5.2 - created: "2026-07-17T05:20:12.83978183Z" + created: "2026-07-20T16:14:42.494247225Z" description: A Helm chart for installing Portworx on Kubernetes. digest: 7f771ef91378bc4b06841ed222f36637295f11fde2ce0346d073fdc57d5340b0 home: https://www.purestorage.com/products/cloud-native-applications/portworx.html @@ -199,11 +199,11 @@ entries: sources: - https://github.com/portworx/helm urls: - - https://raw.githubusercontent.com/portworx/helm/3.2.0-fc1/stable/portworx-8.0.2.tgz + - https://raw.githubusercontent.com/portworx/helm/PB-15811-final/stable/portworx-8.0.2.tgz version: 8.0.2 - apiVersion: v1 appVersion: 3.5.1 - created: "2026-07-17T05:20:12.834077465Z" + created: "2026-07-20T16:14:42.487905357Z" description: A Helm chart for installing Portworx on Kubernetes. digest: ea8f1ce57998b1cfaaa42f9a6edc9035fe11a478222e171d571085890075b185 home: https://portworx.com/ @@ -224,11 +224,11 @@ entries: sources: - https://github.com/portworx/helm urls: - - https://raw.githubusercontent.com/portworx/helm/3.2.0-fc1/stable/portworx-8.0.1.tgz + - https://raw.githubusercontent.com/portworx/helm/PB-15811-final/stable/portworx-8.0.1.tgz version: 8.0.1 - apiVersion: v1 appVersion: 3.5.0 - created: "2026-07-17T05:20:12.828960987Z" + created: "2026-07-20T16:14:42.481515545Z" description: A Helm chart for installing Portworx on Kubernetes. digest: 4f45f3d34876bb6a5550bdb98472e62c655972614dbe863126e3bbe9279cec74 home: https://portworx.com/ @@ -249,11 +249,11 @@ entries: sources: - https://github.com/portworx/helm urls: - - https://raw.githubusercontent.com/portworx/helm/3.2.0-fc1/stable/portworx-8.0.0.tgz + - https://raw.githubusercontent.com/portworx/helm/PB-15811-final/stable/portworx-8.0.0.tgz version: 8.0.0 - apiVersion: v1 appVersion: 3.4.2 - created: "2026-07-17T05:20:12.824633491Z" + created: "2026-07-20T16:14:42.47713202Z" description: A Helm chart for installing Portworx on Kubernetes. digest: c0b61dfed18df0cb336c55a0d19f478a6dad2460efba3976aeba59ecb1851e54 home: https://portworx.com/ @@ -274,11 +274,11 @@ entries: sources: - https://github.com/portworx/helm urls: - - https://raw.githubusercontent.com/portworx/helm/3.2.0-fc1/stable/portworx-7.0.5.tgz + - https://raw.githubusercontent.com/portworx/helm/PB-15811-final/stable/portworx-7.0.5.tgz version: 7.0.5 - apiVersion: v1 appVersion: 3.4.1 - created: "2026-07-17T05:20:12.821064193Z" + created: "2026-07-20T16:14:42.473694398Z" description: A Helm chart for installing Portworx on Kubernetes. digest: 87c475cf51353da3653324dbfeb5b9c18305563b7f00a4454efdc71324f649be home: https://portworx.com/ @@ -299,11 +299,11 @@ entries: sources: - https://github.com/portworx/helm urls: - - https://raw.githubusercontent.com/portworx/helm/3.2.0-fc1/stable/portworx-7.0.4.tgz + - https://raw.githubusercontent.com/portworx/helm/PB-15811-final/stable/portworx-7.0.4.tgz version: 7.0.4 - apiVersion: v1 appVersion: 3.4.1 - created: "2026-07-17T05:20:12.815845615Z" + created: "2026-07-20T16:14:42.46884946Z" description: A Helm chart for installing Portworx on Kubernetes. digest: 6983f95ab269fb37f30364be60fb92810e9a299868460a3078616538b0448eb5 home: https://portworx.com/ @@ -324,11 +324,11 @@ entries: sources: - https://github.com/portworx/helm urls: - - https://raw.githubusercontent.com/portworx/helm/3.2.0-fc1/stable/portworx-7.0.3.tgz + - https://raw.githubusercontent.com/portworx/helm/PB-15811-final/stable/portworx-7.0.3.tgz version: 7.0.3 - apiVersion: v1 appVersion: 3.4.0.1 - created: "2026-07-17T05:20:12.811598915Z" + created: "2026-07-20T16:14:42.464398339Z" description: A Helm chart for installing Portworx on Kubernetes. digest: 298ac7406beb8b8f85eebf56d326ec350c91de165d5659e66331cbe60a80edfd home: https://portworx.com/ @@ -349,11 +349,11 @@ entries: sources: - https://github.com/portworx/helm urls: - - https://raw.githubusercontent.com/portworx/helm/3.2.0-fc1/stable/portworx-7.0.2.tgz + - https://raw.githubusercontent.com/portworx/helm/PB-15811-final/stable/portworx-7.0.2.tgz version: 7.0.2 - apiVersion: v1 appVersion: 3.4.0.1 - created: "2026-07-17T05:20:12.807221172Z" + created: "2026-07-20T16:14:42.460659256Z" description: A Helm chart for installing Portworx on Kubernetes. digest: 8518b063176fb7555f232d9d4c113b8b7ec2872f1e8e0f192290e4a746a1e1a9 home: https://portworx.com/ @@ -374,11 +374,11 @@ entries: sources: - https://github.com/portworx/helm urls: - - https://raw.githubusercontent.com/portworx/helm/3.2.0-fc1/stable/portworx-7.0.1.tgz + - https://raw.githubusercontent.com/portworx/helm/PB-15811-final/stable/portworx-7.0.1.tgz version: 7.0.1 - apiVersion: v1 appVersion: 3.4.0 - created: "2026-07-17T05:20:12.803591352Z" + created: "2026-07-20T16:14:42.456946098Z" description: A Helm chart for installing Portworx on Kubernetes. digest: 35dade33ac75f86e41418d5d2ff21a16f3bb50a0850bb947e1e2b45c851fa09a home: https://portworx.com/ @@ -399,11 +399,11 @@ entries: sources: - https://github.com/portworx/helm urls: - - https://raw.githubusercontent.com/portworx/helm/3.2.0-fc1/stable/portworx-7.0.0.tgz + - https://raw.githubusercontent.com/portworx/helm/PB-15811-final/stable/portworx-7.0.0.tgz version: 7.0.0 - apiVersion: v1 appVersion: 3.3.1.3 - created: "2026-07-17T05:20:12.798390334Z" + created: "2026-07-20T16:14:42.451131851Z" description: A Helm chart for installing Portworx on Kubernetes. digest: bf52382e1589a97130033c20d7fa150f2af00e29ae124f64d79ee71809ded29b home: https://portworx.com/ @@ -424,11 +424,11 @@ entries: sources: - https://github.com/portworx/helm urls: - - https://raw.githubusercontent.com/portworx/helm/3.2.0-fc1/stable/portworx-6.1.1.tgz + - https://raw.githubusercontent.com/portworx/helm/PB-15811-final/stable/portworx-6.1.1.tgz version: 6.1.1 - apiVersion: v1 appVersion: 3.3.1.3 - created: "2026-07-17T05:20:12.794630715Z" + created: "2026-07-20T16:14:42.446788161Z" description: A Helm chart for installing Portworx on Kubernetes. digest: 17093f3d9e21ace0fb5c516186d7fc291234d0031473cc3283bd132f3a9a6b1c home: https://portworx.com/ @@ -449,11 +449,11 @@ entries: sources: - https://github.com/portworx/helm urls: - - https://raw.githubusercontent.com/portworx/helm/3.2.0-fc1/stable/portworx-6.1.0.tgz + - https://raw.githubusercontent.com/portworx/helm/PB-15811-final/stable/portworx-6.1.0.tgz version: 6.1.0 - apiVersion: v1 appVersion: 3.3.1.3 - created: "2026-07-17T05:20:12.788989507Z" + created: "2026-07-20T16:14:42.442509806Z" description: A Helm chart for installing Portworx on Kubernetes. digest: 7531f2a59f75be48a37a097bfc47ed579c41769c35d76171c7b95615c64124ae home: https://portworx.com/ @@ -474,11 +474,11 @@ entries: sources: - https://github.com/portworx/helm urls: - - https://raw.githubusercontent.com/portworx/helm/3.2.0-fc1/stable/portworx-6.0.5.tgz + - https://raw.githubusercontent.com/portworx/helm/PB-15811-final/stable/portworx-6.0.5.tgz version: 6.0.5 - apiVersion: v1 appVersion: 3.3.1.2 - created: "2026-07-17T05:20:12.78467457Z" + created: "2026-07-20T16:14:42.439322553Z" description: A Helm chart for installing Portworx on Kubernetes. digest: 8bb90f7bcdcfa75d23c260873cd1d089dd9f3a1db205e670cd5ad83569471813 home: https://portworx.com/ @@ -499,11 +499,11 @@ entries: sources: - https://github.com/portworx/helm urls: - - https://raw.githubusercontent.com/portworx/helm/3.2.0-fc1/stable/portworx-6.0.4.tgz + - https://raw.githubusercontent.com/portworx/helm/PB-15811-final/stable/portworx-6.0.4.tgz version: 6.0.4 - apiVersion: v1 appVersion: 3.3.1.1 - created: "2026-07-17T05:20:12.780546229Z" + created: "2026-07-20T16:14:42.433307721Z" description: A Helm chart for installing Portworx on Kubernetes. digest: 552c30a67535a8ded9fff133c4a8ed9f54a70cd270268d362d6b29c2ee0b8dcb home: https://portworx.com/ @@ -524,11 +524,11 @@ entries: sources: - https://github.com/portworx/helm urls: - - https://raw.githubusercontent.com/portworx/helm/3.2.0-fc1/stable/portworx-6.0.3.tgz + - https://raw.githubusercontent.com/portworx/helm/PB-15811-final/stable/portworx-6.0.3.tgz version: 6.0.3 - apiVersion: v1 appVersion: 3.3.1 - created: "2026-07-17T05:20:12.77651741Z" + created: "2026-07-20T16:14:42.429279622Z" description: A Helm chart for installing Portworx on Kubernetes. digest: 49075ec12acdf8c08430f7dd7dfe563c7d25aef6585f2f97fb065f0c63036c8b home: https://portworx.com/ @@ -549,11 +549,11 @@ entries: sources: - https://github.com/portworx/helm urls: - - https://raw.githubusercontent.com/portworx/helm/3.2.0-fc1/stable/portworx-6.0.2.tgz + - https://raw.githubusercontent.com/portworx/helm/PB-15811-final/stable/portworx-6.0.2.tgz version: 6.0.2 - apiVersion: v1 appVersion: 3.3.0.1 - created: "2026-07-17T05:20:12.772409203Z" + created: "2026-07-20T16:14:42.425183305Z" description: A Helm chart for installing Portworx on Kubernetes. digest: dc471005e5c3e7b1aa150042e03021d94a2b30239eb0055a4f6c20d47bcd755c home: https://portworx.com/ @@ -574,11 +574,11 @@ entries: sources: - https://github.com/portworx/helm urls: - - https://raw.githubusercontent.com/portworx/helm/3.2.0-fc1/stable/portworx-6.0.1.tgz + - https://raw.githubusercontent.com/portworx/helm/PB-15811-final/stable/portworx-6.0.1.tgz version: 6.0.1 - apiVersion: v1 appVersion: 3.3.0 - created: "2026-07-17T05:20:12.769040724Z" + created: "2026-07-20T16:14:42.421936891Z" description: A Helm chart for installing Portworx on Kubernetes. digest: 6e0cd8da586141b228a00ad741de07037465fa17e7de023942f1d9986045f2a8 home: https://portworx.com/ @@ -599,11 +599,11 @@ entries: sources: - https://github.com/portworx/helm urls: - - https://raw.githubusercontent.com/portworx/helm/3.2.0-fc1/stable/portworx-6.0.0.tgz + - https://raw.githubusercontent.com/portworx/helm/PB-15811-final/stable/portworx-6.0.0.tgz version: 6.0.0 - apiVersion: v1 appVersion: 3.2.4 - created: "2026-07-17T05:20:12.764055511Z" + created: "2026-07-20T16:14:42.417637194Z" description: A Helm chart for installing Portworx on Kubernetes. digest: 2256989146a27dfd658b18b6a03c4dee296655038c6547285f7dca1af2c65e35 home: https://portworx.com/ @@ -624,11 +624,11 @@ entries: sources: - https://github.com/portworx/helm urls: - - https://raw.githubusercontent.com/portworx/helm/3.2.0-fc1/stable/portworx-5.2.2.tgz + - https://raw.githubusercontent.com/portworx/helm/PB-15811-final/stable/portworx-5.2.2.tgz version: 5.2.2 - apiVersion: v1 appVersion: 3.2.3 - created: "2026-07-17T05:20:12.75957174Z" + created: "2026-07-20T16:14:42.41370792Z" description: A Helm chart for installing Portworx on Kubernetes. digest: 6d75ff426557a12c5fdf365fa7609dbdd0587e5854d263ff22b8413ca94d3609 home: https://portworx.com/ @@ -649,11 +649,11 @@ entries: sources: - https://github.com/portworx/helm urls: - - https://raw.githubusercontent.com/portworx/helm/3.2.0-fc1/stable/portworx-5.2.1.tgz + - https://raw.githubusercontent.com/portworx/helm/PB-15811-final/stable/portworx-5.2.1.tgz version: 5.2.1 - apiVersion: v1 appVersion: 3.2.3 - created: "2026-07-17T05:20:12.755418578Z" + created: "2026-07-20T16:14:42.409856422Z" description: A Helm chart for installing Portworx on Kubernetes. digest: d35ccbafc7be55cdfe8363fca9b64fb5f8636fb3ac801e5c7deecde650cec4f7 home: https://portworx.com/ @@ -674,11 +674,11 @@ entries: sources: - https://github.com/portworx/helm urls: - - https://raw.githubusercontent.com/portworx/helm/3.2.0-fc1/stable/portworx-5.2.0.tgz + - https://raw.githubusercontent.com/portworx/helm/PB-15811-final/stable/portworx-5.2.0.tgz version: 5.2.0 - apiVersion: v1 appVersion: 3.2.3 - created: "2026-07-17T05:20:12.752152561Z" + created: "2026-07-20T16:14:42.406665432Z" description: A Helm chart for installing Portworx on Kubernetes. digest: 990fd545cb09b0b174c430963764eaf4879c442b2428007c8605ee8a98f50642 home: https://portworx.com/ @@ -699,11 +699,11 @@ entries: sources: - https://github.com/portworx/helm urls: - - https://raw.githubusercontent.com/portworx/helm/3.2.0-fc1/stable/portworx-5.1.6.tgz + - https://raw.githubusercontent.com/portworx/helm/PB-15811-final/stable/portworx-5.1.6.tgz version: 5.1.6 - apiVersion: v1 appVersion: 3.2.2.2 - created: "2026-07-17T05:20:12.748146665Z" + created: "2026-07-20T16:14:42.402227948Z" description: A Helm chart for installing Portworx on Kubernetes. digest: 6ada879d42745e64f5687b6d8b12f3b786fe1e135ff8e028f840ba6811b17908 home: https://portworx.com/ @@ -724,11 +724,11 @@ entries: sources: - https://github.com/portworx/helm urls: - - https://raw.githubusercontent.com/portworx/helm/3.2.0-fc1/stable/portworx-5.1.5.tgz + - https://raw.githubusercontent.com/portworx/helm/PB-15811-final/stable/portworx-5.1.5.tgz version: 5.1.5 - apiVersion: v1 appVersion: 3.2.2.1 - created: "2026-07-17T05:20:12.743966871Z" + created: "2026-07-20T16:14:42.398046359Z" description: A Helm chart for installing Portworx on Kubernetes. digest: 91414d94915174a2c60cb770abea6e0ceeb325911819c812c805921e9b5bce81 home: https://portworx.com/ @@ -749,11 +749,11 @@ entries: sources: - https://github.com/portworx/helm urls: - - https://raw.githubusercontent.com/portworx/helm/3.2.0-fc1/stable/portworx-5.1.4.tgz + - https://raw.githubusercontent.com/portworx/helm/PB-15811-final/stable/portworx-5.1.4.tgz version: 5.1.4 - apiVersion: v1 appVersion: 3.2.2 - created: "2026-07-17T05:20:12.739735427Z" + created: "2026-07-20T16:14:42.393752062Z" description: A Helm chart for installing Portworx on Kubernetes. digest: 1ea8fd443acfb4cc30819272322333bd5a3a403caa252739935085461dd23433 home: https://portworx.com/ @@ -774,11 +774,11 @@ entries: sources: - https://github.com/portworx/helm urls: - - https://raw.githubusercontent.com/portworx/helm/3.2.0-fc1/stable/portworx-5.1.3.tgz + - https://raw.githubusercontent.com/portworx/helm/PB-15811-final/stable/portworx-5.1.3.tgz version: 5.1.3 - apiVersion: v1 appVersion: 3.2.1.2 - created: "2026-07-17T05:20:12.736252265Z" + created: "2026-07-20T16:14:42.390409738Z" description: A Helm chart for installing Portworx on Kubernetes. digest: d93f68765ea3dfe27afa68e9f4dfe17fa4bd14f58fe872873a78cca18f5faef8 home: https://portworx.com/ @@ -799,11 +799,11 @@ entries: sources: - https://github.com/portworx/helm urls: - - https://raw.githubusercontent.com/portworx/helm/3.2.0-fc1/stable/portworx-5.1.2.tgz + - https://raw.githubusercontent.com/portworx/helm/PB-15811-final/stable/portworx-5.1.2.tgz version: 5.1.2 - apiVersion: v1 appVersion: 3.2.1.1 - created: "2026-07-17T05:20:12.733525257Z" + created: "2026-07-20T16:14:42.387730016Z" description: A Helm chart for installing Portworx on Kubernetes. digest: f80e1de041983764ef0bc0fcec0ef02b88174e1cc499ae9c07cfb35b25f9f753 home: https://portworx.com/ @@ -824,11 +824,11 @@ entries: sources: - https://github.com/portworx/helm urls: - - https://raw.githubusercontent.com/portworx/helm/3.2.0-fc1/stable/portworx-5.1.1.tgz + - https://raw.githubusercontent.com/portworx/helm/PB-15811-final/stable/portworx-5.1.1.tgz version: 5.1.1 - apiVersion: v1 appVersion: 3.2.1 - created: "2026-07-17T05:20:12.731471504Z" + created: "2026-07-20T16:14:42.385671879Z" description: A Helm chart for installing Portworx on Kubernetes. digest: fcb5b7beff0e26563d3ab211fa5ab684d4c3f99fa3519c950f9a52e63ba5baf5 home: https://portworx.com/ @@ -849,11 +849,11 @@ entries: sources: - https://github.com/portworx/helm urls: - - https://raw.githubusercontent.com/portworx/helm/3.2.0-fc1/stable/portworx-5.1.0.tgz + - https://raw.githubusercontent.com/portworx/helm/PB-15811-final/stable/portworx-5.1.0.tgz version: 5.1.0 - apiVersion: v1 appVersion: 3.2.0 - created: "2026-07-17T05:20:12.728685595Z" + created: "2026-07-20T16:14:42.383046459Z" description: A Helm chart for installing Portworx on Kubernetes. digest: 5e1578d0d3d74b4a6dda9dca765eee84226f8676925573a6aa66d0fb8c129b92 home: https://portworx.com/ @@ -874,11 +874,11 @@ entries: sources: - https://github.com/portworx/helm urls: - - https://raw.githubusercontent.com/portworx/helm/3.2.0-fc1/stable/portworx-5.0.0.tgz + - https://raw.githubusercontent.com/portworx/helm/PB-15811-final/stable/portworx-5.0.0.tgz version: 5.0.0 - apiVersion: v1 appVersion: 3.1.9 - created: "2026-07-17T05:20:12.726613011Z" + created: "2026-07-20T16:14:42.381103538Z" description: A Helm chart for installing Portworx on Kubernetes. digest: 8c2fd81dc8982ac1a99582a5c5403305f2ae4dbf8eb8c153efd79180d54eb1e9 home: https://portworx.com/ @@ -899,11 +899,11 @@ entries: sources: - https://github.com/portworx/helm urls: - - https://raw.githubusercontent.com/portworx/helm/3.2.0-fc1/stable/portworx-4.1.1.tgz + - https://raw.githubusercontent.com/portworx/helm/PB-15811-final/stable/portworx-4.1.1.tgz version: 4.1.1 - apiVersion: v1 appVersion: 3.1.7 - created: "2026-07-17T05:20:12.723766311Z" + created: "2026-07-20T16:14:42.378396136Z" description: A Helm chart for installing Portworx on Kubernetes. digest: b0d4f9cf1a51d5f83545052511fec73c68341fa34d262dd967eab12b27819ca7 home: https://portworx.com/ @@ -924,11 +924,11 @@ entries: sources: - https://github.com/portworx/helm urls: - - https://raw.githubusercontent.com/portworx/helm/3.2.0-fc1/stable/portworx-4.1.0.tgz + - https://raw.githubusercontent.com/portworx/helm/PB-15811-final/stable/portworx-4.1.0.tgz version: 4.1.0 - apiVersion: v1 appVersion: 3.1.4 - created: "2026-07-17T05:20:12.721711537Z" + created: "2026-07-20T16:14:42.376344731Z" description: A Helm chart for installing Portworx on Kubernetes. digest: 94e8f1000109f518010575ecaf2274ad3c5845c273d28d6292f80df88e3acea1 home: https://portworx.com/ @@ -949,11 +949,11 @@ entries: sources: - https://github.com/portworx/helm urls: - - https://raw.githubusercontent.com/portworx/helm/3.2.0-fc1/stable/portworx-4.0.0.tgz + - https://raw.githubusercontent.com/portworx/helm/PB-15811-final/stable/portworx-4.0.0.tgz version: 4.0.0 - apiVersion: v1 appVersion: 3.1.0 - created: "2026-07-17T05:20:12.719018056Z" + created: "2026-07-20T16:14:42.373861846Z" description: A Helm chart for installing Portworx on Kubernetes. digest: 630d982316d27542d6a2f137793fa755e366d911d56de531b011ff27ea5f04f5 home: https://portworx.com/ @@ -974,11 +974,11 @@ entries: sources: - https://github.com/portworx/helm urls: - - https://raw.githubusercontent.com/portworx/helm/3.2.0-fc1/stable/portworx-3.1.0.tgz + - https://raw.githubusercontent.com/portworx/helm/PB-15811-final/stable/portworx-3.1.0.tgz version: 3.1.0 - apiVersion: v1 appVersion: 3.0.0 - created: "2026-07-17T05:20:12.717369266Z" + created: "2026-07-20T16:14:42.372265675Z" description: A Helm chart for installing Portworx on Kubernetes. digest: b7713dc5e4b3b30efcfb5c42771fa69140daacf0fa348906694fa623f7648754 home: https://portworx.com/ @@ -999,11 +999,11 @@ entries: sources: - https://github.com/portworx/helm urls: - - https://raw.githubusercontent.com/portworx/helm/3.2.0-fc1/stable/portworx-3.0.0.tgz + - https://raw.githubusercontent.com/portworx/helm/PB-15811-final/stable/portworx-3.0.0.tgz version: 3.0.0 - apiVersion: v1 appVersion: 2.13.3 - created: "2026-07-17T05:20:12.714312615Z" + created: "2026-07-20T16:14:42.36954574Z" description: A Helm chart for installing Portworx on Kubernetes. digest: f154989402d3582968ef7d8211c830dd6771a357f6e7da957176ff1bc47d81a6 home: https://portworx.com/ @@ -1024,11 +1024,11 @@ entries: sources: - https://github.com/portworx/helm urls: - - https://raw.githubusercontent.com/portworx/helm/3.2.0-fc1/stable/portworx-2.13.3.tgz + - https://raw.githubusercontent.com/portworx/helm/PB-15811-final/stable/portworx-2.13.3.tgz version: 2.13.3 - apiVersion: v1 appVersion: 2.12.2 - created: "2026-07-17T05:20:12.713171922Z" + created: "2026-07-20T16:14:42.368456358Z" description: A Helm chart for installing Portworx on Kubernetes. digest: 6f82f0772cea7e5bbee59b44fd06cf15439e42d1d96ea5ca73ad0546ac4e39c7 home: https://portworx.com/ @@ -1049,11 +1049,11 @@ entries: sources: - https://github.com/portworx/helm urls: - - https://raw.githubusercontent.com/portworx/helm/3.2.0-fc1/stable/portworx-2.13.0.tgz + - https://raw.githubusercontent.com/portworx/helm/PB-15811-final/stable/portworx-2.13.0.tgz version: 2.13.0 - apiVersion: v1 appVersion: 2.11.4 - created: "2026-07-17T05:20:12.711983379Z" + created: "2026-07-20T16:14:42.367342351Z" description: A Helm chart for installing Portworx on Kubernetes. digest: db0319e7e0aff6a233af0187970a60a431d87f98f961dd4a11e110ef68a8e420 home: https://portworx.com/ @@ -1062,11 +1062,11 @@ entries: sources: - https://github.com/portworx/helm urls: - - https://raw.githubusercontent.com/portworx/helm/3.2.0-fc1/stable/portworx-2.11.4.tgz + - https://raw.githubusercontent.com/portworx/helm/PB-15811-final/stable/portworx-2.11.4.tgz version: 2.11.4 - apiVersion: v1 appVersion: 2.10.3 - created: "2026-07-17T05:20:12.710842395Z" + created: "2026-07-20T16:14:42.366257578Z" description: A Helm chart for installing Portworx on Kubernetes. digest: 162b316899c5023708ee0edc4083215646fe8c8458d34f79f9f13c2c376e0d0d home: https://portworx.com/ @@ -1075,11 +1075,11 @@ entries: sources: - https://github.com/portworx/helm urls: - - https://raw.githubusercontent.com/portworx/helm/3.2.0-fc1/stable/portworx-2.10.3.tgz + - https://raw.githubusercontent.com/portworx/helm/PB-15811-final/stable/portworx-2.10.3.tgz version: 2.10.3 - apiVersion: v1 appVersion: 2.9.1 - created: "2026-07-17T05:20:12.716174061Z" + created: "2026-07-20T16:14:42.37113202Z" description: A Helm chart for installing Portworx on Kubernetes. digest: 71a44b527872750c42c9c39a6e3e03c431e0d74063aa8abf70d11f1401fddad2 home: https://portworx.com/ @@ -1088,10 +1088,10 @@ entries: sources: - https://github.com/portworx/helm urls: - - https://raw.githubusercontent.com/portworx/helm/3.2.0-fc1/stable/portworx-2.9.1.tgz + - https://raw.githubusercontent.com/portworx/helm/PB-15811-final/stable/portworx-2.9.1.tgz version: 2.9.1 - apiVersion: v1 - created: "2026-07-17T05:20:12.709075293Z" + created: "2026-07-20T16:14:42.364556209Z" description: A Helm chart for installing Portworx on Kubernetes. digest: c312df602c509a2c5d60d6197ec137bf8484ecffb3444f1ded6be19964bc3c9f home: https://portworx.com/ @@ -1100,10 +1100,10 @@ entries: sources: - https://github.com/portworx/helm urls: - - https://raw.githubusercontent.com/portworx/helm/3.2.0-fc1/stable/portworx-1.0.1.tgz + - https://raw.githubusercontent.com/portworx/helm/PB-15811-final/stable/portworx-1.0.1.tgz version: 1.0.1 - apiVersion: v1 - created: "2026-07-17T05:20:12.708010368Z" + created: "2026-07-20T16:14:42.363546156Z" description: A Helm chart for installing Portworx on Kubernetes. digest: ac01a7ae62587285d9a29e2d36c386727eb96694810a563ecf723b21f7582dec home: https://portworx.com/ @@ -1112,12 +1112,12 @@ entries: sources: - https://github.com/portworx/helm urls: - - https://raw.githubusercontent.com/portworx/helm/3.2.0-fc1/stable/portworx-1.0.0.tgz + - https://raw.githubusercontent.com/portworx/helm/PB-15811-final/stable/portworx-1.0.0.tgz version: 1.0.0 portworx-daemonSet: - apiVersion: v1 appVersion: 2.13.5 - created: "2026-07-17T05:20:12.872832029Z" + created: "2026-07-20T16:14:42.527238695Z" description: A Helm chart for installing Portworx on Kubernetes. digest: 01c9131ded26e1960fb11ddac49f86ecf36e22bd2f44e320582f8c1be6b28119 home: https://portworx.com/ @@ -1138,11 +1138,11 @@ entries: sources: - https://github.com/portworx/helm urls: - - https://raw.githubusercontent.com/portworx/helm/3.2.0-fc1/stable/portworx-daemonSet-2.13.5.tgz + - https://raw.githubusercontent.com/portworx/helm/PB-15811-final/stable/portworx-daemonSet-2.13.5.tgz version: 2.13.5 - apiVersion: v1 appVersion: 2.12.2 - created: "2026-07-17T05:20:12.871750365Z" + created: "2026-07-20T16:14:42.526233321Z" description: A Helm chart for installing Portworx on Kubernetes. digest: 6a150290915cf7da30ee04cd157b32491e725bb7a1d8e02c561d5c660bbefb6b home: https://portworx.com/ @@ -1163,12 +1163,12 @@ entries: sources: - https://github.com/portworx/helm urls: - - https://raw.githubusercontent.com/portworx/helm/3.2.0-fc1/stable/portworx-daemonSet-2.13.0.tgz + - https://raw.githubusercontent.com/portworx/helm/PB-15811-final/stable/portworx-daemonSet-2.13.0.tgz version: 2.13.0 px-backup: - apiVersion: v1 appVersion: 1.2.4 - created: "2026-07-17T05:20:12.886918442Z" + created: "2026-07-20T16:14:42.544952199Z" description: A Helm chart for installing PX-Backup with PX-Central on Kubernetes and Openshift digest: 4e1c290efdbd1cf8487e81e4b02b945d2be6aa5b3b9771091214d39c4cd6b868 @@ -1186,11 +1186,11 @@ entries: sources: - https://github.com/portworx/helm/tree/master/charts/px-backup urls: - - https://raw.githubusercontent.com/portworx/helm/3.2.0-fc1/stable/px-backup-1.2.4.tgz + - https://raw.githubusercontent.com/portworx/helm/PB-15811-final/stable/px-backup-1.2.4.tgz version: 1.2.4 - apiVersion: v1 appVersion: 1.2.3 - created: "2026-07-17T05:20:12.885277105Z" + created: "2026-07-20T16:14:42.544194769Z" description: A Helm chart for installing PX-Backup with PX-Central on Kubernetes and Openshift digest: 5041aaabb806d9075722c79d34f9dec8f4e80a75f5346d097cb0123417b08c2d @@ -1208,11 +1208,11 @@ entries: sources: - https://github.com/portworx/helm/tree/master/charts/px-backup urls: - - https://raw.githubusercontent.com/portworx/helm/3.2.0-fc1/stable/px-backup-1.2.3.tgz + - https://raw.githubusercontent.com/portworx/helm/PB-15811-final/stable/px-backup-1.2.3.tgz version: 1.2.3 - apiVersion: v1 appVersion: 1.2.2 - created: "2026-07-17T05:20:12.884513397Z" + created: "2026-07-20T16:14:42.54339485Z" description: A Helm chart for installing PX-Backup with PX-Central on Kubernetes and Openshift digest: 5536c872859c726b4dd1cff1bcd21ef4f56903d58fcbbe5b4859b5bd242873cf @@ -1230,11 +1230,11 @@ entries: sources: - https://github.com/portworx/helm/tree/master/charts/px-backup urls: - - https://raw.githubusercontent.com/portworx/helm/3.2.0-fc1/stable/px-backup-1.2.2.tgz + - https://raw.githubusercontent.com/portworx/helm/PB-15811-final/stable/px-backup-1.2.2.tgz version: 1.2.2 - apiVersion: v1 appVersion: 1.2.1 - created: "2026-07-17T05:20:12.883754658Z" + created: "2026-07-20T16:14:42.541388958Z" description: A Helm chart for installing PX-Backup with PX-Central on Kubernetes and Openshift digest: a9b0290cb08d6d3c39adf27ab07be9a17424493980c720223e3a656fa77917ba @@ -1252,11 +1252,11 @@ entries: sources: - https://github.com/portworx/helm/tree/master/charts/px-backup urls: - - https://raw.githubusercontent.com/portworx/helm/3.2.0-fc1/stable/px-backup-1.2.1.tgz + - https://raw.githubusercontent.com/portworx/helm/PB-15811-final/stable/px-backup-1.2.1.tgz version: 1.2.1 - apiVersion: v1 appVersion: 1.2.0 - created: "2026-07-17T05:20:12.883014891Z" + created: "2026-07-20T16:14:42.539991058Z" description: A Helm chart for installing PX-Backup with PX-Central on Kubernetes and Openshift digest: 7f42744f732e8d80793d06189b14f5ed8f7439706db99dd272d96d43a1fd65ab @@ -1274,11 +1274,11 @@ entries: sources: - https://github.com/portworx/helm/tree/master/charts/px-backup urls: - - https://raw.githubusercontent.com/portworx/helm/3.2.0-fc1/stable/px-backup-1.2.0.tgz + - https://raw.githubusercontent.com/portworx/helm/PB-15811-final/stable/px-backup-1.2.0.tgz version: 1.2.0 - apiVersion: v1 appVersion: 1.1.1 - created: "2026-07-17T05:20:12.882292463Z" + created: "2026-07-20T16:14:42.538565927Z" description: A Helm chart for installing PX-Backup with PX-Central on Kubernetes and Openshift digest: 73215fe714e1a3af6bdf958eb06791b90f878b363c85b3adf4c8cfe664a08202 @@ -1296,11 +1296,11 @@ entries: sources: - https://github.com/portworx/helm/tree/master/charts/px-backup urls: - - https://raw.githubusercontent.com/portworx/helm/3.2.0-fc1/stable/px-backup-1.1.6.tgz + - https://raw.githubusercontent.com/portworx/helm/PB-15811-final/stable/px-backup-1.1.6.tgz version: 1.1.6 - apiVersion: v1 appVersion: 1.1.0 - created: "2026-07-17T05:20:12.881540786Z" + created: "2026-07-20T16:14:42.537064784Z" description: A Helm chart for installing PX-Backup with PX-Central on Kubernetes and Openshift digest: 6cc1c8df6ddd7e7e49f69db6791f1bdd6b39dc0943f60282fd9212872071103c @@ -1318,11 +1318,11 @@ entries: sources: - https://github.com/portworx/helm/tree/master/charts/px-backup urls: - - https://raw.githubusercontent.com/portworx/helm/3.2.0-fc1/stable/px-backup-1.1.5.tgz + - https://raw.githubusercontent.com/portworx/helm/PB-15811-final/stable/px-backup-1.1.5.tgz version: 1.1.5 - apiVersion: v1 appVersion: 1.1.0 - created: "2026-07-17T05:20:12.880774193Z" + created: "2026-07-20T16:14:42.535700528Z" description: A Helm chart for installing PX-Backup with PX-Central on Kubernetes and Openshift digest: 4115cfbf2e4e8158331bcec3d4404054c9648fb227f6947747f0122ad4f2418a @@ -1340,11 +1340,11 @@ entries: sources: - https://github.com/portworx/helm/tree/master/charts/px-backup urls: - - https://raw.githubusercontent.com/portworx/helm/3.2.0-fc1/stable/px-backup-1.1.4.tgz + - https://raw.githubusercontent.com/portworx/helm/PB-15811-final/stable/px-backup-1.1.4.tgz version: 1.1.4 - apiVersion: v1 appVersion: 1.1.0-rc4 - created: "2026-07-17T05:20:12.878942014Z" + created: "2026-07-20T16:14:42.534230763Z" description: A Helm chart for installing PX-Backup with PX-Central on Kubernetes and Openshift digest: 0121036cb537c93fff9281f05cf935345b5f769017b131b5e903cc4b8354c8ac @@ -1362,11 +1362,11 @@ entries: sources: - https://github.com/portworx/helm/tree/master/charts/px-backup urls: - - https://raw.githubusercontent.com/portworx/helm/3.2.0-fc1/stable/px-backup-1.1.3.tgz + - https://raw.githubusercontent.com/portworx/helm/PB-15811-final/stable/px-backup-1.1.3.tgz version: 1.1.3 - apiVersion: v1 appVersion: 1.1.0-rc2 - created: "2026-07-17T05:20:12.878222611Z" + created: "2026-07-20T16:14:42.532795834Z" description: A Helm chart for installing PX-Backup with PX-Central on Kubernetes and Openshift digest: 96f785bc9ad2c477068d39f351d5c078f080264104ccd6e7630eabae6d0a514c @@ -1384,11 +1384,11 @@ entries: sources: - https://github.com/portworx/helm/tree/master/charts/px-backup urls: - - https://raw.githubusercontent.com/portworx/helm/3.2.0-fc1/stable/px-backup-1.1.2.tgz + - https://raw.githubusercontent.com/portworx/helm/PB-15811-final/stable/px-backup-1.1.2.tgz version: 1.1.2 - apiVersion: v1 appVersion: 1.1.0-rc2 - created: "2026-07-17T05:20:12.877334884Z" + created: "2026-07-20T16:14:42.531008249Z" description: A Helm chart for installing PX-Backup with PX-Central on Kubernetes and Openshift digest: 7167db17211627d3d111441d01c8d71c57a1980c27145dc7c08ebb3ff9f7d548 @@ -1406,11 +1406,11 @@ entries: sources: - https://github.com/portworx/helm/tree/master/charts/px-backup urls: - - https://raw.githubusercontent.com/portworx/helm/3.2.0-fc1/stable/px-backup-1.1.1.tgz + - https://raw.githubusercontent.com/portworx/helm/PB-15811-final/stable/px-backup-1.1.1.tgz version: 1.1.1 - apiVersion: v1 appVersion: 1.1.0-rc1 - created: "2026-07-17T05:20:12.876603331Z" + created: "2026-07-20T16:14:42.530225091Z" description: A Helm chart for installing PX-Backup with PX-Central on Kubernetes and Openshift digest: 1a2c71389dc08d58f51f66e3ebe44e63fe7410691ec92d642c0dcfaa57c17605 @@ -1428,11 +1428,11 @@ entries: sources: - https://github.com/portworx/helm/tree/master/charts/px-backup urls: - - https://raw.githubusercontent.com/portworx/helm/3.2.0-fc1/stable/px-backup-1.1.0.tgz + - https://raw.githubusercontent.com/portworx/helm/PB-15811-final/stable/px-backup-1.1.0.tgz version: 1.1.0 - apiVersion: v1 appVersion: 1.0.2 - created: "2026-07-17T05:20:12.875849791Z" + created: "2026-07-20T16:14:42.529401739Z" description: A Helm chart for installing PX-Backup with PX-Central on Kubernetes and Openshift digest: fd9316e9719a924eb8aa2d6d947d90e162f602ef4b77e28ef070099fd1dfb1cf @@ -1450,11 +1450,11 @@ entries: sources: - https://github.com/portworx/helm/tree/master/charts/px-backup urls: - - https://raw.githubusercontent.com/portworx/helm/3.2.0-fc1/stable/px-backup-1.0.2.tgz + - https://raw.githubusercontent.com/portworx/helm/PB-15811-final/stable/px-backup-1.0.2.tgz version: 1.0.2 - apiVersion: v1 appVersion: 1.0.2 - created: "2026-07-17T05:20:12.875177347Z" + created: "2026-07-20T16:14:42.528617038Z" description: A Helm chart for installing PX-Backup with PX-Central on Kubernetes and Openshift digest: 0e96c406605816b9a70a0440710d4a82743d373c2b9da20696e6f3a1b1ef2698 @@ -1472,11 +1472,11 @@ entries: sources: - https://github.com/portworx/helm/tree/master/charts/px-backup urls: - - https://raw.githubusercontent.com/portworx/helm/3.2.0-fc1/stable/px-backup-1.0.1.tgz + - https://raw.githubusercontent.com/portworx/helm/PB-15811-final/stable/px-backup-1.0.1.tgz version: 1.0.1 - apiVersion: v1 appVersion: 1.0.2 - created: "2026-07-17T05:20:12.874411836Z" + created: "2026-07-20T16:14:42.527928878Z" description: A Helm chart for installing PX-Backup with PX-Central on Kubernetes and Openshift digest: 2bb9b69ade7b648d46ca618f2f798ba0af346022b42ce540d3988b2c8a387226 @@ -1494,14 +1494,14 @@ entries: sources: - https://github.com/portworx/helm/tree/master/charts/px-backup urls: - - https://raw.githubusercontent.com/portworx/helm/3.2.0-fc1/stable/px-backup-1.0.0.tgz + - https://raw.githubusercontent.com/portworx/helm/PB-15811-final/stable/px-backup-1.0.0.tgz version: 1.0.0 px-central: - apiVersion: v1 appVersion: 3.2.0-fc1 - created: "2026-07-17T05:20:13.146204365Z" + created: "2026-07-20T16:14:42.811389248Z" description: A Helm chart for installing PX-Central on Kubernetes and Openshift - digest: d6578f2ebd1787efcc8c25821ed2c2961cfb0d1227dc29d830c9eeef521a667f + digest: 671ce0848eee98829576dbda4ff59bd5d788a365fb0c37491328d6403ebe1ebb home: https://portworx.com/ icon: https://raw.githubusercontent.com/portworx/helm/master/doc/media/px-logo.png keywords: @@ -1516,11 +1516,11 @@ entries: sources: - https://github.com/portworx/helm/tree/master/charts/px-central urls: - - https://raw.githubusercontent.com/portworx/helm/3.2.0-fc1/stable/px-central-3.2.0.tgz + - https://raw.githubusercontent.com/portworx/helm/PB-15811-final/stable/px-central-3.2.0.tgz version: 3.2.0 - apiVersion: v1 appVersion: 3.1.0-fc1 - created: "2026-07-17T05:20:13.135686412Z" + created: "2026-07-20T16:14:42.808031295Z" description: A Helm chart for installing PX-Central on Kubernetes and Openshift digest: a26f0ec38b2e79c4c3746031b76d0be029b7c6952f750544e0256f2484bb2b0e home: https://portworx.com/ @@ -1537,11 +1537,11 @@ entries: sources: - https://github.com/portworx/helm/tree/master/charts/px-central urls: - - https://raw.githubusercontent.com/portworx/helm/3.2.0-fc1/stable/px-central-3.1.0.tgz + - https://raw.githubusercontent.com/portworx/helm/PB-15811-final/stable/px-central-3.1.0.tgz version: 3.1.0 - apiVersion: v1 appVersion: 3.0.0 - created: "2026-07-17T05:20:13.127489619Z" + created: "2026-07-20T16:14:42.800264279Z" description: A Helm chart for installing PX-Central on Kubernetes and Openshift digest: 70ed226d0865f909a51849664fb813a73e9c6442efa0c4b9773c967d49bda687 home: https://portworx.com/ @@ -1558,11 +1558,11 @@ entries: sources: - https://github.com/portworx/helm/tree/master/charts/px-central urls: - - https://raw.githubusercontent.com/portworx/helm/3.2.0-fc1/stable/px-central-3.0.0.tgz + - https://raw.githubusercontent.com/portworx/helm/PB-15811-final/stable/px-central-3.0.0.tgz version: 3.0.0 - apiVersion: v1 appVersion: 2.11.0 - created: "2026-07-17T05:20:12.932828001Z" + created: "2026-07-20T16:14:42.595391216Z" description: A Helm chart for installing PX-Central on Kubernetes and Openshift digest: 355c2cc8c9d32a862b0c4bf2902d423a8f2e31f677c6842e994ce6a1cfed1349 home: https://portworx.com/ @@ -1579,11 +1579,11 @@ entries: sources: - https://github.com/portworx/helm/tree/master/charts/px-central urls: - - https://raw.githubusercontent.com/portworx/helm/3.2.0-fc1/stable/px-central-2.11.0.tgz + - https://raw.githubusercontent.com/portworx/helm/PB-15811-final/stable/px-central-2.11.0.tgz version: 2.11.0 - apiVersion: v1 appVersion: 2.10.2 - created: "2026-07-17T05:20:12.926603096Z" + created: "2026-07-20T16:14:42.588881855Z" description: A Helm chart for installing PX-Central on Kubernetes and Openshift digest: 656f975e7ec39bfc5a274c27be1b037161af913c9749621825b9e294b115bf8c home: https://portworx.com/ @@ -1600,11 +1600,11 @@ entries: sources: - https://github.com/portworx/helm/tree/master/charts/px-central urls: - - https://raw.githubusercontent.com/portworx/helm/3.2.0-fc1/stable/px-central-2.10.2.tgz + - https://raw.githubusercontent.com/portworx/helm/PB-15811-final/stable/px-central-2.10.2.tgz version: 2.10.2 - apiVersion: v1 appVersion: 2.10.1 - created: "2026-07-17T05:20:12.920428618Z" + created: "2026-07-20T16:14:42.582559779Z" description: A Helm chart for installing PX-Central on Kubernetes and Openshift digest: 8d682256275a62ebd1b1f46a24fe6f7969d9d6ebedfa15c3285e5775f2753f90 home: https://portworx.com/ @@ -1621,11 +1621,11 @@ entries: sources: - https://github.com/portworx/helm/tree/master/charts/px-central urls: - - https://raw.githubusercontent.com/portworx/helm/3.2.0-fc1/stable/px-central-2.10.1.tgz + - https://raw.githubusercontent.com/portworx/helm/PB-15811-final/stable/px-central-2.10.1.tgz version: 2.10.1 - apiVersion: v1 appVersion: 2.10.0 - created: "2026-07-17T05:20:12.91268546Z" + created: "2026-07-20T16:14:42.576026045Z" description: A Helm chart for installing PX-Central on Kubernetes and Openshift digest: 67b6e8d5d306d991d4d26b0ef9070dc91f4691770738f0947855cf05a63fa67f home: https://portworx.com/ @@ -1642,11 +1642,11 @@ entries: sources: - https://github.com/portworx/helm/tree/master/charts/px-central urls: - - https://raw.githubusercontent.com/portworx/helm/3.2.0-fc1/stable/px-central-2.10.0.tgz + - https://raw.githubusercontent.com/portworx/helm/PB-15811-final/stable/px-central-2.10.0.tgz version: 2.10.0 - apiVersion: v1 appVersion: 2.9.1 - created: "2026-07-17T05:20:13.119298752Z" + created: "2026-07-20T16:14:42.793227049Z" description: A Helm chart for installing PX-Central on Kubernetes and Openshift digest: 8fdd400d0d84aba1f85085ed00abe940a6f9cb70bb5c2ea8b56153a149270d0d home: https://portworx.com/ @@ -1663,11 +1663,11 @@ entries: sources: - https://github.com/portworx/helm/tree/master/charts/px-central urls: - - https://raw.githubusercontent.com/portworx/helm/3.2.0-fc1/stable/px-central-2.9.1.tgz + - https://raw.githubusercontent.com/portworx/helm/PB-15811-final/stable/px-central-2.9.1.tgz version: 2.9.1 - apiVersion: v1 appVersion: 2.9.0 - created: "2026-07-17T05:20:13.109638613Z" + created: "2026-07-20T16:14:42.784537431Z" description: A Helm chart for installing PX-Central on Kubernetes and Openshift digest: 54149c33b459f0c04cab628564a8fac7e55a62193dbbc27f49b9b15fba028c3e home: https://portworx.com/ @@ -1684,11 +1684,11 @@ entries: sources: - https://github.com/portworx/helm/tree/master/charts/px-central urls: - - https://raw.githubusercontent.com/portworx/helm/3.2.0-fc1/stable/px-central-2.9.0.tgz + - https://raw.githubusercontent.com/portworx/helm/PB-15811-final/stable/px-central-2.9.0.tgz version: 2.9.0 - apiVersion: v1 appVersion: 2.8.4 - created: "2026-07-17T05:20:13.103337151Z" + created: "2026-07-20T16:14:42.777239618Z" description: A Helm chart for installing PX-Central on Kubernetes and Openshift digest: 1bed0e012644fe7a88032760fc5bfa43baaa40256d274f16af4d7842b7c6e1a9 home: https://portworx.com/ @@ -1705,11 +1705,11 @@ entries: sources: - https://github.com/portworx/helm/tree/master/charts/px-central urls: - - https://raw.githubusercontent.com/portworx/helm/3.2.0-fc1/stable/px-central-2.8.4.tgz + - https://raw.githubusercontent.com/portworx/helm/PB-15811-final/stable/px-central-2.8.4.tgz version: 2.8.4 - apiVersion: v1 appVersion: 2.8.3 - created: "2026-07-17T05:20:13.096349388Z" + created: "2026-07-20T16:14:42.768438952Z" description: A Helm chart for installing PX-Central on Kubernetes and Openshift digest: da19b5d176bc83fd649b2239bdb0e115a8cebd1facadca4a039b75f5be77cb9b home: https://portworx.com/ @@ -1726,11 +1726,11 @@ entries: sources: - https://github.com/portworx/helm/tree/master/charts/px-central urls: - - https://raw.githubusercontent.com/portworx/helm/3.2.0-fc1/stable/px-central-2.8.3.tgz + - https://raw.githubusercontent.com/portworx/helm/PB-15811-final/stable/px-central-2.8.3.tgz version: 2.8.3 - apiVersion: v1 appVersion: 2.8.2 - created: "2026-07-17T05:20:13.089863756Z" + created: "2026-07-20T16:14:42.759164745Z" description: A Helm chart for installing PX-Central on Kubernetes and Openshift digest: 5b78a5947dbace22ff43252da7e7124455e35b80f263cacc559227be9c2beb47 home: https://portworx.com/ @@ -1747,11 +1747,11 @@ entries: sources: - https://github.com/portworx/helm/tree/master/charts/px-central urls: - - https://raw.githubusercontent.com/portworx/helm/3.2.0-fc1/stable/px-central-2.8.2.tgz + - https://raw.githubusercontent.com/portworx/helm/PB-15811-final/stable/px-central-2.8.2.tgz version: 2.8.2 - apiVersion: v1 appVersion: 2.8.1 - created: "2026-07-17T05:20:13.08390673Z" + created: "2026-07-20T16:14:42.753856917Z" description: A Helm chart for installing PX-Central on Kubernetes and Openshift digest: 1f36737794cd7a47154883a51ffc89ce0772b922f6e85b5840300dc09420003f home: https://portworx.com/ @@ -1768,11 +1768,11 @@ entries: sources: - https://github.com/portworx/helm/tree/master/charts/px-central urls: - - https://raw.githubusercontent.com/portworx/helm/3.2.0-fc1/stable/px-central-2.8.1.tgz + - https://raw.githubusercontent.com/portworx/helm/PB-15811-final/stable/px-central-2.8.1.tgz version: 2.8.1 - apiVersion: v1 appVersion: 2.8.0 - created: "2026-07-17T05:20:13.077649673Z" + created: "2026-07-20T16:14:42.744412485Z" description: A Helm chart for installing PX-Central on Kubernetes and Openshift digest: f25bb88dc2eebdd3ce29288f96b9b57b34d46d06dcd4a97ed9784cf086380998 home: https://portworx.com/ @@ -1789,11 +1789,11 @@ entries: sources: - https://github.com/portworx/helm/tree/master/charts/px-central urls: - - https://raw.githubusercontent.com/portworx/helm/3.2.0-fc1/stable/px-central-2.8.0.tgz + - https://raw.githubusercontent.com/portworx/helm/PB-15811-final/stable/px-central-2.8.0.tgz version: 2.8.0 - apiVersion: v1 appVersion: 2.7.4 - created: "2026-07-17T05:20:13.071822078Z" + created: "2026-07-20T16:14:42.735803882Z" description: A Helm chart for installing PX-Central on Kubernetes and Openshift digest: 400847b924699668cfdb2c11f27af52b6272dd29d006692d7415582e41b18ebe home: https://portworx.com/ @@ -1810,11 +1810,11 @@ entries: sources: - https://github.com/portworx/helm/tree/master/charts/px-central urls: - - https://raw.githubusercontent.com/portworx/helm/3.2.0-fc1/stable/px-central-2.7.4.tgz + - https://raw.githubusercontent.com/portworx/helm/PB-15811-final/stable/px-central-2.7.4.tgz version: 2.7.4 - apiVersion: v1 appVersion: 2.7.3 - created: "2026-07-17T05:20:13.065728976Z" + created: "2026-07-20T16:14:42.72941831Z" description: A Helm chart for installing PX-Central on Kubernetes and Openshift digest: eaa287204c00aa1f59a5ef3bd40d0b32a3197147dea79a2cb041bd106d7dbc1a home: https://portworx.com/ @@ -1831,11 +1831,11 @@ entries: sources: - https://github.com/portworx/helm/tree/master/charts/px-central urls: - - https://raw.githubusercontent.com/portworx/helm/3.2.0-fc1/stable/px-central-2.7.3.tgz + - https://raw.githubusercontent.com/portworx/helm/PB-15811-final/stable/px-central-2.7.3.tgz version: 2.7.3 - apiVersion: v1 appVersion: 2.7.2 - created: "2026-07-17T05:20:13.059437937Z" + created: "2026-07-20T16:14:42.719782126Z" description: A Helm chart for installing PX-Central on Kubernetes and Openshift digest: 881a960859a68bb65ca78246160f58b028152fb92cca0ce48cd5e43a00b200c7 home: https://portworx.com/ @@ -1852,11 +1852,11 @@ entries: sources: - https://github.com/portworx/helm/tree/master/charts/px-central urls: - - https://raw.githubusercontent.com/portworx/helm/3.2.0-fc1/stable/px-central-2.7.2.tgz + - https://raw.githubusercontent.com/portworx/helm/PB-15811-final/stable/px-central-2.7.2.tgz version: 2.7.2 - apiVersion: v1 appVersion: 2.7.1 - created: "2026-07-17T05:20:13.050455547Z" + created: "2026-07-20T16:14:42.711328357Z" description: A Helm chart for installing PX-Central on Kubernetes and Openshift digest: 648be2c10a1d748a2f100c854837b673af208047be686a28b95c6dfac63b1710 home: https://portworx.com/ @@ -1873,11 +1873,11 @@ entries: sources: - https://github.com/portworx/helm/tree/master/charts/px-central urls: - - https://raw.githubusercontent.com/portworx/helm/3.2.0-fc1/stable/px-central-2.7.1.tgz + - https://raw.githubusercontent.com/portworx/helm/PB-15811-final/stable/px-central-2.7.1.tgz version: 2.7.1 - apiVersion: v1 appVersion: 2.7.0 - created: "2026-07-17T05:20:13.041918861Z" + created: "2026-07-20T16:14:42.70559378Z" description: A Helm chart for installing PX-Central on Kubernetes and Openshift digest: 295a652338c35a57905d3b7eea7f156d8f7a88924cc3b1a2cea84402d35369ac home: https://portworx.com/ @@ -1894,11 +1894,11 @@ entries: sources: - https://github.com/portworx/helm/tree/master/charts/px-central urls: - - https://raw.githubusercontent.com/portworx/helm/3.2.0-fc1/stable/px-central-2.7.0.tgz + - https://raw.githubusercontent.com/portworx/helm/PB-15811-final/stable/px-central-2.7.0.tgz version: 2.7.0 - apiVersion: v1 appVersion: 2.6.1 - created: "2026-07-17T05:20:13.033667659Z" + created: "2026-07-20T16:14:42.696760305Z" description: A Helm chart for installing PX-Central on Kubernetes and Openshift digest: f32abdd809415d793b92123c134f13d4c14141f5bd740dbe103368b3c6b9691b home: https://portworx.com/ @@ -1915,11 +1915,11 @@ entries: sources: - https://github.com/portworx/helm/tree/master/charts/px-central urls: - - https://raw.githubusercontent.com/portworx/helm/3.2.0-fc1/stable/px-central-2.6.1.tgz + - https://raw.githubusercontent.com/portworx/helm/PB-15811-final/stable/px-central-2.6.1.tgz version: 2.6.1 - apiVersion: v1 appVersion: 2.6.0 - created: "2026-07-17T05:20:13.025218044Z" + created: "2026-07-20T16:14:42.691853722Z" description: A Helm chart for installing PX-Central on Kubernetes and Openshift digest: fec02bc7e95a933c218a63f792423b3cfa8fe39c23da75596b39c88f30a1bcbe home: https://portworx.com/ @@ -1936,11 +1936,11 @@ entries: sources: - https://github.com/portworx/helm/tree/master/charts/px-central urls: - - https://raw.githubusercontent.com/portworx/helm/3.2.0-fc1/stable/px-central-2.6.0.tgz + - https://raw.githubusercontent.com/portworx/helm/PB-15811-final/stable/px-central-2.6.0.tgz version: 2.6.0 - apiVersion: v1 appVersion: 2.5.1 - created: "2026-07-17T05:20:13.018386821Z" + created: "2026-07-20T16:14:42.686538682Z" description: A Helm chart for installing PX-Central on Kubernetes and Openshift digest: 35e04e7436dad4c6cebcfa5e4d35eaac8b5a20fd127338d0e99c7ed88271d85c home: https://portworx.com/ @@ -1957,11 +1957,11 @@ entries: sources: - https://github.com/portworx/helm/tree/master/charts/px-central urls: - - https://raw.githubusercontent.com/portworx/helm/3.2.0-fc1/stable/px-central-2.5.1.tgz + - https://raw.githubusercontent.com/portworx/helm/PB-15811-final/stable/px-central-2.5.1.tgz version: 2.5.1 - apiVersion: v1 appVersion: 2.5.0 - created: "2026-07-17T05:20:13.012149834Z" + created: "2026-07-20T16:14:42.680788002Z" description: A Helm chart for installing PX-Central on Kubernetes and Openshift digest: 6c36eb1e0fe29908738d6cc5284cb7b6122549ca7ffa003f0fd21733be4733be home: https://portworx.com/ @@ -1978,11 +1978,11 @@ entries: sources: - https://github.com/portworx/helm/tree/master/charts/px-central urls: - - https://raw.githubusercontent.com/portworx/helm/3.2.0-fc1/stable/px-central-2.5.0.tgz + - https://raw.githubusercontent.com/portworx/helm/PB-15811-final/stable/px-central-2.5.0.tgz version: 2.5.0 - apiVersion: v1 appVersion: 2.4.3 - created: "2026-07-17T05:20:13.00228288Z" + created: "2026-07-20T16:14:42.6755097Z" description: A Helm chart for installing PX-Central on Kubernetes and Openshift digest: 2ca15224d4c0118e3dd2c0c2c4a863ee0e6a47dfedcb7feb6e942521ed99b171 home: https://portworx.com/ @@ -1999,11 +1999,11 @@ entries: sources: - https://github.com/portworx/helm/tree/master/charts/px-central urls: - - https://raw.githubusercontent.com/portworx/helm/3.2.0-fc1/stable/px-central-2.4.3.tgz + - https://raw.githubusercontent.com/portworx/helm/PB-15811-final/stable/px-central-2.4.3.tgz version: 2.4.3 - apiVersion: v1 appVersion: 2.4.2 - created: "2026-07-17T05:20:12.99498382Z" + created: "2026-07-20T16:14:42.669715844Z" description: A Helm chart for installing PX-Central on Kubernetes and Openshift digest: 645700605aa6cdfdebe24e1288a96b2bfb9f4e9d2525866dacddc11eb7847900 home: https://portworx.com/ @@ -2020,11 +2020,11 @@ entries: sources: - https://github.com/portworx/helm/tree/master/charts/px-central urls: - - https://raw.githubusercontent.com/portworx/helm/3.2.0-fc1/stable/px-central-2.4.2.tgz + - https://raw.githubusercontent.com/portworx/helm/PB-15811-final/stable/px-central-2.4.2.tgz version: 2.4.2 - apiVersion: v1 appVersion: 2.4.1 - created: "2026-07-17T05:20:12.990221061Z" + created: "2026-07-20T16:14:42.663670655Z" description: A Helm chart for installing PX-Central on Kubernetes and Openshift digest: 352b6de244486cef54fb2e88fee4671cf9b0d7c6a425862f2813d1ff921f1b22 home: https://portworx.com/ @@ -2041,11 +2041,11 @@ entries: sources: - https://github.com/portworx/helm/tree/master/charts/px-central urls: - - https://raw.githubusercontent.com/portworx/helm/3.2.0-fc1/stable/px-central-2.4.1.tgz + - https://raw.githubusercontent.com/portworx/helm/PB-15811-final/stable/px-central-2.4.1.tgz version: 2.4.1 - apiVersion: v1 appVersion: 2.4.0 - created: "2026-07-17T05:20:12.984776564Z" + created: "2026-07-20T16:14:42.655429579Z" description: A Helm chart for installing PX-Central on Kubernetes and Openshift digest: f034a271280a530c9d236d79f892a686ee961d95d865fdad84c765184923f92a home: https://portworx.com/ @@ -2062,11 +2062,11 @@ entries: sources: - https://github.com/portworx/helm/tree/master/charts/px-central urls: - - https://raw.githubusercontent.com/portworx/helm/3.2.0-fc1/stable/px-central-2.4.0.tgz + - https://raw.githubusercontent.com/portworx/helm/PB-15811-final/stable/px-central-2.4.0.tgz version: 2.4.0 - apiVersion: v1 appVersion: 2.3.3 - created: "2026-07-17T05:20:12.978511431Z" + created: "2026-07-20T16:14:42.650930708Z" description: A Helm chart for installing PX-Central on Kubernetes and Openshift digest: 4b2f2dbcd15878e63cb50b21208e8a00317af2566f1b112e11e191fd88183caf home: https://portworx.com/ @@ -2083,11 +2083,11 @@ entries: sources: - https://github.com/portworx/helm/tree/master/charts/px-central urls: - - https://raw.githubusercontent.com/portworx/helm/3.2.0-fc1/stable/px-central-2.3.3.tgz + - https://raw.githubusercontent.com/portworx/helm/PB-15811-final/stable/px-central-2.3.3.tgz version: 2.3.3 - apiVersion: v1 appVersion: 2.3.2 - created: "2026-07-17T05:20:12.972230262Z" + created: "2026-07-20T16:14:42.642916666Z" description: A Helm chart for installing PX-Central on Kubernetes and Openshift digest: 07969717a7e2ffd0a85080d1a782d2fbbf2a77b101e4e1e1e48a27c2c1b4a1cf home: https://portworx.com/ @@ -2104,11 +2104,11 @@ entries: sources: - https://github.com/portworx/helm/tree/master/charts/px-central urls: - - https://raw.githubusercontent.com/portworx/helm/3.2.0-fc1/stable/px-central-2.3.2.tgz + - https://raw.githubusercontent.com/portworx/helm/PB-15811-final/stable/px-central-2.3.2.tgz version: 2.3.2 - apiVersion: v1 appVersion: 2.3.1 - created: "2026-07-17T05:20:12.967249484Z" + created: "2026-07-20T16:14:42.637010551Z" description: A Helm chart for installing PX-Central on Kubernetes and Openshift digest: bffae73f9f96a3d775084644639b6ec858633a9b377082326756577ca305b2d7 home: https://portworx.com/ @@ -2125,11 +2125,11 @@ entries: sources: - https://github.com/portworx/helm/tree/master/charts/px-central urls: - - https://raw.githubusercontent.com/portworx/helm/3.2.0-fc1/stable/px-central-2.3.1.tgz + - https://raw.githubusercontent.com/portworx/helm/PB-15811-final/stable/px-central-2.3.1.tgz version: 2.3.1 - apiVersion: v1 appVersion: 2.3.0 - created: "2026-07-17T05:20:12.962378432Z" + created: "2026-07-20T16:14:42.628945944Z" description: A Helm chart for installing PX-Central on Kubernetes and Openshift digest: 849f16762e8c9684d91b9541033c38121f9230975c4f46819e260cbff4ff5212 home: https://portworx.com/ @@ -2146,11 +2146,11 @@ entries: sources: - https://github.com/portworx/helm/tree/master/charts/px-central urls: - - https://raw.githubusercontent.com/portworx/helm/3.2.0-fc1/stable/px-central-2.3.0.tgz + - https://raw.githubusercontent.com/portworx/helm/PB-15811-final/stable/px-central-2.3.0.tgz version: 2.3.0 - apiVersion: v1 appVersion: 2.2.3 - created: "2026-07-17T05:20:12.956857642Z" + created: "2026-07-20T16:14:42.620976008Z" description: A Helm chart for installing PX-Central on Kubernetes and Openshift digest: 9656fdd92ce4f80ffcaf9e85eaa590c0151f2282da6a536f9722fcb315a993e2 home: https://portworx.com/ @@ -2167,11 +2167,11 @@ entries: sources: - https://github.com/portworx/helm/tree/master/charts/px-central urls: - - https://raw.githubusercontent.com/portworx/helm/3.2.0-fc1/stable/px-central-2.2.3.tgz + - https://raw.githubusercontent.com/portworx/helm/PB-15811-final/stable/px-central-2.2.3.tgz version: 2.2.3 - apiVersion: v1 appVersion: 2.2.2 - created: "2026-07-17T05:20:12.951312317Z" + created: "2026-07-20T16:14:42.615135688Z" description: A Helm chart for installing PX-Central on Kubernetes and Openshift digest: c4760d4aa90b2f23dff0054c6a57c423f03bdf1e3685c7701025579de77f2d60 home: https://portworx.com/ @@ -2188,11 +2188,11 @@ entries: sources: - https://github.com/portworx/helm/tree/master/charts/px-central urls: - - https://raw.githubusercontent.com/portworx/helm/3.2.0-fc1/stable/px-central-2.2.2.tgz + - https://raw.githubusercontent.com/portworx/helm/PB-15811-final/stable/px-central-2.2.2.tgz version: 2.2.2 - apiVersion: v1 appVersion: 2.2.1 - created: "2026-07-17T05:20:12.944983452Z" + created: "2026-07-20T16:14:42.60686303Z" description: A Helm chart for installing PX-Central on Kubernetes and Openshift digest: defa0a5d415b35c5f01ebf4ed99aa45a7e3f7ec08c417c415f12dc8bc05ae3a8 home: https://portworx.com/ @@ -2209,11 +2209,11 @@ entries: sources: - https://github.com/portworx/helm/tree/master/charts/px-central urls: - - https://raw.githubusercontent.com/portworx/helm/3.2.0-fc1/stable/px-central-2.2.1.tgz + - https://raw.githubusercontent.com/portworx/helm/PB-15811-final/stable/px-central-2.2.1.tgz version: 2.2.1 - apiVersion: v1 appVersion: 2.2.0 - created: "2026-07-17T05:20:12.938221863Z" + created: "2026-07-20T16:14:42.600701706Z" description: A Helm chart for installing PX-Central on Kubernetes and Openshift digest: d22206f8b66527c3bf699aab9c3227a5f40065fcb7134207a18813035a1766c2 home: https://portworx.com/ @@ -2230,11 +2230,11 @@ entries: sources: - https://github.com/portworx/helm/tree/master/charts/px-central urls: - - https://raw.githubusercontent.com/portworx/helm/3.2.0-fc1/stable/px-central-2.2.0.tgz + - https://raw.githubusercontent.com/portworx/helm/PB-15811-final/stable/px-central-2.2.0.tgz version: 2.2.0 - apiVersion: v1 appVersion: 2.1.2 - created: "2026-07-17T05:20:12.905751792Z" + created: "2026-07-20T16:14:42.569727599Z" description: A Helm chart for installing PX-Central on Kubernetes and Openshift digest: 8b45b7ef443c2b02dc41b88b70877f7d83d8180621bf1f708fbbebd8a0dad3bd home: https://portworx.com/ @@ -2251,11 +2251,11 @@ entries: sources: - https://github.com/portworx/helm/tree/master/charts/px-central urls: - - https://raw.githubusercontent.com/portworx/helm/3.2.0-fc1/stable/px-central-2.1.2.tgz + - https://raw.githubusercontent.com/portworx/helm/PB-15811-final/stable/px-central-2.1.2.tgz version: 2.1.2 - apiVersion: v1 appVersion: 2.1.1 - created: "2026-07-17T05:20:12.900337762Z" + created: "2026-07-20T16:14:42.564191837Z" description: A Helm chart for installing PX-Central on Kubernetes and Openshift digest: ab68db760b922dfeb49448ab8a5393104d02d92134b2007ffc37932b12dadb5c home: https://portworx.com/ @@ -2272,11 +2272,11 @@ entries: sources: - https://github.com/portworx/helm/tree/master/charts/px-central urls: - - https://raw.githubusercontent.com/portworx/helm/3.2.0-fc1/stable/px-central-2.1.1.tgz + - https://raw.githubusercontent.com/portworx/helm/PB-15811-final/stable/px-central-2.1.1.tgz version: 2.1.1 - apiVersion: v1 appVersion: 2.0.1 - created: "2026-07-17T05:20:12.89572203Z" + created: "2026-07-20T16:14:42.557354669Z" description: A Helm chart for installing PX-Central on Kubernetes and Openshift digest: f719f6251797b14ffad588f8db5648cd9f515e0bf855c487804f4a731f26f8cb home: https://portworx.com/ @@ -2293,11 +2293,11 @@ entries: sources: - https://github.com/portworx/helm/tree/master/charts/px-central urls: - - https://raw.githubusercontent.com/portworx/helm/3.2.0-fc1/stable/px-central-2.0.1.tgz + - https://raw.githubusercontent.com/portworx/helm/PB-15811-final/stable/px-central-2.0.1.tgz version: 2.0.1 - apiVersion: v1 appVersion: 2.0.0 - created: "2026-07-17T05:20:12.891673104Z" + created: "2026-07-20T16:14:42.550464626Z" description: A Helm chart for installing PX-Central on Kubernetes and Openshift digest: 58adcc335f387a3090cd55316ca7f2f4ebedaeea1375764d1bf18582551d4d96 home: https://portworx.com/ @@ -2314,12 +2314,12 @@ entries: sources: - https://github.com/portworx/helm/tree/master/charts/px-central urls: - - https://raw.githubusercontent.com/portworx/helm/3.2.0-fc1/stable/px-central-2.0.0.tgz + - https://raw.githubusercontent.com/portworx/helm/PB-15811-final/stable/px-central-2.0.0.tgz version: 2.0.0 px-license-server: - apiVersion: v1 appVersion: 1.0.0 - created: "2026-07-17T05:20:13.148835286Z" + created: "2026-07-20T16:14:42.813102349Z" description: A Helm chart for install and configure PX-License-Server on Kubernetes and Openshift digest: 70a52d0e5a59dfcbdabba7dda742d748d42937aecb4cdd8f603738cbbfb2c8a4 @@ -2332,11 +2332,11 @@ entries: sources: - https://github.com/portworx/helm/tree/master/charts/px-license-server urls: - - https://raw.githubusercontent.com/portworx/helm/3.2.0-fc1/stable/px-license-server-1.2.1.tgz + - https://raw.githubusercontent.com/portworx/helm/PB-15811-final/stable/px-license-server-1.2.1.tgz version: 1.2.1 - apiVersion: v1 appVersion: 1.0.0 - created: "2026-07-17T05:20:13.148502285Z" + created: "2026-07-20T16:14:42.812759536Z" description: A Helm chart for install and configure PX-License-Server on Kubernetes and Openshift digest: 5ee27e632cc313ab281a50c2deebbd8713657d19e0b394ea97ae4fdee76f4f09 @@ -2349,11 +2349,11 @@ entries: sources: - https://github.com/portworx/helm/tree/master/charts/px-license-server urls: - - https://raw.githubusercontent.com/portworx/helm/3.2.0-fc1/stable/px-license-server-1.2.0.tgz + - https://raw.githubusercontent.com/portworx/helm/PB-15811-final/stable/px-license-server-1.2.0.tgz version: 1.2.0 - apiVersion: v1 appVersion: 1.0.0 - created: "2026-07-17T05:20:13.14815547Z" + created: "2026-07-20T16:14:42.812440638Z" description: A Helm chart for install and configure PX-License-Server on Kubernetes and Openshift digest: 55f496792430763626acecb5082eaff7c5276879a0f527ae993635ad8ac90640 @@ -2366,11 +2366,11 @@ entries: sources: - https://github.com/portworx/helm/tree/master/charts/px-license-server urls: - - https://raw.githubusercontent.com/portworx/helm/3.2.0-fc1/stable/px-license-server-1.1.0.tgz + - https://raw.githubusercontent.com/portworx/helm/PB-15811-final/stable/px-license-server-1.1.0.tgz version: 1.1.0 - apiVersion: v1 appVersion: 1.0.1 - created: "2026-07-17T05:20:13.14772271Z" + created: "2026-07-20T16:14:42.81210001Z" description: A Helm chart for install and configure PX-License-Server on Kubernetes and Openshift digest: 6673a056155f5329ef7c8cf2c4436668af4b023d234d004448e1db8a2696e1f1 @@ -2383,11 +2383,11 @@ entries: sources: - https://github.com/portworx/helm/tree/master/charts/px-license-server urls: - - https://raw.githubusercontent.com/portworx/helm/3.2.0-fc1/stable/px-license-server-1.0.1.tgz + - https://raw.githubusercontent.com/portworx/helm/PB-15811-final/stable/px-license-server-1.0.1.tgz version: 1.0.1 - apiVersion: v1 appVersion: 1.0.0 - created: "2026-07-17T05:20:13.147198106Z" + created: "2026-07-20T16:14:42.811713075Z" description: A Helm chart for install and configure PX-License-Server on Kubernetes and Openshift digest: bb595272c93ef8071e8bc606a3cf8bdb5d7099646d4f8066748f9bd57ac76af1 @@ -2400,12 +2400,12 @@ entries: sources: - https://github.com/portworx/helm/tree/master/charts/px-license-server urls: - - https://raw.githubusercontent.com/portworx/helm/3.2.0-fc1/stable/px-license-server-1.0.0.tgz + - https://raw.githubusercontent.com/portworx/helm/PB-15811-final/stable/px-license-server-1.0.0.tgz version: 1.0.0 px-monitor: - apiVersion: v1 appVersion: 1.2.1 - created: "2026-07-17T05:20:13.162639793Z" + created: "2026-07-20T16:14:42.825759817Z" description: A Helm chart for install and configure PX-Monitor on Kubernetes and Openshift digest: 9ecba7fb39e84dbdf274784b509780465bda9b0b0c0574b7e729f5575a4a4a1e @@ -2421,11 +2421,11 @@ entries: sources: - https://github.com/portworx/helm/tree/master/charts/px-monitor urls: - - https://raw.githubusercontent.com/portworx/helm/3.2.0-fc1/stable/px-monitor-1.2.1.tgz + - https://raw.githubusercontent.com/portworx/helm/PB-15811-final/stable/px-monitor-1.2.1.tgz version: 1.2.1 - apiVersion: v1 appVersion: 1.2.0 - created: "2026-07-17T05:20:13.158669609Z" + created: "2026-07-20T16:14:42.822149513Z" description: A Helm chart for install and configure PX-Monitor on Kubernetes and Openshift digest: ed29de40a6aedebd2df7cce93084cf008b565d72cc36bcaf92c33048a920fade @@ -2441,11 +2441,11 @@ entries: sources: - https://github.com/portworx/helm/tree/master/charts/px-monitor urls: - - https://raw.githubusercontent.com/portworx/helm/3.2.0-fc1/stable/px-monitor-1.2.0.tgz + - https://raw.githubusercontent.com/portworx/helm/PB-15811-final/stable/px-monitor-1.2.0.tgz version: 1.2.0 - apiVersion: v1 appVersion: 1.1.1 - created: "2026-07-17T05:20:13.154753715Z" + created: "2026-07-20T16:14:42.81870057Z" description: A Helm chart for install and configure PX-Monitor on Kubernetes and Openshift digest: 66e6d465883dc5be2b6413cb09809aa48cc898400c5e149cf8ead44ed84ec504 @@ -2461,11 +2461,11 @@ entries: sources: - https://github.com/portworx/helm/tree/master/charts/px-monitor urls: - - https://raw.githubusercontent.com/portworx/helm/3.2.0-fc1/stable/px-monitor-1.1.1.tgz + - https://raw.githubusercontent.com/portworx/helm/PB-15811-final/stable/px-monitor-1.1.1.tgz version: 1.1.1 - apiVersion: v1 appVersion: 1.1.0 - created: "2026-07-17T05:20:13.151327808Z" + created: "2026-07-20T16:14:42.816280004Z" description: A Helm chart for install and configure PX-Monitor on Kubernetes and Openshift digest: 079c699ed5fcba8f9214bde2b9f7b641883bac7cb57d3075a796583a10a2f9ed @@ -2481,6 +2481,6 @@ entries: sources: - https://github.com/portworx/helm/tree/master/charts/px-monitor urls: - - https://raw.githubusercontent.com/portworx/helm/3.2.0-fc1/stable/px-monitor-1.1.0.tgz + - https://raw.githubusercontent.com/portworx/helm/PB-15811-final/stable/px-monitor-1.1.0.tgz version: 1.1.0 -generated: "2026-07-17T05:20:12.706816044Z" +generated: "2026-07-20T16:14:42.36240615Z" diff --git a/stable/px-central-3.2.0.tgz b/stable/px-central-3.2.0.tgz index fa33435a8ae1318ffd4693a7d35b4a9f0b50caf3..c952b7d7a69c4356d95f92d6a4c5bcc4643bd6d9 100644 GIT binary patch literal 79961 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

    3pVW9Kka}E^C`{6Cyil$FbD(#03Nm*0#Z#kuRg0 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 z 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

    uZel;>HNV}QhyE9J4- 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 VXElHR{{R30|Ns37+hqV`902?;t1