File tree 4 files changed +15
-2
lines changed
4 files changed +15
-2
lines changed Original file line number Diff line number Diff line change @@ -4,3 +4,5 @@ name: cortex-tenant
4
4
version : 0.3.2 # This is the chart version
5
5
appVersion : 1.11.0 # version number of the application being deployed.
6
6
type : application
7
+ sources :
8
+ - https://github.com/blind-oracle/cortex-tenant
Original file line number Diff line number Diff line change 4
4
5
5
A Helm Chart for cortex-tenant
6
6
7
+ ## Source Code
8
+
9
+ * < https://github.com/blind-oracle/cortex-tenant >
10
+
7
11
## Values
8
12
9
13
| Key | Type | Default | Description |
@@ -48,6 +52,7 @@ A Helm Chart for cortex-tenant
48
52
| podDisruptionBudget.minAvailable | int | ` 1 ` | Minimum number of pods that must remain scheduled |
49
53
| podSecurityContext | object | ` {} ` | [ Security Context] ( https://kubernetes.io/docs/tasks/configure-pod-container/security-context ) |
50
54
| podTopologySpreadConstraints | list | ` [] ` | [ Pod Topology Spread Constraints] ( https://kubernetes.io/docs/concepts/workloads/pods/pod-topology-spread-constraints/ ) |
55
+ | replicas | int | ` 1 ` | Number of replicas. Ignored if ` autoscaling.enabled ` is true |
51
56
| resources.limits | object | ` {"memory":"256Mi"} ` | Resources limits |
52
57
| resources.requests | object | ` {"cpu":"100m","memory":"128Mi"} ` | Resources requests |
53
58
| securityContext | object | ` {} ` | [ Security Context] ( https://kubernetes.io/docs/tasks/configure-pod-container/security-context ) |
@@ -71,4 +76,4 @@ A Helm Chart for cortex-tenant
71
76
| tolerations | list | ` [] ` | [ Taints and Tolerations] ( https://kubernetes.io/docs/concepts/configuration/taint-and-toleration/ ) |
72
77
73
78
----------------------------------------------
74
- Autogenerated from chart metadata using [ helm-docs v1.11.2 ] ( https://github.com/norwoodj/helm-docs/releases/v1.11.2 )
79
+ Autogenerated from chart metadata using [ helm-docs v1.11.3 ] ( https://github.com/norwoodj/helm-docs/releases/v1.11.3 )
Original file line number Diff line number Diff line change @@ -9,6 +9,9 @@ metadata:
9
9
{{- toYaml . | nindent 4 }}
10
10
{{- end }}
11
11
spec :
12
+ {{- if not .Values.autoscaling.enabled }}
13
+ replicas : {{ .Values.replicas }}
14
+ {{- end }}
12
15
selector :
13
16
matchLabels :
14
17
{{- include "cortex-tenant.selectorLabels" . | nindent 6 }}
Original file line number Diff line number Diff line change @@ -19,6 +19,9 @@ service:
19
19
# The target port to which traffic is forwarded
20
20
targetPort : 8080
21
21
22
+ # -- Number of replicas. Ignored if `autoscaling.enabled` is true
23
+ replicas : 1
24
+
22
25
autoscaling :
23
26
# -- If enabled, HorizontalPodAutoscaler resources are created
24
27
enabled : true
@@ -186,7 +189,7 @@ serviceMonitor:
186
189
# https://github.com/prometheus-operator/prometheus-operator/blob/master/Documentation/api.md#relabelconfig
187
190
# (defines `metric_relabel_configs`)
188
191
metricRelabelings : []
189
- # --ServiceMonitor will add labels from the service to the Prometheus metric
192
+ # -- ServiceMonitor will add labels from the service to the Prometheus metric
190
193
# https://github.com/prometheus-operator/prometheus-operator/blob/main/Documentation/api.md#servicemonitorspec
191
194
targetLabels : []
192
195
# -- ServiceMonitor will use http by default, but you can pick https as well
You can’t perform that action at this time.
0 commit comments