File tree Expand file tree Collapse file tree 5 files changed +27
-1
lines changed Expand file tree Collapse file tree 5 files changed +27
-1
lines changed Original file line number Diff line number Diff line change 9
9
# API Config
10
10
api :
11
11
hostname : dev.calltelemetry.com
12
+ # Example of API ingress annotations
13
+ ingress :
14
+ annotations : {}
15
+ haproxy.org/load-balance : " roundrobin"
12
16
13
17
# Admin configuration
14
18
admin :
@@ -21,6 +25,11 @@ admin:
21
25
- name : ssh
22
26
port : 3022
23
27
hostname : dev.calltelemetry.com
28
+ # Example of overriding default ingress annotations
29
+ ingress :
30
+ annotations :
31
+ haproxy.org/load-balance : " roundrobin"
32
+ # Add any additional annotations as needed
24
33
25
34
26
35
# SFTP Configuration
Original file line number Diff line number Diff line change 9
9
# API Config
10
10
api :
11
11
hostname : prod.calltelemetry.com
12
+ # Example of API ingress annotations
13
+ ingress :
14
+ annotations : {}
15
+ haproxy.org/load-balance : " roundrobin"
12
16
13
17
# Admin configuration
14
18
admin :
21
25
- name : ssh
22
26
port : 3022
23
27
hostname : prod.calltelemetry.com
28
+ ingress :
29
+ annotations :
30
+ haproxy.org/load-balance : " roundrobin"
24
31
25
32
26
33
# SFTP Configuration
Original file line number Diff line number Diff line change @@ -4,7 +4,9 @@ metadata:
4
4
name : admin-ingress
5
5
namespace : {{ .Release.Namespace }}
6
6
annotations :
7
- haproxy.org/load-balance : " roundrobin"
7
+ {{- with .Values.admin.ingress.annotations }}
8
+ {{- toYaml . | nindent 4 }}
9
+ {{- end }}
8
10
spec :
9
11
ingressClassName : {{ .Values.ingressClassName }}
10
12
rules :
Original file line number Diff line number Diff line change @@ -4,6 +4,9 @@ metadata:
4
4
name : api-ingress
5
5
namespace : {{ .Release.Namespace }}
6
6
annotations :
7
+ {{- with .Values.api.ingress.annotations }}
8
+ {{- toYaml . | nindent 4 }}
9
+ {{- end }}
7
10
spec :
8
11
ingressClassName : {{ .Values.ingressClassName }}
9
12
rules :
Original file line number Diff line number Diff line change 19
19
- name : curri-api
20
20
port : 4080
21
21
hostname : dev.calltelemetry.com
22
+ ingress :
23
+ annotations : {}
22
24
23
25
admin :
24
26
image : calltelemetry/web
36
38
port : 3022
37
39
hostname : dev.calltelemetry.com
38
40
api_worker : false
41
+ ingress :
42
+ annotations :
43
+ haproxy.org/load-balance : " roundrobin"
39
44
40
45
sftp :
41
46
enabled : true
You can’t perform that action at this time.
0 commit comments