Fix for version handling with stringe vs semver (#4597)

* Fix for version handling with stringe vs semver

See #3002 for more details

* Include pre-releases in the semver ranges

This is important when testing against alpha and beta builds of
Kubernetes along with environments that use pre-releases to denote
things other than pre-releases (e.g., gke denotes the environment
with a pre-releases)

* Incrementing the chart version
This commit is contained in:
Matt Farina
2018-04-03 09:17:07 -07:00
committed by k8s-ci-robot
parent d13f1f1d4d
commit fb96d3f6e3
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -1,5 +1,5 @@
name: concourse
version: 1.1.3
version: 1.1.4
appVersion: 3.9.0
description: Concourse is a simple and scalable CI system.
icon: https://avatars1.githubusercontent.com/u/7809479
@@ -153,7 +153,7 @@ spec:
- name: concourse-work-dir
emptyDir: {}
{{- end }}
{{- if and (eq .Capabilities.KubeVersion.Major "1") (ge .Capabilities.KubeVersion.Minor "7") }}
{{- if semverCompare "^1.7-0" .Capabilities.KubeVersion.GitVersion }}
updateStrategy:
type: {{ .Values.worker.updateStrategy }}
{{- end }}