diff --git a/charts/keep/Chart.yaml b/charts/keep/Chart.yaml index bc656af..0cf0b6e 100644 --- a/charts/keep/Chart.yaml +++ b/charts/keep/Chart.yaml @@ -1,10 +1,10 @@ apiVersion: v2 name: keep -version: 0.1.6 +version: 0.1.7 description: Keep Helm Chart type: application icon: https://platform.keephq.dev/_next/image?url=%2Fkeep.png&w=48&q=75 -appVersion: 0.21.0 +appVersion: 0.23.0 deprecated: false annotations: app: keep diff --git a/charts/keep/templates/frontend-ingress.yaml b/charts/keep/templates/frontend-ingress.yaml index be3736c..c113f3f 100644 --- a/charts/keep/templates/frontend-ingress.yaml +++ b/charts/keep/templates/frontend-ingress.yaml @@ -58,4 +58,7 @@ spec: {{- end }} {{- end }} {{- end }} -{{- end }} + {{- if .Values.frontend.extraIngress -}} + {{ toYaml .Values.frontend.extraIngress | nindent 2 }} + {{- end }} +{{- end }} \ No newline at end of file diff --git a/charts/keep/templates/keep-frontend-service.yaml b/charts/keep/templates/keep-frontend-service.yaml index 7c16067..9a21a31 100644 --- a/charts/keep/templates/keep-frontend-service.yaml +++ b/charts/keep/templates/keep-frontend-service.yaml @@ -16,7 +16,10 @@ spec: {{ if eq .Values.frontend.service.type "NodePort" }} nodePort: {{ .Values.frontend.service.nodePort }} {{- end }} + {{- if .Values.frontend.extraPorts }} + {{- toYaml .Values.frontend.extraPorts | nindent 4 }} + {{- end }} selector: {{- include "keep.selectorLabels" . | nindent 4 }} keep-component: frontend -{{- end}} +{{- end}} \ No newline at end of file diff --git a/charts/keep/templates/keep-frontend.yaml b/charts/keep/templates/keep-frontend.yaml index 4e56728..e323875 100644 --- a/charts/keep/templates/keep-frontend.yaml +++ b/charts/keep/templates/keep-frontend.yaml @@ -55,6 +55,9 @@ spec: {{- end }} resources: {{- toYaml .Values.frontend.resources | nindent 12 }} + {{- if .Values.frontend.extraContainers -}} + {{ toYaml .Values.frontend.extraContainers | nindent 8 }} + {{- end }} {{- with .Values.frontend.nodeSelector }} nodeSelector: {{- toYaml . | nindent 8 }} @@ -70,4 +73,4 @@ spec: volumes: - name: state-volume emptyDir: {} -{{- end }} +{{- end }} \ No newline at end of file