Skip to content

Commit

Permalink
chore(add-on): Ship Release 0.6.0 (kedacore#543)
Browse files Browse the repository at this point in the history
  • Loading branch information
JorTurFer authored and QuentinBisson committed Feb 22, 2024
1 parent 228b381 commit c761d2a
Show file tree
Hide file tree
Showing 8 changed files with 35 additions and 9 deletions.
23 changes: 23 additions & 0 deletions docs/index.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1143,6 +1143,29 @@ entries:
- https://kedacore.github.io/charts/keda-1.0.0.tgz
version: 1.0.0
keda-add-ons-http:
- apiVersion: v2
appVersion: 0.6.0
created: "2023-10-05T15:23:31.389125+02:00"
description: Event-based autoscaler for HTTP workloads on Kubernetes
digest: 435c6c9c221b8e98774c662250a091b872222584510e3b7f1df2a838afa81252
home: https://github.com/kedacore/http-add-on
kubeVersion: '>=v1.23.0-0'
maintainers:
- email: [email protected]
name: Ahmed ElSayed
- email: [email protected]
name: Jorge Turrado
- email: [email protected]
name: Tom Kerkhove
- email: [email protected]
name: Zbynek Roubalik
name: keda-add-ons-http
sources:
- https://github.com/kedacore/http-add-on
type: application
urls:
- https://kedacore.github.io/charts/keda-add-ons-http-0.6.0.tgz
version: 0.6.0
- apiVersion: v2
appVersion: 0.5.0
created: "2023-11-27T18:55:31.490795+01:00"
Expand Down
Binary file added docs/keda-add-ons-http-0.6.0.tgz
Binary file not shown.
6 changes: 3 additions & 3 deletions http-add-on/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@ kubeVersion: ">=v1.23.0-0"
# to the chart and its templates, including the app version. This is incremented at chart release time and does not need
# to be included in any PRs to main.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 0.5.3
version: 0.6.0

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
# follow Semantic Versioning. They should reflect the version the application is using.
appVersion: 0.5.0
appVersion: 0.6.0
home: https://github.com/kedacore/http-add-on
sources:
- https://github.com/kedacore/http-add-on
Expand All @@ -28,4 +28,4 @@ maintainers:
- name: Tom Kerkhove
email: [email protected]
- name: Zbynek Roubalik
email: [email protected]
email: [email protected]
3 changes: 2 additions & 1 deletion http-add-on/templates/interceptor/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -61,8 +61,9 @@ spec:
resources:
{{- toYaml .Values.interceptor.resources | nindent 10 }}
terminationGracePeriodSeconds: 10
{{- with .Values.interceptor.nodeSelector }}
nodeSelector:
kubernetes.io/os: linux
{{- with .Values.interceptor.nodeSelector }}
{{- toYaml . | nindent 8 }}
{{- end }}
{{- with .Values.interceptor.affinity }}
Expand Down
3 changes: 2 additions & 1 deletion http-add-on/templates/operator/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -67,8 +67,9 @@ spec:
resources:
{{- toYaml .Values.operator.resources | nindent 10 }}
terminationGracePeriodSeconds: 10
{{- with .Values.operator.nodeSelector }}
nodeSelector:
kubernetes.io/os: linux
{{- with .Values.operator.nodeSelector }}
{{- toYaml . | nindent 8 }}
{{- end }}
{{- with .Values.operator.affinity }}
Expand Down
3 changes: 2 additions & 1 deletion http-add-on/templates/scaler/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,9 @@ spec:
resources:
{{- toYaml .Values.scaler.resources | nindent 10 }}
terminationGracePeriodSeconds: 10
{{- with .Values.scaler.nodeSelector }}
nodeSelector:
kubernetes.io/os: linux
{{- with .Values.scaler.nodeSelector }}
{{- toYaml . | nindent 8 }}
{{- end }}
{{- with .Values.scaler.affinity }}
Expand Down
2 changes: 1 addition & 1 deletion keda/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,4 @@ maintainers:
- name: Tom Kerkhove
email: [email protected]
- name: Zbynek Roubalik
email: [email protected]
email: [email protected]
4 changes: 2 additions & 2 deletions keda/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ helm repo add kedacore https://kedacore.github.io/charts
helm repo update

kubectl create namespace keda
helm install keda kedacore/keda --namespace keda --version 2.12.0
helm install keda kedacore/keda --namespace keda --version 2.12.1
```

## Introduction
Expand All @@ -36,7 +36,7 @@ To install the chart with the release name `keda`:

```console
$ kubectl create namespace keda
$ helm install keda kedacore/keda --namespace keda --version 2.12.0
$ helm install keda kedacore/keda --namespace keda --version 2.12.1
```

## Uninstalling the Chart
Expand Down

0 comments on commit c761d2a

Please sign in to comment.