Skip to content

Commit c5ce3fe

Browse files
jammmVic Iglesias
authored andcommitted
[stable/concourse] Fix minimum version required for StatefulSet upgradeStrategy (helm#2871)
1 parent ca466c9 commit c5ce3fe

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

stable/concourse/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: concourse
2-
version: 0.10.0
2+
version: 0.10.1
33
appVersion: 3.6.0
44
description: Concourse is a simple and scalable CI system.
55
icon: https://avatars1.githubusercontent.com/u/7809479

stable/concourse/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ The following tables lists the configurable parameters of the Concourse chart an
126126
| `worker.postStopDelaySeconds` | Time to wait after graceful shutdown of worker before starting up again | `60` |
127127
| `worker.terminationGracePeriodSeconds` | Upper bound for graceful shutdown, including `worker.postStopDelaySeconds` | `120` |
128128
| `worker.fatalErrors` | Newline delimited strings which, when logged, should trigger a restart of the worker | *See [values.yaml](values.yaml)* |
129-
| `worker.updateStrategy` | `OnDelete` or `RollingUpdate` (requires Kubernetes >= 1.6) | `RollingUpdate` |
129+
| `worker.updateStrategy` | `OnDelete` or `RollingUpdate` (requires Kubernetes >= 1.7) | `RollingUpdate` |
130130
| `persistence.enabled` | Enable Concourse persistence using Persistent Volume Claims | `true` |
131131
| `persistence.worker.class` | Concourse Worker Persistent Volume Storage Class | `generic` |
132132
| `persistence.worker.accessMode` | Concourse Worker Persistent Volume Access Mode | `ReadWriteOnce` |

stable/concourse/templates/worker-statefulset.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ spec:
159159
- name: concourse-work-dir
160160
emptyDir: {}
161161
{{- end }}
162-
{{- if and (eq .Capabilities.KubeVersion.Major "1") (gt .Capabilities.KubeVersion.Minor "5") }}
162+
{{- if and (eq .Capabilities.KubeVersion.Major "1") (gt .Capabilities.KubeVersion.Minor "7") }}
163163
updateStrategy:
164164
type: {{ .Values.worker.updateStrategy }}
165165
{{- end }}

0 commit comments

Comments
 (0)