Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

release chart 2.2.0 #200

Merged
merged 1 commit into from
Nov 30, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions helm/kubestitute/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
apiVersion: v2
name: kubestitute
type: application
version: 2.1.0
appVersion: 2.0.0
version: 2.2.0
appVersion: 2.1.0
description: Kubestitute is an event based instances lifecycle manager for Kubernetes.
home: https://github.com/quortex/kubestitute
sources:
Expand Down
3 changes: 2 additions & 1 deletion helm/kubestitute/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# kubestitute

![Version: 2.1.0](https://img.shields.io/badge/Version-2.1.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 2.0.0](https://img.shields.io/badge/AppVersion-2.0.0-informational?style=flat-square)
![Version: 2.2.0](https://img.shields.io/badge/Version-2.2.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 2.1.0](https://img.shields.io/badge/AppVersion-2.1.0-informational?style=flat-square)

Kubestitute is an event based instances lifecycle manager for Kubernetes.

Expand Down Expand Up @@ -87,6 +87,7 @@ helm install kubestitute kubestitute/kubestitute -n kubestitute-system
| manager.logs.enableDevLogs | bool | `false` | |
| manager.asgPollInterval | int | `30` | AutoScaling Groups polling interval (used to generate custom metrics about ASGs). |
| manager.evictionTimeout | int | `300` | The timeout in seconds for pods eviction on Instance deletion. |
| manager.instancesMaxConcurrentReconciles | int | `10` | The maximum number of concurrent Reconciles which can be run for Instances. |
| manager.image.repository | string | `"quortexio/kubestitute"` | Kubestitute manager image repository. |
| manager.image.tag | string | `""` | Kubestitute manager image tag. |
| manager.image.pullPolicy | string | `"IfNotPresent"` | Kubestitute manager image pull policy. |
Expand Down
1 change: 1 addition & 0 deletions helm/kubestitute/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ spec:
- --v={{ .logs.verbosity }}
- --asg-poll-interval={{ .asgPollInterval }}
- --eviction-timeout={{ .evictionTimeout }}
- --instances-max-concurrent-reconciles={{ .instancesMaxConcurrentReconciles }}
env:
{{- with $.Values.aws }}
{{- with .region }}
Expand Down
3 changes: 3 additions & 0 deletions helm/kubestitute/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,9 @@ manager:
# -- The timeout in seconds for pods eviction on Instance deletion.
evictionTimeout: 300

# -- The maximum number of concurrent Reconciles which can be run for Instances.
instancesMaxConcurrentReconciles: 10

image:
# -- Kubestitute manager image repository.
repository: quortexio/kubestitute
Expand Down