File tree Expand file tree Collapse file tree 3 files changed +9
-1
lines changed Expand file tree Collapse file tree 3 files changed +9
-1
lines changed Original file line number Diff line number Diff line change @@ -39,3 +39,4 @@ The chart should dump its version and appVersion in the Chart.yaml file every re
3939| ` service.loadBalancerIP ` | Load balancer IP (Only if service.type is LoadBalancer) | ` "" ` |
4040| ` ingress.enabled ` | Ingress resource creation | ` false ` |
4141| ` ingress.hostname ` | Ingress resource hostname | ` "pgadmin4.local" ` |
42+ | ` ingress.tlsSecret ` | Ingress tls secret name | ` "" ` |
Original file line number Diff line number Diff line change 2121 name : http
2222 path : /
2323 pathType : Prefix
24+ {{- if .Values.ingress.tlsSecret }}
25+ tls :
26+ - hosts :
27+ - {{ tpl .Values.ingress.hostname . }}
28+ secretName : {{ .Values.ingress.tlsSecret }}
29+ {{- end }}
2430{{- end }}
Original file line number Diff line number Diff line change @@ -98,7 +98,8 @@ ingress:
9898 enabled : false
9999 hostname : pgadmin4.local
100100 annotations : {}
101-
101+ # If set, enables TLS configuration in the Ingress resource.
102+ tlsSecret : " "
102103startupProbe :
103104 enabled : false
104105 httpGet :
You can’t perform that action at this time.
0 commit comments