File tree Expand file tree Collapse file tree 10 files changed +17
-4
lines changed Expand file tree Collapse file tree 10 files changed +17
-4
lines changed Original file line number Diff line number Diff line change @@ -4,8 +4,8 @@ set -o errexit
44set -o nounset
55set -o pipefail
66
7- readonly CT_VERSION=v3.0.0-beta.1
8- readonly KIND_VERSION=v0.6.1
7+ readonly CT_VERSION=latest
8+ readonly KIND_VERSION=v0.9.0
99readonly CLUSTER_NAME=chart-testing
1010readonly REPO_ROOT=" ${REPO_ROOT:- $(git rev-parse --show-toplevel)} "
1111
Original file line number Diff line number Diff line change 1414
1515apiVersion : v1
1616name : haproxy
17- version : 1.0.1
17+ version : 1.1.0
1818kubeVersion : " >=1.12.0-0"
1919description : A Helm chart for HAProxy on Kubernetes
2020keywords :
Original file line number Diff line number Diff line change 4747 {{- end }}
4848 spec :
4949 serviceAccountName : {{ include "haproxy.serviceAccountName" . }}
50+ terminationGracePeriodSeconds : {{ .Values.terminationGracePeriodSeconds }}
5051 {{- if $useHostNetwork }}
5152 hostNetwork : true
5253 {{- end }}
Original file line number Diff line number Diff line change 4646 {{- end }}
4747 spec :
4848 serviceAccountName : {{ include "haproxy.serviceAccountName" . }}
49+ terminationGracePeriodSeconds : {{ .Values.terminationGracePeriodSeconds }}
4950 securityContext :
5051 {{- toYaml .Values.podSecurityContext | nindent 8 }}
5152{{- if .Values.dnsConfig }}
Original file line number Diff line number Diff line change @@ -55,6 +55,10 @@ initContainers: []
5555# securityContext:
5656# privileged: true
5757
58+ # # Pod termination grace period
59+ # # ref: https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/
60+ terminationGracePeriodSeconds : 60
61+
5862# # Private Registry configuration
5963# # ref: https://kubernetes.io/docs/tasks/configure-pod-container/pull-image-private-registry/
6064imageCredentials :
Original file line number Diff line number Diff line change 1414
1515apiVersion : v1
1616name : kubernetes-ingress
17- version : 1.7 .0
17+ version : 1.8 .0
1818kubeVersion : " >=1.12.0-0"
1919description : A Helm chart for HAProxy Kubernetes Ingress Controller
2020keywords :
Original file line number Diff line number Diff line change 5353 {{- end }}
5454 spec :
5555 serviceAccountName : {{ template "kubernetes-ingress.serviceAccountName" . }}
56+ terminationGracePeriodSeconds : {{ .Values.controller.terminationGracePeriodSeconds }}
5657 {{- if $useHostNetwork }}
5758 hostNetwork : true
5859 {{- end }}
Original file line number Diff line number Diff line change 5252 {{- end }}
5353 spec :
5454 serviceAccountName : {{ template "kubernetes-ingress.serviceAccountName" . }}
55+ terminationGracePeriodSeconds : {{ .Values.controller.terminationGracePeriodSeconds }}
5556{{- if .Values.controller.dnsConfig }}
5657 dnsConfig :
5758{{ toYaml .Values.controller.dnsConfig | indent 8 }}
Original file line number Diff line number Diff line change 7575 {{- toYaml . | nindent 8 }}
7676 {{- end }}
7777 serviceAccountName : {{ template "kubernetes-ingress.defaultBackend.serviceAccountName" . }}
78+ terminationGracePeriodSeconds : 60
7879 {{- with .Values.defaultBackend.tolerations }}
7980 tolerations :
8081 {{- toYaml . | nindent 8 }}
Original file line number Diff line number Diff line change @@ -68,6 +68,10 @@ controller:
6868 # securityContext:
6969 # privileged: true
7070
71+ # # Pod termination grace period
72+ # # ref: https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/
73+ terminationGracePeriodSeconds : 60
74+
7175 # # Private Registry configuration
7276 # # ref: https://kubernetes.io/docs/tasks/configure-pod-container/pull-image-private-registry/
7377 imageCredentials :
You can’t perform that action at this time.
0 commit comments