Skip to content

Commit c750498

Browse files
author
datacore-bolt-ci
committed
ci(stability): update values.yaml and Chart.yaml with latest tags and version respectively
1 parent 4e1ffb4 commit c750498

File tree

4 files changed

+31
-31
lines changed

4 files changed

+31
-31
lines changed

chart/Chart.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,17 +16,17 @@ type: application
1616
# This is the chart version. This version number should be incremented each time you make changes
1717
# to the chart and its templates, including the app version.
1818
# Versions are expected to follow Semantic Versioning (https://semver.org/)
19-
version: 2.10.0-0-main-unstable-2025-08-26-07-01-20-0
19+
version: 2.10.0-0-main-unstable-2025-08-26-09-46-22-0
2020

2121
# This is the version number of the application being deployed. This version number should be
2222
# incremented each time you make changes to the application. Versions are not expected to
2323
# follow Semantic Versioning. They should reflect the version the application is using.
2424
# It is recommended to use it with quotes.
25-
appVersion: 2.10.0-0-main-unstable-2025-08-26-07-01-20-0
25+
appVersion: 2.10.0-0-main-unstable-2025-08-26-09-46-22-0
2626

2727
dependencies:
2828
- name: crds
29-
version: 2.10.0-0-main-unstable-2025-08-26-07-01-20-0
29+
version: 2.10.0-0-main-unstable-2025-08-26-09-46-22-0
3030
condition: crds.enabled
3131
- name: etcd
3232
repository: https://charts.bitnami.com/bitnami

chart/charts/crds/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
apiVersion: v2
22
name: crds
3-
version: 2.10.0-0-main-unstable-2025-08-26-07-01-20-0
3+
version: 2.10.0-0-main-unstable-2025-08-26-09-46-22-0
44
description: |
55
A Helm chart that collects CustomResourceDefinitions (CRDs) from Mayastor.
66

chart/doc.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ repository:
88
name: mayastor
99
chart:
1010
name: mayastor
11-
version: 2.10.0-0-main-unstable-2025-08-26-07-01-20-0
11+
version: 2.10.0-0-main-unstable-2025-08-26-09-46-22-0
1212
values: "-- generate from values file --"
1313
valuesExample: "-- generate from values file --"
1414
prerequisites:

chart/values.yaml

Lines changed: 26 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,11 @@ image:
2626
# If not specified, 'tag' option provided above will be picked.
2727
controlPlane: 1797de555847
2828
dataPlane: 69ba9d694077
29-
extensions: f7ac578b2431
29+
extensions: ac9b84013f5c
3030
# -- ImagePullPolicy for our images
3131
pullPolicy: IfNotPresent
3232
# -- docker-secrets required to pull images if the container registry from image.registry is protected
33-
pullSecrets: [ ]
33+
pullSecrets: []
3434
# -- Node labels for pod assignment
3535
# ref: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/
3636
# Note that if multi-arch images support 'kubernetes.io/arch: amd64'
@@ -54,7 +54,7 @@ earlyEvictionTolerations:
5454
# -- Tolerations to be applied to all components except external Chart dependencies.
5555
# If any component has tolerations set, then it would override this value.
5656
# For external components like etcd, jaeger and loki, tolerations can only be set at component level.
57-
tolerations: [ ]
57+
tolerations: []
5858
base:
5959
# -- Request timeout for rest & core agents
6060
default_req_timeout: 5s
@@ -75,19 +75,19 @@ base:
7575
pullPolicy: IfNotPresent
7676
containers:
7777
- name: agent-core-grpc-probe
78-
command: [ 'sh', '-c', 'trap "exit 1" TERM; until nc -vzw 5 {{ .Release.Name }}-agent-core 50051; do date; echo "Waiting for agent-core-grpc services..."; sleep 1; done;' ]
78+
command: ['sh', '-c', 'trap "exit 1" TERM; until nc -vzw 5 {{ .Release.Name }}-agent-core 50051; do date; echo "Waiting for agent-core-grpc services..."; sleep 1; done;']
7979
- name: etcd-probe
80-
command: [ 'sh', '-c', 'trap "exit 1" TERM; until nc -vzw 5 {{ .Release.Name }}-etcd {{ .Values.etcd.service.ports.client }}; do date; echo "Waiting for etcd..."; sleep 1; done;' ]
80+
command: ['sh', '-c', 'trap "exit 1" TERM; until nc -vzw 5 {{ .Release.Name }}-etcd {{ .Values.etcd.service.ports.client }}; do date; echo "Waiting for etcd..."; sleep 1; done;']
8181
initHaNodeContainers:
8282
enabled: true
8383
containers:
8484
- name: agent-cluster-grpc-probe
85-
command: [ 'sh', '-c', 'trap "exit 1" TERM; until nc -vzw 5 {{ .Release.Name }}-agent-core 50052; do date; echo "Waiting for agent-cluster-grpc services..."; sleep 1; done;' ]
85+
command: ['sh', '-c', 'trap "exit 1" TERM; until nc -vzw 5 {{ .Release.Name }}-agent-core 50052; do date; echo "Waiting for agent-cluster-grpc services..."; sleep 1; done;']
8686
initCoreContainers:
8787
enabled: true
8888
containers:
8989
- name: etcd-probe
90-
command: [ 'sh', '-c', 'trap "exit 1" TERM; until nc -vzw 5 {{ .Release.Name }}-etcd {{ .Values.etcd.service.ports.client }}; do date; echo "Waiting for etcd..."; sleep 1; done;' ]
90+
command: ['sh', '-c', 'trap "exit 1" TERM; until nc -vzw 5 {{ .Release.Name }}-etcd {{ .Values.etcd.service.ports.client }}; do date; echo "Waiting for etcd..."; sleep 1; done;']
9191
metrics:
9292
# -- Enable the metrics exporter
9393
enabled: true
@@ -104,18 +104,18 @@ base:
104104
port: 6831
105105
initContainer:
106106
- name: jaeger-probe
107-
command: [ 'sh', '-c', 'trap "exit 1" TERM; until nc -vzw 5 -u {{.Values.base.jaeger.agent.name}} {{.Values.base.jaeger.agent.port}}; do date; echo "Waiting for jaeger..."; sleep 1; done;' ]
107+
command: ['sh', '-c', 'trap "exit 1" TERM; until nc -vzw 5 -u {{.Values.base.jaeger.agent.name}} {{.Values.base.jaeger.agent.port}}; do date; echo "Waiting for jaeger..."; sleep 1; done;']
108108
collector:
109109
name: jaeger-collector
110110
port: 4317
111111
initContainer:
112112
- name: jaeger-probe
113-
command: [ 'sh', '-c', 'trap "exit 1" TERM; until nc -vzw 5 -u {{.Values.base.jaeger.collector.name}} {{.Values.base.jaeger.collector.port}}; do date; echo "Waiting for jaeger..."; sleep 1; done;' ]
113+
command: ['sh', '-c', 'trap "exit 1" TERM; until nc -vzw 5 -u {{.Values.base.jaeger.collector.name}} {{.Values.base.jaeger.collector.port}}; do date; echo "Waiting for jaeger..."; sleep 1; done;']
114114
initRestContainer:
115115
enabled: true
116116
initContainer:
117117
- name: api-rest-probe
118-
command: [ 'sh', '-c', 'trap "exit 1" TERM; until nc -vzw 5 {{ .Release.Name }}-api-rest 8081; do date; echo "Waiting for REST API endpoint to become available"; sleep 1; done;' ]
118+
command: ['sh', '-c', 'trap "exit 1" TERM; until nc -vzw 5 {{ .Release.Name }}-api-rest 8081; do date; echo "Waiting for REST API endpoint to become available"; sleep 1; done;']
119119
operators:
120120
pool:
121121
# -- Log level for diskpool operator service
@@ -132,7 +132,7 @@ operators:
132132
# -- Memory requests for diskpool operator
133133
memory: "16Mi"
134134
# -- Set tolerations, overrides global
135-
tolerations: [ ]
135+
tolerations: []
136136
# -- Set PriorityClass, overrides global
137137
priorityClassName: ""
138138
jaeger-operator:
@@ -148,7 +148,7 @@ jaeger-operator:
148148
rbac:
149149
# Create a clusterRole for Jaeger
150150
clusterRole: true
151-
tolerations: [ ]
151+
tolerations: []
152152
priorityClassName: ""
153153
agents:
154154
core:
@@ -206,7 +206,7 @@ agents:
206206
# -- Memory requests for core agents
207207
memory: "32Mi"
208208
# -- Set tolerations, overrides global
209-
tolerations: [ ]
209+
tolerations: []
210210
# -- Set PriorityClass, overrides global.
211211
# If both local and global are not set, the final deployment manifest has a mayastor custom critical priority class assigned to the pod by default.
212212
# Refer the `templates/_helpers.tpl` and `templates/mayastor/agents/core/agent-core-deployment.yaml` for more details.
@@ -241,7 +241,7 @@ agents:
241241
# -- Memory requests for ha node agent
242242
memory: "64Mi"
243243
# -- Set tolerations, overrides global
244-
tolerations: [ ]
244+
tolerations: []
245245
# -- Set PriorityClass, overrides global
246246
priorityClassName: ""
247247
# -- Container port for the ha-node service
@@ -313,7 +313,7 @@ apis:
313313
# NodePort associated with https port
314314
https: 30010
315315
# -- Set tolerations, overrides global
316-
tolerations: [ ]
316+
tolerations: []
317317
# -- Set PriorityClass, overrides global.
318318
# If both local and global are not set, the final deployment manifest has a mayastor custom critical priority class assigned to the pod by default.
319319
# Refer the `templates/_helpers.tpl` and `templates/mayastor/apis/rest/api-rest-deployment.yaml` for more details.
@@ -355,7 +355,7 @@ csi:
355355
# -- Memory requests for csi controller
356356
memory: "64Mi"
357357
# -- Set tolerations, overrides global
358-
tolerations: [ ]
358+
tolerations: []
359359
# -- Set PriorityClass, overrides global
360360
priorityClassName: ""
361361
# -- Prevent modifying the volume mode when creating a PVC from an existing VolumeSnapshot
@@ -403,14 +403,14 @@ csi:
403403
restClient:
404404
enabled: true
405405
# -- Set tolerations, overrides global
406-
tolerations: [ ]
406+
tolerations: []
407407
# -- Set PriorityClass, overrides global
408408
priorityClassName: ""
409409
initContainers:
410410
enabled: false
411411
containers:
412412
- name: nvme-tcp-probe
413-
command: [ 'sh', '-c', 'trap "exit 1" TERM; until [ -d /sys/module/nvme_tcp ]; do [ -z "$WARNED" ] && echo "nvme_tcp module not loaded..."; WARNED=1; sleep 60; done;' ]
413+
command: ['sh', '-c', 'trap "exit 1" TERM; until [ -d /sys/module/nvme_tcp ]; do [ -z "$WARNED" ] && echo "nvme_tcp module not loaded..."; WARNED=1; sleep 60; done;']
414414
# -- Container port for the csi-node service
415415
port: 10199
416416
io_engine:
@@ -461,7 +461,7 @@ io_engine:
461461
cpuCount: "2"
462462
# -- If not empty, overrides the cpuCount and explicitly sets the list of cores.
463463
# Example: --set='io_engine.coreList={30,31}'
464-
coreList: [ ]
464+
coreList: []
465465
# -- Node selectors to designate storage nodes for diskpool creation
466466
# Note that if multi-arch images support 'kubernetes.io/arch: amd64'
467467
# should be removed.
@@ -488,7 +488,7 @@ io_engine:
488488
# -- Hugepage memory in 1GiB chunks
489489
hugepages1Gi:
490490
# -- Set tolerations, overrides global
491-
tolerations: [ ]
491+
tolerations: []
492492
# -- Set PriorityClass, overrides global
493493
priorityClassName: ""
494494
# -- Runtime class to use. Defaults to cluster standard
@@ -575,7 +575,7 @@ etcd:
575575
registry: docker.io
576576
repository: openebs/alpine-bash
577577
tag: 4.2.0
578-
pullSecrets: [ ]
578+
pullSecrets: []
579579
image:
580580
registry: docker.io
581581
repository: openebs/etcd
@@ -586,7 +586,7 @@ etcd:
586586
podAntiAffinityPreset: "hard"
587587
## -- nodeSelector [object] Node labels for pod assignment
588588
## Ref: https://kubernetes.io/docs/user-guide/node-selection/
589-
nodeSelector: { }
589+
nodeSelector: {}
590590
# etcd service parameters defines how the etcd service is exposed
591591
service:
592592
# K8s service type
@@ -601,7 +601,7 @@ etcd:
601601
# Port from where etcd endpoints are accessible from outside cluster
602602
client: 31379
603603
peer: ""
604-
tolerations: [ ]
604+
tolerations: []
605605
priorityClassName: ""
606606
preUpgradeJob:
607607
annotations:
@@ -906,7 +906,7 @@ obs:
906906
# -- Memory requests for callhome
907907
memory: "16Mi"
908908
# -- Set tolerations, overrides global
909-
tolerations: [ ]
909+
tolerations: []
910910
# -- Set PriorityClass, overrides global
911911
priorityClassName: ""
912912
# Eventing component enabled/disabled based on obs.callhome.enabled value
@@ -959,10 +959,10 @@ preUpgradeHook:
959959
# -- Node tolerations for server scheduling to nodes with taints
960960
## Ref: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/
961961
##
962-
tolerations: [ ]
962+
tolerations: []
963963
# -- Optional array of imagePullSecrets containing private registry credentials
964964
## Ref: https://kubernetes.io/docs/tasks/configure-pod-container/pull-image-private-registry/
965-
imagePullSecrets: [ ]
965+
imagePullSecrets: []
966966
# - name: secretName
967967
# Labels to be added to the Job Pod.
968968
podLabels:

0 commit comments

Comments
 (0)