Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion charts/base/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apiVersion: v2
name: base
description: Base Helm chart for Kubernetes - fully values-driven.
type: application
version: 0.2.0
version: 0.2.1
maintainers:
- name: bonddim
sources:
Expand Down
2 changes: 1 addition & 1 deletion charts/base/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# base

![Version: 0.2.0](https://img.shields.io/badge/Version-0.2.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square)
![Version: 0.2.1](https://img.shields.io/badge/Version-0.2.1-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square)

Base Helm chart for Kubernetes - fully values-driven.

Expand Down
16 changes: 9 additions & 7 deletions charts/base/templates/httproute.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,17 @@ spec:
{{- end }}
rules:
{{- range .Values.httpRoute.rules }}
- {{- with .matches }}
matches: {{- toYaml . | nindent 8 }}
{{- end }}
- backendRefs:
- group: ""
kind: Service
name: {{ include "base.fullname" $ }}
port: {{ $.Values.service.port }}
weight: 1
{{- with .filters }}
filters: {{- toYaml . | nindent 8 }}
{{- end }}
backendRefs:
- name: {{ include "base.fullname" $ }}
port: {{ $.Values.service.port }}
weight: 1
{{- with .matches }}
matches: {{- toYaml . | nindent 8 }}
{{- end }}
{{- end }}
{{- end }}
Loading