File tree Expand file tree Collapse file tree 4 files changed +6
-2
lines changed Expand file tree Collapse file tree 4 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ apiVersion: v2
2
2
name : rollout-operator
3
3
description : " Grafana rollout-operator"
4
4
type : application
5
- version : 0.30 .0
5
+ version : 0.31 .0
6
6
appVersion : v0.28.0
7
7
home : https://github.com/grafana/rollout-operator
8
8
kubeVersion : ^1.10.0-0
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ Helm chart for deploying [Grafana rollout-operator](https://github.com/grafana/r
4
4
5
5
# rollout-operator
6
6
7
- ![ Version: 0.30 .0] ( https://img.shields.io/badge/Version-0.30 .0-informational?style=flat-square ) ![ Type: application] ( https://img.shields.io/badge/Type-application-informational?style=flat-square ) ![ AppVersion: v0.28.0] ( https://img.shields.io/badge/AppVersion-v0.28.0-informational?style=flat-square )
7
+ ![ Version: 0.31 .0] ( https://img.shields.io/badge/Version-0.31 .0-informational?style=flat-square ) ![ Type: application] ( https://img.shields.io/badge/Type-application-informational?style=flat-square ) ![ AppVersion: v0.28.0] ( https://img.shields.io/badge/AppVersion-v0.28.0-informational?style=flat-square )
8
8
9
9
Grafana rollout-operator
10
10
@@ -58,6 +58,7 @@ It is not a highly available application and runs as a single pod.
58
58
| resources.limits.memory | string | ` "200Mi" ` | |
59
59
| resources.requests.cpu | string | ` "100m" ` | |
60
60
| resources.requests.memory | string | ` "100Mi" ` | |
61
+ | revisionHistoryLimit | int | ` 10 ` | Number of old ReplicaSets to retain |
61
62
| securityContext | object | ` {} ` | |
62
63
| serviceAccount.annotations | object | ` {} ` | Annotations to add to the service account |
63
64
| serviceAccount.create | bool | ` true ` | Specifies whether a service account should be created |
Original file line number Diff line number Diff line change @@ -7,6 +7,7 @@ metadata:
7
7
{{- include "rollout-operator.labels" . | nindent 4 }}
8
8
spec :
9
9
replicas : 1
10
+ revisionHistoryLimit : {{ .Values.revisionHistoryLimit }}
10
11
minReadySeconds : {{ .Values.minReadySeconds }}
11
12
selector :
12
13
matchLabels :
Original file line number Diff line number Diff line change 7
7
# -- Common labels for all object directly managed by this chart.
8
8
commonLabels : {}
9
9
10
+ # -- Number of old ReplicaSets to retain
11
+ revisionHistoryLimit : 10
10
12
11
13
image :
12
14
repository : grafana/rollout-operator
You can’t perform that action at this time.
0 commit comments