Skip to content

Commit 9423a2d

Browse files
authored
set app version from Chart.yaml appVersion (#196)
1 parent e1e18de commit 9423a2d

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

helm/kubestitute/Chart.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
apiVersion: v2
22
name: kubestitute
33
type: application
4-
version: 2.0.0
4+
version: 2.1.0
55
appVersion: 2.0.0
66
description: Kubestitute is an event based instances lifecycle manager for Kubernetes.
77
home: https://github.com/quortex/kubestitute

helm/kubestitute/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# kubestitute
22

3-
![Version: 2.0.0](https://img.shields.io/badge/Version-2.0.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)
3+
![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)
44

55
Kubestitute is an event based instances lifecycle manager for Kubernetes.
66

@@ -88,7 +88,7 @@ helm install kubestitute kubestitute/kubestitute -n kubestitute-system
8888
| manager.asgPollInterval | int | `30` | AutoScaling Groups polling interval (used to generate custom metrics about ASGs). |
8989
| manager.evictionTimeout | int | `300` | The timeout in seconds for pods eviction on Instance deletion. |
9090
| manager.image.repository | string | `"quortexio/kubestitute"` | Kubestitute manager image repository. |
91-
| manager.image.tag | string | `"1.1.0"` | Kubestitute manager image tag. |
91+
| manager.image.tag | string | `""` | Kubestitute manager image tag. |
9292
| manager.image.pullPolicy | string | `"IfNotPresent"` | Kubestitute manager image pull policy. |
9393
| manager.livenessProbe.httpGet.path | string | `"/healthz"` | Path of the manager liveness probe. |
9494
| manager.livenessProbe.httpGet.port | int | `8081` | Name or number of the manager liveness probe port. |

helm/kubestitute/templates/deployment.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ spec:
3232
containers:
3333
{{- with .Values.manager }}
3434
- name: manager
35-
image: "{{ .image.repository }}:{{ .image.tag }}"
35+
image: "{{ .image.repository }}:{{ .image.tag | default $.Chart.AppVersion }}"
3636
imagePullPolicy: {{ .image.pullPolicy }}
3737
command:
3838
- /manager

helm/kubestitute/values.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ manager:
5252
# -- Kubestitute manager image repository.
5353
repository: quortexio/kubestitute
5454
# -- Kubestitute manager image tag.
55-
tag: 1.1.0
55+
tag: ""
5656
# -- Kubestitute manager image pull policy.
5757
pullPolicy: IfNotPresent
5858

0 commit comments

Comments
 (0)