diff --git a/stable/concourse/Chart.yaml b/stable/concourse/Chart.yaml index 4380f56ba2..50cc57f75f 100644 --- a/stable/concourse/Chart.yaml +++ b/stable/concourse/Chart.yaml @@ -1,6 +1,6 @@ name: concourse -version: 1.1.5 -appVersion: 3.9.0 +version: 1.2.0 +appVersion: 3.10.0 description: Concourse is a simple and scalable CI system. icon: https://avatars1.githubusercontent.com/u/7809479 keywords: diff --git a/stable/concourse/README.md b/stable/concourse/README.md index 83558b505c..dbc66aaf87 100644 --- a/stable/concourse/README.md +++ b/stable/concourse/README.md @@ -68,7 +68,7 @@ The following table lists the configurable parameters of the Concourse chart and | Parameter | Description | Default | | ----------------------- | ---------------------------------- | ---------------------------------------------------------- | | `image` | Concourse image | `concourse/concourse` | -| `imageTag` | Concourse image version | `3.9.0` | +| `imageTag` | Concourse image version | `3.10.0` | | `imagePullPolicy` | Concourse image pull policy | `IfNotPresent` | | `concourse.externalURL` | URL used to reach any ATC from the outside world | `nil` | | `concourse.atcPort` | Concourse ATC listen port | `8080` | diff --git a/stable/concourse/templates/worker-statefulset.yaml b/stable/concourse/templates/worker-statefulset.yaml index 15b8095abd..b76a7552b6 100644 --- a/stable/concourse/templates/worker-statefulset.yaml +++ b/stable/concourse/templates/worker-statefulset.yaml @@ -77,9 +77,13 @@ spec: done env: - name: CONCOURSE_TSA_HOST + {{- if semverCompare "^3.10" .Values.imageTag }} + value: "{{ template "concourse.web.fullname" . }}:{{ .Values.concourse.tsaPort}}" + {{- else }} value: {{ template "concourse.web.fullname" . }} - name: CONCOURSE_TSA_PORT value: {{ .Values.concourse.tsaPort | quote }} + {{- end }} - name: CONCOURSE_GARDEN_DOCKER_REGISTRY value: {{ .Values.concourse.dockerRegistry | quote }} - name: CONCOURSE_GARDEN_INSECURE_DOCKER_REGISTRY diff --git a/stable/concourse/values.yaml b/stable/concourse/values.yaml index 5c45044aca..e31b00a272 100644 --- a/stable/concourse/values.yaml +++ b/stable/concourse/values.yaml @@ -13,7 +13,7 @@ image: concourse/concourse ## Concourse image version. ## ref: https://hub.docker.com/r/concourse/concourse/tags/ ## -imageTag: "3.9.0" +imageTag: "3.10.0" ## Specify a imagePullPolicy: 'Always' if imageTag is 'latest', else set to 'IfNotPresent'. ## ref: https://kubernetes.io/docs/user-guide/images/#pre-pulling-images