diff --git a/assets/auto-deploy-app/Chart.yaml b/assets/auto-deploy-app/Chart.yaml index 47d92eaff4c94d0e1b6e3196fc1e0f7cc0e3ecb8..b61699305714898614f83cadbd6d96fa4079f824 100644 --- a/assets/auto-deploy-app/Chart.yaml +++ b/assets/auto-deploy-app/Chart.yaml @@ -1,5 +1,5 @@ apiVersion: v1 description: GitLab's Auto-deploy Helm Chart name: auto-deploy-app -version: 2.16.0 +version: 2.16.1 icon: https://gitlab.com/gitlab-com/gitlab-artwork/raw/master/logo/logo-square.png diff --git a/assets/auto-deploy-app/README.md b/assets/auto-deploy-app/README.md index df7241f7c215fb5db2a787da282dd979bfa0a07f..0c6a5f087b54257955dfa74c1aa7974dd306bbeb 100644 --- a/assets/auto-deploy-app/README.md +++ b/assets/auto-deploy-app/README.md @@ -23,6 +23,7 @@ | podAnnotations | Pod annotations | `{}` | | nodeSelector | Node labels for pod assignment | `{}` | | tolerations | List of node taints to tolerate | `[]` | +| terminationGracePeriodSeconds | The amount of time in seconds an application is given to terminate | `30` | | initContainers | Containers that are run before the app containers are started. | `[]` | | affinity | Node affinity for pod assignment | `{}` | | application.track | | `stable` | diff --git a/assets/auto-deploy-app/templates/deployment.yaml b/assets/auto-deploy-app/templates/deployment.yaml index 32bcd0e27ada4e6d07224d163520ede55e569a15..06cbc78267ed588f04b350fcf8d7dbbc121ed1ee 100644 --- a/assets/auto-deploy-app/templates/deployment.yaml +++ b/assets/auto-deploy-app/templates/deployment.yaml @@ -57,6 +57,7 @@ spec: initContainers: {{ toYaml .Values.initContainers | indent 8 }} {{- end }} + terminationGracePeriodSeconds: {{ .Values.terminationGracePeriodSeconds }} containers: - name: {{ .Chart.Name }} image: {{ template "imagename" . }}