File tree 4 files changed +33
-2
lines changed
charts/caddy-ingress-controller
4 files changed +33
-2
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ home: https://github.com/caddyserver/ingress
4
4
description : A helm chart for the Caddy Kubernetes ingress controller
5
5
icon : https://caddyserver.com/resources/images/caddy-circle-lock.svg
6
6
type : application
7
- version : 1.2 .0
7
+ version : 1.3 .0
8
8
appVersion : " v0.2.1"
9
9
keywords :
10
10
- ingress-controller
Original file line number Diff line number Diff line change @@ -10,6 +10,9 @@ metadata:
10
10
{{- end }}
11
11
labels :
12
12
{{- include "caddy-ingress-controller.labels" . | nindent 4 }}
13
+ {{- with .Values.loadBalancer.labels }}
14
+ {{- toYaml . | nindent 4 }}
15
+ {{- end }}
13
16
spec :
14
17
type : " LoadBalancer"
15
18
{{- if (semverCompare "<= 1.24.0" .Capabilities.KubeVersion.Version) }}
Original file line number Diff line number Diff line change 68
68
"$id" : " #/properties/fullnameOverride" ,
69
69
"type" : " string"
70
70
},
71
+ "loadBalancer" : {
72
+ "$id" : " #/properties/loadBalancer" ,
73
+ "type" : " object" ,
74
+ "required" : [
75
+ " enabled"
76
+ ],
77
+ "properties" : {
78
+ "enabled" : {
79
+ "$id" : " #/properties/loadBalancer/properties/enabled" ,
80
+ "type" : " boolean"
81
+ },
82
+ "annotations" : {
83
+ "$id" : " #/properties/loadBalancer/properties/annotations" ,
84
+ "type" : " object" ,
85
+ "additionalProperties" : {
86
+ "type" : " string"
87
+ }
88
+ },
89
+ "labels" : {
90
+ "$id" : " #/properties/loadBalancer/properties/labels" ,
91
+ "type" : " object" ,
92
+ "additionalProperties" : {
93
+ "type" : " string"
94
+ }
95
+ }
96
+ }
97
+ },
71
98
"ingressController" : {
72
99
"$id" : " #/properties/ingressController" ,
73
100
"type" : " object" ,
Original file line number Diff line number Diff line change @@ -45,12 +45,13 @@ loadBalancer:
45
45
loadBalancerIP :
46
46
# Set to 'Local' to maintain the client's IP on inbound connections
47
47
externalTrafficPolicy :
48
- annotations :
48
+ annotations : {}
49
49
# service.beta.kubernetes.io/aws-load-balancer-type:
50
50
# service.beta.kubernetes.io/aws-load-balancer-nlb-target-type:
51
51
# service.beta.kubernetes.io/aws-load-balancer-scheme:
52
52
# service.beta.kubernetes.io/aws-load-balancer-eip-allocations:
53
53
# service.beta.kubernetes.io/aws-load-balancer-subnets:
54
+ labels : {}
54
55
55
56
service :
56
57
# Set to 'Local' to maintain the client's IP on inbound connections
You can’t perform that action at this time.
0 commit comments