@@ -792,6 +792,8 @@ schema ValuesCompactor:
792792 resources : ValuesCompactorResources, optional
793793 Resource requests and limits for the compactor
794794 service : ValuesCompactorService, optional
795+ strategy : ValuesCompactorStrategy, optional
796+ Strategy of updating pods
795797 terminationGracePeriodSeconds : int, optional, default is 30
796798 Grace period to allow the compactor to shutdown before it is killed
797799 tolerations : [any], optional
@@ -821,6 +823,7 @@ schema ValuesCompactor:
821823 replicas?: int
822824 resources?: ValuesCompactorResources
823825 service?: ValuesCompactorService
826+ strategy?: ValuesCompactorStrategy
824827 terminationGracePeriodSeconds?: int
825828 tolerations?: [any]
826829
@@ -1050,6 +1053,30 @@ schema ValuesCompactorServiceAnnotations:
10501053 """
10511054 [...str]: any
10521055
1056+ schema ValuesCompactorStrategy:
1057+ r"""
1058+ Strategy of updating pods
1059+
1060+ Attributes
1061+ ----------
1062+ rollingUpdate : ValuesCompactorStrategyRollingUpdate, optional
1063+ """
1064+ [...str]: any
1065+ rollingUpdate?: ValuesCompactorStrategyRollingUpdate
1066+
1067+ schema ValuesCompactorStrategyRollingUpdate:
1068+ r"""
1069+ ValuesCompactorStrategyRollingUpdate
1070+
1071+ Attributes
1072+ ----------
1073+ maxSurge : int, optional, default is 0
1074+ maxUnavailable : int, optional, default is 1
1075+ """
1076+ [...str]: any
1077+ maxSurge?: int
1078+ maxUnavailable?: int
1079+
10531080schema ValuesConsoleIngress:
10541081 r"""
10551082 ValuesConsoleIngress
@@ -2599,7 +2626,7 @@ schema ValuesGlobal:
25992626 clusterDomain : str, optional, default is "cluster.local"
26002627 configures cluster domain ("cluster.local" by default)
26012628 commonLabels : ValuesGlobalCommonLabels, optional
2602- Common labels for all object directly managed by this chart.
2629+ Adding common labels to all K8S resources including pods
26032630 dnsNamespace : str, optional, default is "kube-system"
26042631 configures DNS service namespace
26052632 dnsService : str, optional, default is "kube-dns"
@@ -2614,6 +2641,10 @@ schema ValuesGlobal:
26142641 Common environment variables which come from a ConfigMap or Secret to add to all pods directly managed by this chart.
26152642 scope: admin-api, compactor, distributor, enterprise-federation-frontend, gateway, ingester, memcached, metrics-generator, querier, query-frontend, tokengen
26162643 image : ValuesGlobalImage, optional
2644+ labels : ValuesGlobalLabels, optional
2645+ Adding labels to K8S resources (excluding pods)
2646+ podLabels : ValuesGlobalPodLabels, optional
2647+ Adding labels to all pods
26172648 priorityClassName : any, optional, default is "null"
26182649 Overrides the priorityClassName for all pods
26192650 storageClass : any, optional, default is "null"
@@ -2628,12 +2659,14 @@ schema ValuesGlobal:
26282659 extraEnv?: [any]
26292660 extraEnvFrom?: [any]
26302661 image?: ValuesGlobalImage
2662+ labels?: ValuesGlobalLabels
2663+ podLabels?: ValuesGlobalPodLabels
26312664 priorityClassName?: any
26322665 storageClass?: any
26332666
26342667schema ValuesGlobalCommonLabels:
26352668 r"""
2636- Common labels for all object directly managed by this chart.
2669+ Adding common labels to all K8S resources including pods
26372670 """
26382671 [...str]: any
26392672
@@ -2656,6 +2689,18 @@ schema ValuesGlobalImage:
26562689 pullSecrets?: [any]
26572690 registry?: str
26582691
2692+ schema ValuesGlobalLabels:
2693+ r"""
2694+ Adding labels to K8S resources (excluding pods)
2695+ """
2696+ [...str]: any
2697+
2698+ schema ValuesGlobalPodLabels:
2699+ r"""
2700+ Adding labels to all pods
2701+ """
2702+ [...str]: any
2703+
26592704schema ValuesImage:
26602705 r"""
26612706 # Set default image, imageTag, and imagePullPolicy. mode is used to indicate the
0 commit comments