Skip to content

Commit 1757953

Browse files
committed
chore: bump version and appVersion for helm charts
- Updated version and appVersion to 0.0.11 for the main chart, backend, and frontend charts. - Adjusted ingress templates to use direct variable references for improved clarity.
1 parent f77d327 commit 1757953

File tree

5 files changed

+22
-24
lines changed

5 files changed

+22
-24
lines changed

helm/Chart.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
name: amazee-ai
22
description: A Helm Chart for amazee.ai with independent frontend and backend services
3-
version: 0.0.10
3+
version: 0.0.11
44
apiVersion: v2
5-
appVersion: "0.0.10"
5+
appVersion: "0.0.11"
66
keywords:
77
- amazee.ai
88
- frontend
@@ -15,10 +15,10 @@ dependencies:
1515
repository: https://charts.bitnami.com/bitnami
1616
condition: postgresql.enabled
1717
- name: backend
18-
version: 0.0.10
18+
version: 0.0.11
1919
condition: backend.enabled
2020
dependsOn:
2121
- postgresql
2222
- name: frontend
23-
version: 0.0.10
23+
version: 0.0.11
2424
condition: frontend.enabled

helm/charts/backend/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
name: backend
22
description: Backend API service for amazee.ai
3-
version: 0.0.10
3+
version: 0.0.11
44
apiVersion: v2
5-
appVersion: "0.0.10"
5+
appVersion: "0.0.11"
66
keywords:
77
- api
88
- fastapi

helm/charts/frontend/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
name: frontend
22
description: Frontend web application for amazee.ai
3-
version: 0.0.10
3+
version: 0.0.11
44
apiVersion: v2
5-
appVersion: "0.0.10"
5+
appVersion: "0.0.11"
66
keywords:
77
- frontend
88
- nextjs

helm/templates/frontend-ingress.yaml

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,22 @@
1-
{{- $amazeeAi := index .Values "amazee-ai" -}}
2-
{{- if $amazeeAi.frontendIngress.enabled -}}
1+
{{- if .Values.frontendIngress.enabled -}}
32
apiVersion: networking.k8s.io/v1
43
kind: Ingress
54
metadata:
65
name: {{ include "amazee-ai.fullname" . }}-frontend
76
namespace: {{ .Release.Namespace }}
87
labels:
98
{{- include "amazee-ai.labels" . | nindent 4 }}
10-
{{- with $amazeeAi.frontendIngress.annotations }}
9+
{{- with .Values.frontendIngress.annotations }}
1110
annotations:
1211
{{- toYaml . | nindent 4 }}
1312
{{- end }}
1413
spec:
15-
{{- if $amazeeAi.frontendIngress.className }}
16-
ingressClassName: {{ $amazeeAi.frontendIngress.className }}
14+
{{- if .Values.frontendIngress.className }}
15+
ingressClassName: {{ .Values.frontendIngress.className }}
1716
{{- end }}
18-
{{- if $amazeeAi.frontendIngress.tls }}
17+
{{- if .Values.frontendIngress.tls }}
1918
tls:
20-
{{- range $amazeeAi.frontendIngress.tls }}
19+
{{- range .Values.frontendIngress.tls }}
2120
- hosts:
2221
{{- range .hosts }}
2322
- {{ . | quote }}
@@ -26,7 +25,7 @@ spec:
2625
{{- end }}
2726
{{- end }}
2827
rules:
29-
{{- range $amazeeAi.frontendIngress.hosts }}
28+
{{- range .Values.frontendIngress.hosts }}
3029
- host: {{ .host | quote }}
3130
http:
3231
paths:

helm/templates/ingress.yaml

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,22 @@
1-
{{- $amazeeAi := index .Values "amazee-ai" -}}
2-
{{- if $amazeeAi.ingress.enabled -}}
1+
{{- if .Values.ingress.enabled -}}
32
apiVersion: networking.k8s.io/v1
43
kind: Ingress
54
metadata:
65
name: {{ include "amazee-ai.fullname" . }}-backend
76
namespace: {{ .Release.Namespace }}
87
labels:
98
{{- include "amazee-ai.labels" . | nindent 4 }}
10-
{{- with $amazeeAi.ingress.annotations }}
9+
{{- with .Values.ingress.annotations }}
1110
annotations:
1211
{{- toYaml . | nindent 4 }}
1312
{{- end }}
1413
spec:
15-
{{- if $amazeeAi.ingress.className }}
16-
ingressClassName: {{ $amazeeAi.ingress.className }}
14+
{{- if .Values.ingress.className }}
15+
ingressClassName: {{ .Values.ingress.className }}
1716
{{- end }}
18-
{{- if $amazeeAi.ingress.tls }}
17+
{{- if .Values.ingress.tls }}
1918
tls:
20-
{{- range $amazeeAi.ingress.tls }}
19+
{{- range .Values.ingress.tls }}
2120
- hosts:
2221
{{- range .hosts }}
2322
- {{ . | quote }}
@@ -26,7 +25,7 @@ spec:
2625
{{- end }}
2726
{{- end }}
2827
rules:
29-
{{- range $amazeeAi.ingress.hosts }}
28+
{{- range .Values.ingress.hosts }}
3029
- host: {{ .host | quote }}
3130
http:
3231
paths:

0 commit comments

Comments
 (0)