diff --git a/stable/gocd/CHANGELOG.md b/stable/gocd/CHANGELOG.md index caf95041e3..889d6a0c28 100644 --- a/stable/gocd/CHANGELOG.md +++ b/stable/gocd/CHANGELOG.md @@ -1,9 +1,20 @@ +### 1.12.0 + +* [fa4bef2](https://github.com/kubernetes/charts/commit/fa4bef2): + +- Update API versions of Deployment and RBAC resources + ### 1.11.0 + * [8207b8c](https://github.com/kubernetes/charts/commit/8207b8c): + - Bump up GoCD Version to 19.5.0 ### 1.10.0 + * [554019b](https://github.com/kubernetes/charts/commit/554019b): + - Bump up GoCD Version to 19.4.0 + ### 1.9.1 - Add support for Deployment and Pod annotations. @@ -173,7 +184,7 @@ - Updated post install script * From GoCD version 18.8.0 pipeline created using api is already in unpaused state - + ### 1.3.6 * [b7d596e](https://github.com/helm/charts/pull/7476/commits/b7d596e): Fixed role configuration instructions in README file. diff --git a/stable/gocd/Chart.yaml b/stable/gocd/Chart.yaml index c519fa05c0..b90afd0825 100644 --- a/stable/gocd/Chart.yaml +++ b/stable/gocd/Chart.yaml @@ -1,7 +1,7 @@ apiVersion: v1 name: gocd home: https://www.gocd.org/ -version: 1.11.0 +version: 1.12.0 appVersion: 19.5.0 description: GoCD is an open-source continuous delivery server to model and visualize complex workflows with ease. icon: https://gocd.github.io/assets/images/go-icon-black-192x192.png diff --git a/stable/gocd/README.md b/stable/gocd/README.md index 2f5d7a33e9..d279a744e5 100644 --- a/stable/gocd/README.md +++ b/stable/gocd/README.md @@ -12,7 +12,7 @@ To quickly build your first pipeline while learning key GoCD concepts, visit the ## Prerequisites -- Kubernetes 1.8+ with Beta APIs enabled +- Kubernetes 1.13+ with Beta APIs enabled - PV provisioner support in the underlying infrastructure - LoadBalancer support or Ingress Controller - Ensure that the service account used for starting tiller has enough permissions to create a role. diff --git a/stable/gocd/templates/gocd-agent-deployment.yaml b/stable/gocd/templates/gocd-agent-deployment.yaml index 0f10bde924..36efd66ef5 100644 --- a/stable/gocd/templates/gocd-agent-deployment.yaml +++ b/stable/gocd/templates/gocd-agent-deployment.yaml @@ -1,4 +1,4 @@ -apiVersion: apps/v1beta2 +apiVersion: apps/v1 kind: Deployment metadata: name: {{ template "gocd.fullname" . }}-agent diff --git a/stable/gocd/templates/gocd-server-deployment.yaml b/stable/gocd/templates/gocd-server-deployment.yaml index 192d57f68b..ed87a957f0 100644 --- a/stable/gocd/templates/gocd-server-deployment.yaml +++ b/stable/gocd/templates/gocd-server-deployment.yaml @@ -1,5 +1,5 @@ {{- if .Values.server.enabled }} -apiVersion: apps/v1beta2 +apiVersion: apps/v1 kind: Deployment metadata: name: {{ template "gocd.fullname" . }}-server diff --git a/stable/gocd/templates/ingress.yaml b/stable/gocd/templates/ingress.yaml index 52206b52bd..aef48da5da 100644 --- a/stable/gocd/templates/ingress.yaml +++ b/stable/gocd/templates/ingress.yaml @@ -36,4 +36,4 @@ spec: {{ toYaml .Values.server.ingress.tls | indent 4 }} {{- end -}} {{- end -}} -{{- end -}} \ No newline at end of file +{{- end -}} diff --git a/stable/gocd/values.yaml b/stable/gocd/values.yaml index af996626a9..5d1eb91c63 100644 --- a/stable/gocd/values.yaml +++ b/stable/gocd/values.yaml @@ -6,7 +6,7 @@ rbac: # Specifies whether rbac resources must be created. create: true # The API version to use while creating the rbac resources. Use `kubectl api-versions | grep rbac` to find which abi versions are supported for your cluster. - apiVersion: v1beta1 + apiVersion: v1 # Create a cluster role binding with the existing role, do not create a new one. If left blank, a new cluster role is created. roleRef: