File tree Expand file tree Collapse file tree 4 files changed +7
-1
lines changed Expand file tree Collapse file tree 4 files changed +7
-1
lines changed Original file line number Diff line number Diff line change 2
2
3
3
## master / unreleased
4
4
5
- ## 1.4.0 / 2022-03-11
5
+ * [ ENHANCEMENT] Allow StoreGateway podManagementPolicy to be changed #332
6
+
7
+ ## 1.4.0 / 2022-03-08
6
8
7
9
* [ ENHANCEMENT] Upgrade to Cortex v1.11.1 #331
8
10
* [ ENHANCEMENT] Includes enable flags for each component #319
Original file line number Diff line number Diff line change @@ -716,6 +716,7 @@ Kubernetes: `^1.19.0-0`
716
716
| store_gateway.&ZeroWidthSpace ; podAnnotations | object | ` {"prometheus.io/port":"8080","prometheus.io/scrape":"true"} ` | Pod Annotations |
717
717
| store_gateway.&ZeroWidthSpace ; podDisruptionBudget.&ZeroWidthSpace ; maxUnavailable | int | ` 1 ` | |
718
718
| store_gateway.&ZeroWidthSpace ; podLabels | object | ` {} ` | Pod Labels |
719
+ | store_gateway.&ZeroWidthSpace ; podManagementPolicy | string | ` "OrderedReady" ` | https://kubernetes.io/docs/concepts/workloads/controllers/statefulset/#pod-management-policies |
719
720
| store_gateway.&ZeroWidthSpace ; readinessProbe.&ZeroWidthSpace ; httpGet.&ZeroWidthSpace ; path | string | ` "/ready" ` | |
720
721
| store_gateway.&ZeroWidthSpace ; readinessProbe.&ZeroWidthSpace ; httpGet.&ZeroWidthSpace ; port | string | ` "http-metrics" ` | |
721
722
| store_gateway.&ZeroWidthSpace ; replicas | int | ` 1 ` | |
Original file line number Diff line number Diff line change 16
16
{{- include "cortex.storeGatewaySelectorLabels" . | nindent 6 }}
17
17
updateStrategy :
18
18
{{- toYaml .Values.store_gateway.strategy | nindent 4 }}
19
+ podManagementPolicy : {{ .Values.store_gateway.podManagementPolicy | quote }}
19
20
serviceName : {{ template "cortex.fullname" . }}-store-gateway-headless
20
21
{{- if .Values.store_gateway.persistentVolume.enabled }}
21
22
volumeClaimTemplates :
Original file line number Diff line number Diff line change @@ -1180,6 +1180,8 @@ nginx:
1180
1180
store_gateway :
1181
1181
enabled : true
1182
1182
replicas : 1
1183
+ # -- https://kubernetes.io/docs/concepts/workloads/controllers/statefulset/#pod-management-policies
1184
+ podManagementPolicy : OrderedReady
1183
1185
1184
1186
service :
1185
1187
annotations : {}
You can’t perform that action at this time.
0 commit comments