Skip to content

Commit

Permalink
Merge pull request #54 from ksrt12/main
Browse files Browse the repository at this point in the history
bump chart version to 0.4.0
  • Loading branch information
blind-oracle authored Dec 6, 2023
2 parents c7c7db7 + d18362e commit f4a630a
Show file tree
Hide file tree
Showing 8 changed files with 558 additions and 7 deletions.
5 changes: 4 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,7 @@ generate
.out
*.rpm
*.deb
config.yaml
config.yaml
.vscode
.idea
.DS_Store
4 changes: 3 additions & 1 deletion deploy/k8s/chart/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
apiVersion: v2
description: A Helm Chart for cortex-tenant
name: cortex-tenant
version: 0.3.2 # This is the chart version
version: 0.4.0 # This is the chart version
appVersion: 1.11.0 # version number of the application being deployed.
type: application
sources:
- https://github.com/blind-oracle/cortex-tenant
9 changes: 7 additions & 2 deletions deploy/k8s/chart/README.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,13 @@
# cortex-tenant

![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)
![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)

A Helm Chart for cortex-tenant

## Source Code

* <https://github.com/blind-oracle/cortex-tenant>

## Values

| Key | Type | Default | Description |
Expand Down Expand Up @@ -48,6 +52,7 @@ A Helm Chart for cortex-tenant
| podDisruptionBudget.minAvailable | int | `1` | Minimum number of pods that must remain scheduled |
| podSecurityContext | object | `{}` | [Security Context](https://kubernetes.io/docs/tasks/configure-pod-container/security-context) |
| podTopologySpreadConstraints | list | `[]` | [Pod Topology Spread Constraints](https://kubernetes.io/docs/concepts/workloads/pods/pod-topology-spread-constraints/) |
| replicas | int | `1` | Number of replicas. Ignored if `autoscaling.enabled` is true |
| resources.limits | object | `{"memory":"256Mi"}` | Resources limits |
| resources.requests | object | `{"cpu":"100m","memory":"128Mi"}` | Resources requests |
| securityContext | object | `{}` | [Security Context](https://kubernetes.io/docs/tasks/configure-pod-container/security-context) |
Expand All @@ -71,4 +76,4 @@ A Helm Chart for cortex-tenant
| tolerations | list | `[]` | [Taints and Tolerations](https://kubernetes.io/docs/concepts/configuration/taint-and-toleration/) |

----------------------------------------------
Autogenerated from chart metadata using [helm-docs v1.11.2](https://github.com/norwoodj/helm-docs/releases/v1.11.2)
Autogenerated from chart metadata using [helm-docs v1.11.3](https://github.com/norwoodj/helm-docs/releases/v1.11.3)
3 changes: 3 additions & 0 deletions deploy/k8s/chart/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@ metadata:
{{- toYaml . | nindent 4 }}
{{- end }}
spec:
{{- if not .Values.autoscaling.enabled }}
replicas: {{ .Values.replicas }}
{{- end }}
selector:
matchLabels:
{{- include "cortex-tenant.selectorLabels" . | nindent 6 }}
Expand Down
Loading

0 comments on commit f4a630a

Please sign in to comment.