Skip to content

Commit f4a630a

Browse files
authored
Merge pull request #54 from ksrt12/main
bump chart version to 0.4.0
2 parents c7c7db7 + d18362e commit f4a630a

File tree

8 files changed

+558
-7
lines changed

8 files changed

+558
-7
lines changed

Diff for: .gitignore

+4-1
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,7 @@ generate
44
.out
55
*.rpm
66
*.deb
7-
config.yaml
7+
config.yaml
8+
.vscode
9+
.idea
10+
.DS_Store

Diff for: deploy/k8s/chart/Chart.yaml

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
apiVersion: v2
22
description: A Helm Chart for cortex-tenant
33
name: cortex-tenant
4-
version: 0.3.2 # This is the chart version
4+
version: 0.4.0 # This is the chart version
55
appVersion: 1.11.0 # version number of the application being deployed.
66
type: application
7+
sources:
8+
- https://github.com/blind-oracle/cortex-tenant

Diff for: deploy/k8s/chart/README.md

+7-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,13 @@
11
# cortex-tenant
22

3-
![Version: 0.3.2](https://img.shields.io/badge/Version-0.3.2-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 1.11.0](https://img.shields.io/badge/AppVersion-1.11.0-informational?style=flat-square)
3+
![Version: 0.4.0](https://img.shields.io/badge/Version-0.4.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 1.11.0](https://img.shields.io/badge/AppVersion-1.11.0-informational?style=flat-square)
44

55
A Helm Chart for cortex-tenant
66

7+
## Source Code
8+
9+
* <https://github.com/blind-oracle/cortex-tenant>
10+
711
## Values
812

913
| Key | Type | Default | Description |
@@ -48,6 +52,7 @@ A Helm Chart for cortex-tenant
4852
| podDisruptionBudget.minAvailable | int | `1` | Minimum number of pods that must remain scheduled |
4953
| podSecurityContext | object | `{}` | [Security Context](https://kubernetes.io/docs/tasks/configure-pod-container/security-context) |
5054
| 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 |
5156
| resources.limits | object | `{"memory":"256Mi"}` | Resources limits |
5257
| resources.requests | object | `{"cpu":"100m","memory":"128Mi"}` | Resources requests |
5358
| securityContext | object | `{}` | [Security Context](https://kubernetes.io/docs/tasks/configure-pod-container/security-context) |
@@ -71,4 +76,4 @@ A Helm Chart for cortex-tenant
7176
| tolerations | list | `[]` | [Taints and Tolerations](https://kubernetes.io/docs/concepts/configuration/taint-and-toleration/) |
7277

7378
----------------------------------------------
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)

Diff for: deploy/k8s/chart/templates/deployment.yaml

+3
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,9 @@ metadata:
99
{{- toYaml . | nindent 4 }}
1010
{{- end }}
1111
spec:
12+
{{- if not .Values.autoscaling.enabled }}
13+
replicas: {{ .Values.replicas }}
14+
{{- end }}
1215
selector:
1316
matchLabels:
1417
{{- include "cortex-tenant.selectorLabels" . | nindent 6 }}

0 commit comments

Comments
 (0)