Skip to content

Commit c2aa748

Browse files
Automatic update CHANGELOGs and READMEs (#1973) (#1975)
Co-authored-by: Github Actions <[email protected]>
1 parent fabb12e commit c2aa748

File tree

22 files changed

+73
-35
lines changed

22 files changed

+73
-35
lines changed

charts/victoria-logs-single/CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
## Next release
22

3+
- added ability to override default headless service .Values.server.service.clusterIP with empty value
34
- vector chart 0.37.x -> 0.40.x
45

56
## 0.8.14

charts/victoria-logs-single/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -910,7 +910,7 @@ readOnlyRootFilesystem: true
910910
<td>server.service.clusterIP</td>
911911
<td>string</td>
912912
<td><pre class="helm-vars-default-value language-yaml" lang="">
913-
<code class="language-yaml">""
913+
<code class="language-yaml">None
914914
</code>
915915
</pre>
916916
</td>

charts/victoria-logs-single/templates/server-service.yaml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,11 @@ spec:
2020
{{- end }}
2121
type: {{ $type }}
2222
{{- $clusterIP := $service.clusterIP }}
23-
{{- if and (not $clusterIP) (eq $type "ClusterIP") $app.statefulSet.enabled }}
24-
{{- $clusterIP = "None" }}
25-
{{- end }}
26-
{{- with $clusterIP }}
23+
{{- if eq $type "ClusterIP" }}
24+
{{- with $service.clusterIP }}
2725
clusterIP: {{ . }}
2826
{{- end }}
27+
{{- end }}
2928
{{- with $service.externalIPs }}
3029
externalIPs: {{ toYaml . | nindent 4 }}
3130
{{- end }}

charts/victoria-logs-single/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -252,7 +252,7 @@ server:
252252
# -- Service labels
253253
labels: {}
254254
# -- Service ClusterIP
255-
clusterIP: ""
255+
clusterIP: None
256256
# -- Service external IPs. Details are [here]( https://kubernetes.io/docs/user-guide/services/#external-ips)
257257
externalIPs: []
258258
# -- Service load balancer IP

charts/victoria-metrics-cluster/CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
## Next release
22

3-
- TODO
3+
- added ability to override default headless service `.Values.vmselect.service.clusterIP` with empty value
4+
- added `.Values.common.image.tag` to set the same tag for all cluster components.
45

56
## 0.17.4
67

charts/victoria-metrics-cluster/README.md

Lines changed: 25 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,19 @@ Change the values according to the need of the environment in ``victoria-metrics
145145
</code>
146146
</pre>
147147
</td>
148-
<td></td>
148+
<td><p>use SRV discovery for storageNode and selectNode flags for enterprise version</p>
149+
</td>
150+
</tr>
151+
<tr>
152+
<td>common.image</td>
153+
<td>object</td>
154+
<td><pre class="helm-vars-default-value language-yaml" lang="plaintext">
155+
<code class="language-yaml">tag: ""
156+
</code>
157+
</pre>
158+
</td>
159+
<td><p>common for all components image configuration</p>
160+
</td>
149161
</tr>
150162
<tr>
151163
<td>extraObjects</td>
@@ -200,6 +212,17 @@ Change the values according to the need of the environment in ``victoria-metrics
200212
</pre>
201213
</td>
202214
<td><p>Image registry, that can be shared across multiple helm charts</p>
215+
</td>
216+
</tr>
217+
<tr>
218+
<td>global.image.vm.tag</td>
219+
<td>string</td>
220+
<td><pre class="helm-vars-default-value language-yaml" lang="">
221+
<code class="language-yaml">""
222+
</code>
223+
</pre>
224+
</td>
225+
<td><p>Image tag for all vm charts</p>
203226
</td>
204227
</tr>
205228
<tr>
@@ -2632,7 +2655,7 @@ timeoutSeconds: 5
26322655
<td>vmselect.service.clusterIP</td>
26332656
<td>string</td>
26342657
<td><pre class="helm-vars-default-value language-yaml" lang="">
2635-
<code class="language-yaml">""
2658+
<code class="language-yaml">None
26362659
</code>
26372660
</pre>
26382661
</td>

charts/victoria-metrics-cluster/templates/service.yaml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,10 @@ spec:
2222
{{- $type = "ClusterIP" }}
2323
{{- end }}
2424
type: {{ $type }}
25-
{{- $clusterIP := $service.clusterIP }}
26-
{{- if and (not $clusterIP) (eq $type "ClusterIP") ($app.statefulSet).enabled }}
27-
{{- $clusterIP = "None" }}
25+
{{- if eq $type "ClusterIP" }}
26+
{{- with $service.clusterIP }}
27+
clusterIP: {{. }}
2828
{{- end }}
29-
{{- with $clusterIP }}
30-
clusterIP: {{ . }}
3129
{{- end }}
3230
{{- with $service.externalIPs }}
3331
externalIPs: {{ toYaml . | nindent 4 }}

charts/victoria-metrics-cluster/templates/vmauth-deployment.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
{{- $app := .Values.vmauth -}}
1+
{{- $app := merge (deepCopy .Values.vmauth) (deepCopy .Values.common) -}}
2+
{{- $_ := set .Values "vmauth" $app }}
23
{{- if $app.enabled -}}
34
{{- $ctx := dict "helm" . "appKey" "vmauth" }}
45
{{- $fullname := include "vm.plain.fullname" $ctx }}

charts/victoria-metrics-cluster/templates/vminsert-deployment.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
{{- $app := .Values.vminsert -}}
1+
{{- $app := merge (deepCopy .Values.vminsert) (deepCopy .Values.common) -}}
2+
{{- $_ := set .Values "vminsert" $app }}
23
{{- if $app.enabled -}}
34
{{- $ctx := dict "helm" . "appKey" "vminsert" }}
45
{{- $fullname := include "vm.plain.fullname" $ctx }}

charts/victoria-metrics-cluster/templates/vmselect-deployment.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
{{- $app := .Values.vmselect -}}
1+
{{- $app := merge (deepCopy .Values.vmselect) (deepCopy .Values.common) -}}
2+
{{- $_ := set .Values "vmselect" $app }}
23
{{- if and $app.enabled (not $app.statefulSet.enabled) -}}
34
{{- $ctx := dict "helm" . "appKey" "vmselect" }}
45
{{- $fullname := include "vm.plain.fullname" $ctx }}

0 commit comments

Comments
 (0)