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 1
1
name : amazee-ai
2
2
description : A Helm Chart for amazee.ai with independent frontend and backend services
3
- version : 0.0.10
3
+ version : 0.0.11
4
4
apiVersion : v2
5
- appVersion : " 0.0.10 "
5
+ appVersion : " 0.0.11 "
6
6
keywords :
7
7
- amazee.ai
8
8
- frontend
@@ -15,10 +15,10 @@ dependencies:
15
15
repository : https://charts.bitnami.com/bitnami
16
16
condition : postgresql.enabled
17
17
- name : backend
18
- version : 0.0.10
18
+ version : 0.0.11
19
19
condition : backend.enabled
20
20
dependsOn :
21
21
- postgresql
22
22
- name : frontend
23
- version : 0.0.10
23
+ version : 0.0.11
24
24
condition : frontend.enabled
Original file line number Diff line number Diff line change 1
1
name : backend
2
2
description : Backend API service for amazee.ai
3
- version : 0.0.10
3
+ version : 0.0.11
4
4
apiVersion : v2
5
- appVersion : " 0.0.10 "
5
+ appVersion : " 0.0.11 "
6
6
keywords :
7
7
- api
8
8
- fastapi
Original file line number Diff line number Diff line change 1
1
name : frontend
2
2
description : Frontend web application for amazee.ai
3
- version : 0.0.10
3
+ version : 0.0.11
4
4
apiVersion : v2
5
- appVersion : " 0.0.10 "
5
+ appVersion : " 0.0.11 "
6
6
keywords :
7
7
- frontend
8
8
- 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 -}}
3
2
apiVersion : networking.k8s.io/v1
4
3
kind : Ingress
5
4
metadata :
6
5
name : {{ include "amazee-ai.fullname" . }}-frontend
7
6
namespace : {{ .Release.Namespace }}
8
7
labels :
9
8
{{- include "amazee-ai.labels" . | nindent 4 }}
10
- {{- with $amazeeAi .frontendIngress.annotations }}
9
+ {{- with .Values .frontendIngress.annotations }}
11
10
annotations :
12
11
{{- toYaml . | nindent 4 }}
13
12
{{- end }}
14
13
spec :
15
- {{- if $amazeeAi .frontendIngress.className }}
16
- ingressClassName : {{ $amazeeAi .frontendIngress.className }}
14
+ {{- if .Values .frontendIngress.className }}
15
+ ingressClassName : {{ .Values .frontendIngress.className }}
17
16
{{- end }}
18
- {{- if $amazeeAi .frontendIngress.tls }}
17
+ {{- if .Values .frontendIngress.tls }}
19
18
tls :
20
- {{- range $amazeeAi .frontendIngress.tls }}
19
+ {{- range .Values .frontendIngress.tls }}
21
20
- hosts :
22
21
{{- range .hosts }}
23
22
- {{ . | quote }}
26
25
{{- end }}
27
26
{{- end }}
28
27
rules :
29
- {{- range $amazeeAi .frontendIngress.hosts }}
28
+ {{- range .Values .frontendIngress.hosts }}
30
29
- host : {{ .host | quote }}
31
30
http :
32
31
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 -}}
3
2
apiVersion : networking.k8s.io/v1
4
3
kind : Ingress
5
4
metadata :
6
5
name : {{ include "amazee-ai.fullname" . }}-backend
7
6
namespace : {{ .Release.Namespace }}
8
7
labels :
9
8
{{- include "amazee-ai.labels" . | nindent 4 }}
10
- {{- with $amazeeAi .ingress.annotations }}
9
+ {{- with .Values .ingress.annotations }}
11
10
annotations :
12
11
{{- toYaml . | nindent 4 }}
13
12
{{- end }}
14
13
spec :
15
- {{- if $amazeeAi .ingress.className }}
16
- ingressClassName : {{ $amazeeAi .ingress.className }}
14
+ {{- if .Values .ingress.className }}
15
+ ingressClassName : {{ .Values .ingress.className }}
17
16
{{- end }}
18
- {{- if $amazeeAi .ingress.tls }}
17
+ {{- if .Values .ingress.tls }}
19
18
tls :
20
- {{- range $amazeeAi .ingress.tls }}
19
+ {{- range .Values .ingress.tls }}
21
20
- hosts :
22
21
{{- range .hosts }}
23
22
- {{ . | quote }}
26
25
{{- end }}
27
26
{{- end }}
28
27
rules :
29
- {{- range $amazeeAi .ingress.hosts }}
28
+ {{- range .Values .ingress.hosts }}
30
29
- host : {{ .host | quote }}
31
30
http :
32
31
paths :
You can’t perform that action at this time.
0 commit comments