Skip to content

Commit

Permalink
Merge pull request #34 from keephq/feature/oauth2-proxy
Browse files Browse the repository at this point in the history
feat: oauth2-proxy
  • Loading branch information
shahargl authored Sep 3, 2024
2 parents 43d454a + a1e0bf6 commit 61051f5
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 5 deletions.
4 changes: 2 additions & 2 deletions charts/keep/Chart.yaml
Original file line number Diff line number Diff line change
@@ -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
Expand Down
5 changes: 4 additions & 1 deletion charts/keep/templates/frontend-ingress.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -58,4 +58,7 @@ spec:
{{- end }}
{{- end }}
{{- end }}
{{- end }}
{{- if .Values.frontend.extraIngress -}}
{{ toYaml .Values.frontend.extraIngress | nindent 2 }}
{{- end }}
{{- end }}
5 changes: 4 additions & 1 deletion charts/keep/templates/keep-frontend-service.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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}}
5 changes: 4 additions & 1 deletion charts/keep/templates/keep-frontend.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand All @@ -70,4 +73,4 @@ spec:
volumes:
- name: state-volume
emptyDir: {}
{{- end }}
{{- end }}

0 comments on commit 61051f5

Please sign in to comment.