File tree 3 files changed +14
-8
lines changed
3 files changed +14
-8
lines changed Original file line number Diff line number Diff line change 1
1
apiVersion : v1
2
2
description : Cloud instance type and price information as a service
3
3
name : cloudinfo
4
- version : 0.8.5
4
+ version : 0.9.0
5
5
6
- appVersion : " 0.17.2 "
6
+ appVersion : " 0.18.0 "
7
7
8
8
home : https://banzaicloud.com
9
9
Original file line number Diff line number Diff line change 1
1
{{- if .Values.frontend.ingress.enabled -}}
2
2
{{- $fullName := include "cloudinfo.frontend.fullname" . -}}
3
- apiVersion : extensions/v1beta1
3
+ apiVersion : networking.k8s.io/v1
4
4
kind : Ingress
5
5
metadata :
6
6
name : {{ $fullName }}
@@ -15,6 +15,7 @@ metadata:
15
15
{{- toYaml . | nindent 4 }}
16
16
{{- end }}
17
17
spec :
18
+ ingressClassName : {{ .Values.frontend.ingress.ingressClassName }}
18
19
{{- if .Values.frontend.ingress.tls }}
19
20
tls :
20
21
{{- range .Values.frontend.ingress.tls }}
32
33
http :
33
34
paths :
34
35
- path : /{{ rest $url | join "/" }}
36
+ pathType : {{ .Values.frontend.ingress.pathType }}
35
37
backend :
36
- serviceName : {{ $fullName }}
37
- servicePort : http
38
+ service :
39
+ name : {{ $fullName }}
40
+ port :
41
+ number : {{ .Values.frontend.service.port }}
38
42
{{- end }}
39
43
{{- end }}
Original file line number Diff line number Diff line change @@ -5,15 +5,15 @@ serviceAccountName: ""
5
5
6
6
image :
7
7
repository : ghcr.io/banzaicloud/cloudinfo
8
- tag : 0.17.2
8
+ tag : 0.18.0
9
9
pullPolicy : IfNotPresent
10
10
11
11
frontend :
12
12
replicaCount : 1
13
13
14
14
image : {}
15
15
# repository: ghcr.io/banzaicloud/cloudinfo
16
- # tag: 0.17.2
16
+ # tag: 0.18.0
17
17
# pullPolicy: IfNotPresent
18
18
#
19
19
deployment :
@@ -26,6 +26,7 @@ frontend:
26
26
27
27
ingress :
28
28
enabled : false
29
+ ingressClassName : traefik
29
30
annotations : {}
30
31
# kubernetes.io/ingress.class: nginx
31
32
# kubernetes.io/tls-acme: "true"
@@ -36,6 +37,7 @@ frontend:
36
37
# - secretName: chart-example-tls
37
38
# hosts:
38
39
# - chart-example.local
40
+ pathType : Prefix
39
41
40
42
resources : {}
41
43
# We usually recommend not to specify default resources and to leave this as a conscious
@@ -60,7 +62,7 @@ scraper:
60
62
61
63
image : {}
62
64
# repository: ghcr.io/banzaicloud/cloudinfo
63
- # tag: 0.17.2
65
+ # tag: 0.18.0
64
66
# pullPolicy: IfNotPresent
65
67
#
66
68
You can’t perform that action at this time.
0 commit comments