File tree 4 files changed +7
-1
lines changed
4 files changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ name: gradle-cache
3
3
description : |-
4
4
Helm chart to deploy [gradle-cache](https://docs.gradle.com/build-cache-node/).
5
5
type : application
6
- version : 0.1.3
6
+ version : 0.1.4
7
7
appVersion : " 11.0"
8
8
home : https://github.com/slamdev/helm-charts/tree/master/charts/gradle-cache
9
9
icon : https://gradle.org/icon/favicon-32x32.png
Original file line number Diff line number Diff line change @@ -31,6 +31,7 @@ Helm chart to deploy [gradle-cache](https://docs.gradle.com/build-cache-node/).
31
31
| ingress.enabled | bool | ` false ` | enables Ingress for gradle-cache |
32
32
| ingress.hosts | list | ` [] ` | ingress accepted hostnames |
33
33
| ingress.tls | list | ` [] ` | ingress TLS configuration |
34
+ | ingress.ingressClassName | string | ` "" ` | ingress name of the IngressClass cluster resource |
34
35
| livenessProbe.httpGet.path | string | ` "/" ` | path for liveness probe |
35
36
| livenessProbe.httpGet.port | string | ` "http" ` | port for liveness probe |
36
37
| nameOverride | string | ` "" ` | override name of the chart |
Original file line number Diff line number Diff line change @@ -19,6 +19,9 @@ metadata:
19
19
{{- toYaml . | nindent 4 }}
20
20
{{- end }}
21
21
spec :
22
+ {{- with .Values.ingress.ingressClassName }}
23
+ ingressClassName : {{ . | quote }}
24
+ {{- end }}
22
25
{{- if .Values.ingress.tls }}
23
26
tls :
24
27
{{- range .Values.ingress.tls }}
Original file line number Diff line number Diff line change @@ -86,6 +86,8 @@ ingress:
86
86
# - secretName: chart-example-tls
87
87
# hosts:
88
88
# - chart-example.local
89
+ # ingress.ingressClassName -- ingress name of the IngressClass cluster resource
90
+ ingressClassName : " "
89
91
90
92
# resources -- custom resource configuration
91
93
resources : {}
You can’t perform that action at this time.
0 commit comments