Skip to content

Commit 609a98f

Browse files
authored
merge(#974): updated chart 0.8.5->0.9.0
2 parents 3e060f8 + 50e3fa1 commit 609a98f

File tree

3 files changed

+14
-8
lines changed

3 files changed

+14
-8
lines changed

charts/cloudinfo/Chart.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
apiVersion: v1
22
description: Cloud instance type and price information as a service
33
name: cloudinfo
4-
version: 0.8.5
4+
version: 0.9.0
55

6-
appVersion: "0.17.2"
6+
appVersion: "0.18.0"
77

88
home: https://banzaicloud.com
99

charts/cloudinfo/templates/ingress.yaml

+7-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{{- if .Values.frontend.ingress.enabled -}}
22
{{- $fullName := include "cloudinfo.frontend.fullname" . -}}
3-
apiVersion: extensions/v1beta1
3+
apiVersion: networking.k8s.io/v1
44
kind: Ingress
55
metadata:
66
name: {{ $fullName }}
@@ -15,6 +15,7 @@ metadata:
1515
{{- toYaml . | nindent 4 }}
1616
{{- end }}
1717
spec:
18+
ingressClassName: {{ .Values.frontend.ingress.ingressClassName }}
1819
{{- if .Values.frontend.ingress.tls }}
1920
tls:
2021
{{- range .Values.frontend.ingress.tls }}
@@ -32,8 +33,11 @@ spec:
3233
http:
3334
paths:
3435
- path: /{{ rest $url | join "/" }}
36+
pathType: {{ .Values.frontend.ingress.pathType }}
3537
backend:
36-
serviceName: {{ $fullName }}
37-
servicePort: http
38+
service:
39+
name: {{ $fullName }}
40+
port:
41+
number: {{ .Values.frontend.service.port }}
3842
{{- end }}
3943
{{- end }}

charts/cloudinfo/values.yaml

+5-3
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,15 @@ serviceAccountName: ""
55

66
image:
77
repository: ghcr.io/banzaicloud/cloudinfo
8-
tag: 0.17.2
8+
tag: 0.18.0
99
pullPolicy: IfNotPresent
1010

1111
frontend:
1212
replicaCount: 1
1313

1414
image: {}
1515
# repository: ghcr.io/banzaicloud/cloudinfo
16-
# tag: 0.17.2
16+
# tag: 0.18.0
1717
# pullPolicy: IfNotPresent
1818
#
1919
deployment:
@@ -26,6 +26,7 @@ frontend:
2626

2727
ingress:
2828
enabled: false
29+
ingressClassName: traefik
2930
annotations: {}
3031
# kubernetes.io/ingress.class: nginx
3132
# kubernetes.io/tls-acme: "true"
@@ -36,6 +37,7 @@ frontend:
3637
# - secretName: chart-example-tls
3738
# hosts:
3839
# - chart-example.local
40+
pathType: Prefix
3941

4042
resources: {}
4143
# We usually recommend not to specify default resources and to leave this as a conscious
@@ -60,7 +62,7 @@ scraper:
6062

6163
image: {}
6264
# repository: ghcr.io/banzaicloud/cloudinfo
63-
# tag: 0.17.2
65+
# tag: 0.18.0
6466
# pullPolicy: IfNotPresent
6567
#
6668

0 commit comments

Comments
 (0)