File tree Expand file tree Collapse file tree 5 files changed +22
-24
lines changed
Expand file tree Collapse file tree 5 files changed +22
-24
lines changed Original file line number Diff line number Diff line change 11name : amazee-ai
22description : A Helm Chart for amazee.ai with independent frontend and backend services
3- version : 0.0.10
3+ version : 0.0.11
44apiVersion : v2
5- appVersion : " 0.0.10 "
5+ appVersion : " 0.0.11 "
66keywords :
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
Original file line number Diff line number Diff line change 11name : backend
22description : Backend API service for amazee.ai
3- version : 0.0.10
3+ version : 0.0.11
44apiVersion : v2
5- appVersion : " 0.0.10 "
5+ appVersion : " 0.0.11 "
66keywords :
77 - api
88 - fastapi
Original file line number Diff line number Diff line change 11name : frontend
22description : Frontend web application for amazee.ai
3- version : 0.0.10
3+ version : 0.0.11
44apiVersion : v2
5- appVersion : " 0.0.10 "
5+ appVersion : " 0.0.11 "
66keywords :
77 - frontend
88 - nextjs
Original file line number Diff line number Diff line change 1- {{- $amazeeAi := index .Values "amazee-ai" -}}
2- {{- if $amazeeAi.frontendIngress.enabled -}}
1+ {{- if .Values.frontendIngress.enabled -}}
32apiVersion : networking.k8s.io/v1
43kind : Ingress
54metadata :
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 }}
1413spec :
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 }}
2625 {{- end }}
2726 {{- end }}
2827 rules :
29- {{- range $amazeeAi .frontendIngress.hosts }}
28+ {{- range .Values .frontendIngress.hosts }}
3029 - host : {{ .host | quote }}
3130 http :
3231 paths :
Original file line number Diff line number Diff line change 1- {{- $amazeeAi := index .Values "amazee-ai" -}}
2- {{- if $amazeeAi.ingress.enabled -}}
1+ {{- if .Values.ingress.enabled -}}
32apiVersion : networking.k8s.io/v1
43kind : Ingress
54metadata :
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 }}
1413spec :
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 }}
2625 {{- end }}
2726 {{- end }}
2827 rules :
29- {{- range $amazeeAi .ingress.hosts }}
28+ {{- range .Values .ingress.hosts }}
3029 - host : {{ .host | quote }}
3130 http :
3231 paths :
You can’t perform that action at this time.
0 commit comments