File tree 5 files changed +29
-1
lines changed
docs/getting-started/installation
5 files changed +29
-1
lines changed Original file line number Diff line number Diff line change @@ -2,5 +2,5 @@ apiVersion: v2
2
2
name : kobs
3
3
description : Kubernetes Observability Platform
4
4
type : application
5
- version : 0.2 .0
5
+ version : 0.3 .0
6
6
appVersion : v0.12.0
Original file line number Diff line number Diff line change @@ -7,6 +7,13 @@ metadata:
7
7
labels :
8
8
{{- include "kobs.labels" . | nindent 4 }}
9
9
app.kubernetes.io/component : cluster
10
+ {{- with .Values.cluster.istio.virtualService.labels }}
11
+ {{- toYaml . | nindent 4 }}
12
+ {{- end }}
13
+ {{- with .Values.cluster.virtualService.annotations }}
14
+ annotations :
15
+ {{- toYaml . | nindent 4 }}
16
+ {{- end }}
10
17
spec :
11
18
{{- with .Values.cluster.istio.virtualService.hosts }}
12
19
hosts :
Original file line number Diff line number Diff line change @@ -7,6 +7,13 @@ metadata:
7
7
labels :
8
8
{{- include "kobs.labels" . | nindent 4 }}
9
9
app.kubernetes.io/component : hub
10
+ {{- with .Values.hub.istio.virtualService.labels }}
11
+ {{- toYaml . | nindent 4 }}
12
+ {{- end }}
13
+ {{- with .Values.hub.virtualService.annotations }}
14
+ annotations :
15
+ {{- toYaml . | nindent 4 }}
16
+ {{- end }}
10
17
spec :
11
18
{{- with .Values.hub.istio.virtualService.hosts }}
12
19
hosts :
29
36
port :
30
37
number : 15220
31
38
timeout : {{ .Values.hub.istio.virtualService.timeout }}
39
+ {{- with .Values.hub.istio.virtualService.headers }}
40
+ headers :
41
+ {{- toYaml . | nindent 8 }}
42
+ {{- end }}
32
43
- route :
33
44
- destination :
34
45
host : {{ include "kobs.fullname" . }}-hub.{{ .Release.Namespace }}.svc.cluster.local
Original file line number Diff line number Diff line change 342
342
virtualService :
343
343
enabled : false
344
344
345
+ annotations : {}
346
+ labels : {}
347
+
345
348
gateways : []
346
349
# - gateway
347
350
@@ -771,6 +774,9 @@ cluster:
771
774
virtualService :
772
775
enabled : false
773
776
777
+ annotations : {}
778
+ labels : {}
779
+
774
780
gateways : []
775
781
# - gateway
776
782
Original file line number Diff line number Diff line change @@ -72,6 +72,8 @@ helm upgrade --install kobs kobs/kobs
72
72
| ` hub.ingress.hosts ` | Hosts to use for the ingress. | ` [] ` |
73
73
| ` hub.ingress.tls ` | TLS configuration for the ingress. | ` [] ` |
74
74
| ` hub.istio.virtualService.enabled ` | Specifies whether a VirtualService should be created. | ` false ` |
75
+ | ` hub.istio.virtualService.annotations ` | Annotations to add to the VirtualService. | ` {} ` |
76
+ | ` hub.istio.virtualService.labels ` | Labels to add to the VirtualService. | ` {} ` |
75
77
| ` hub.istio.virtualService.gateways ` | A list of gateways for the VirtualService. | ` [] ` |
76
78
| ` hub.istio.virtualService.hosts ` | A list of hosts for the VirtualService. | ` [] ` |
77
79
| ` hub.istio.virtualService.timeout ` | Timeout for API requests. | ` 300s ` |
@@ -141,6 +143,8 @@ helm upgrade --install kobs kobs/kobs
141
143
| ` cluster.ingress.hosts ` | Hosts to use for the ingress. | ` [] ` |
142
144
| ` cluster.ingress.tls ` | TLS configuration for the ingress. | ` [] ` |
143
145
| ` cluster.istio.virtualService.enabled ` | Specifies whether a VirtualService should be created. | ` false ` |
146
+ | ` cluster.istio.virtualService.annotations ` | Annotations to add to the VirtualService. | ` {} ` |
147
+ | ` cluster.istio.virtualService.labels ` | Labels to add to the VirtualService. | ` {} ` |
144
148
| ` cluster.istio.virtualService.gateways ` | A list of gateways for the VirtualService. | ` [] ` |
145
149
| ` cluster.istio.virtualService.hosts ` | A list of hosts for the VirtualService. | ` [] ` |
146
150
| ` cluster.istio.virtualService.timeout ` | Timeout for API requests. | ` 300s ` |
You can’t perform that action at this time.
0 commit comments