Skip to content

Commit 173ca2b

Browse files
authored
Fix VirtualService in Helm chart (#43)
The used value in the VirtualService template for hosts and gateways was wrong.
1 parent 57b1432 commit 173ca2b

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

CHANGELOG.md

+2
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@ NOTE: As semantic versioning states all 0.y.z releases can contain breaking chan
1212

1313
### Fixed
1414

15+
- [#43](https://github.com/kobsio/kobs/pull/43): Fix `hosts` and `gateways` list for VirtualService in the Helm chart.
16+
1517
### Changed
1618

1719
## [v0.2.0](https://github.com/kobsio/kobs/releases/tag/v0.2.0) (2021-04-23)

deploy/helm/kobs/Chart.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@ description: Kubernetes Observability Platform
44
type: application
55
home: https://kobs.io
66
icon: https://kobs.io/assets/images/logo.svg
7-
version: 0.3.0
7+
version: 0.3.1
88
appVersion: v0.2.0

deploy/helm/kobs/templates/virtualservice.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@ metadata:
66
labels:
77
{{- include "kobs.labels" . | nindent 4 }}
88
spec:
9-
{{- with .Values.istio.hosts }}
9+
{{- with .Values.istio.virtualService.hosts }}
1010
hosts:
1111
{{- toYaml . | nindent 4 }}
1212
{{- end }}
13-
{{- with .Values.istio.gateways }}
13+
{{- with .Values.istio.virtualService.gateways }}
1414
gateways:
1515
{{- toYaml . | nindent 4 }}
1616
{{- end }}

0 commit comments

Comments
 (0)