Skip to content
This repository was archived by the owner on May 8, 2024. It is now read-only.

Commit 20775f8

Browse files
authored
feat(charts): add v3.8.0 helm chart (#332)
Signed-off-by: Niladri Halder <niladri.halder26@gmail.com>
1 parent bc1574f commit 20775f8

File tree

4 files changed

+32
-28
lines changed

4 files changed

+32
-28
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ OpenEBS helm chart includes common components that are used by multiple engines
2323
- Security Policies like RBAC, PSP, Kyverno
2424

2525
Engine charts included as dependencies are:
26-
- [Mayastor](https://github.com/openebs/mayastor-extensions/tree/v2.2.0/chart)
26+
- [Mayastor](https://github.com/openebs/mayastor-extensions/tree/v2.3.0/chart)
2727
- [cStor](https://github.com/openebs/cstor-operators/tree/HEAD/deploy/helm/charts)
2828
- [Jiva](https://github.com/openebs/jiva-operator/tree/HEAD/deploy/helm/charts)
2929
- [ZFS Local PV](https://github.com/openebs/zfs-localpv/tree/HEAD/deploy/helm/charts)

charts/openebs/Chart.yaml

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
apiVersion: v2
2-
version: 3.7.0
2+
version: 3.8.0
33
name: openebs
4-
appVersion: 3.7.0
4+
appVersion: 3.8.0
55
description: Containerized Attached Storage for Kubernetes
66
icon: https://raw.githubusercontent.com/cncf/artwork/HEAD/projects/openebs/icon/color/openebs-icon-color.png
77
home: http://www.openebs.io/
@@ -32,26 +32,26 @@ dependencies:
3232
repository: "https://openebs.github.io/dynamic-localpv-provisioner"
3333
condition: localpv-provisioner.enabled
3434
- name: cstor
35-
version: "3.4.0"
35+
version: "3.5.0"
3636
repository: "https://openebs.github.io/cstor-operators"
3737
condition: cstor.enabled
3838
- name: jiva
39-
version: "3.4.0"
39+
version: "3.5.0"
4040
repository: "https://openebs.github.io/jiva-operator"
4141
condition: jiva.enabled
4242
- name: zfs-localpv
43-
version: "2.2.0"
43+
version: "2.3.0"
4444
repository: "https://openebs.github.io/zfs-localpv"
4545
condition: zfs-localpv.enabled
4646
- name: lvm-localpv
47-
version: "1.1.0"
47+
version: "1.2.0"
4848
repository: "https://openebs.github.io/lvm-localpv"
4949
condition: lvm-localpv.enabled
5050
- name: nfs-provisioner
5151
version: "0.10.0"
5252
repository: "https://openebs.github.io/dynamic-nfs-provisioner"
5353
condition: nfs-provisioner.enabled
5454
- name: mayastor
55-
version: "2.2.0"
55+
version: "2.3.0"
5656
repository: "https://openebs.github.io/mayastor-extensions"
5757
condition: mayastor.enabled

charts/openebs/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ The following table lists the common configurable parameters of the OpenEBS char
148148
| `mayastor.etcd.persistence.size` | Set the size of the volume(s) used by the etcd | `""` |
149149
| `mayastor.image.registry` | Set the container image registry for the mayastor containers | `"docker.io"` |
150150
| `mayastor.image.repo` | Set the container image repository for the mayastor containers | `"openebs"` |
151-
| `mayastor.image.tag` | Set the container image tag for the mayastor containers | `"v2.2.0"` |
151+
| `mayastor.image.tag` | Set the container image tag for the mayastor containers | `"v2.3.0"` |
152152
| `mayastor.image.pullPolicy` | Set the container ImagePullPolicy for the mayastor containers | `"Always"` |
153153
| `mayastor.csi.image.registry` | Set the container image registry for the Kubernetes CSI sidecar containers | `"registry.k8s.io"` |
154154
| `mayastor.csi.image.repo` | Set the container image repository for the Kubernetes CSI sidecar containers | `"sig-storage"` |

charts/openebs/values.yaml

+23-19
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ imagePullSecrets: []
1818

1919
release:
2020
# "openebs.io/version" label for control plane components
21-
version: "3.6.0"
21+
version: "3.8.0"
2222

2323
# Legacy components will be installed if it is enabled.
2424
# Legacy components are - admission-server, maya api-server, snapshot-operator
@@ -404,15 +404,15 @@ mayastor:
404404

405405
# Sample configuration, if you want to configure mayastor with custom values.
406406
# This is a small part of the full configuration. Full configuration available
407-
# here - https://github.com/openebs/mayastor-extensions/blob/v2.2.0/chart/values.yaml
407+
# here - https://github.com/openebs/mayastor-extensions/blob/v2.3.0/chart/values.yaml
408408

409409
image:
410410
# -- Image registry to pull Mayastor product images
411411
registry: docker.io
412412
# -- Image registry's namespace
413413
repo: openebs
414414
# -- Release tag for Mayastor images
415-
tag: v2.2.0
415+
tag: v2.3.0
416416
# -- ImagePullPolicy for Mayastor images
417417
pullPolicy: IfNotPresent
418418

@@ -501,6 +501,10 @@ mayastor:
501501
# provisionerTag: v2.2.1
502502
# # -- csi-attacher image release tag
503503
# attacherTag: v3.2.1
504+
# # -- csi-snapshotter image release tag
505+
# snapshotterTag: v6.2.1
506+
# # -- csi-snapshot-controller image release tag
507+
# snapshotControllerTag: v6.2.1
504508
# # -- csi-node-driver-registrar image release tag
505509
# registrarTag: v2.1.0
506510

@@ -602,25 +606,25 @@ jiva:
602606
# image:
603607
# registry: quay.io/
604608
# repository: openebs/jiva
605-
# tag: 3.4.0
609+
# tag: 3.5.0
606610
# replica:
607611
# image:
608612
# registry: quay.io/
609613
# repository: openebs/jiva
610-
# tag: 3.4.0
614+
# tag: 3.5.0
611615
# image:
612616
# registry: quay.io/
613617
# repository: openebs/jiva-operator
614618
# pullPolicy: IfNotPresent
615-
# tag: 3.4.0
619+
# tag: 3.5.0
616620
#
617621
# jivaCSIPlugin:
618622
# remount: "true"
619623
# image:
620624
# registry: quay.io/
621625
# repository: openebs/jiva-csi
622626
# pullPolicy: IfNotPresent
623-
# tag: 3.4.0
627+
# tag: 3.5.0
624628

625629
cstor:
626630

@@ -671,59 +675,59 @@ cstor:
671675
# image:
672676
# registry: quay.io/
673677
# repository: openebs/cstor-pool-manager
674-
# tag: 3.4.0
678+
# tag: 3.5.0
675679
# cstorPool:
676680
# image:
677681
# registry: quay.io/
678682
# repository: openebs/cstor-pool
679-
# tag: 3.4.0
683+
# tag: 3.5.0
680684
# cstorPoolExporter:
681685
# image:
682686
# registry: quay.io/
683687
# repository: openebs/m-exporter
684-
# tag: 3.4.0
688+
# tag: 3.5.0
685689
# image:
686690
# registry: quay.io/
687691
# repository: openebs/cspc-operator
688692
# pullPolicy: IfNotPresent
689-
# tag: 3.4.0
693+
# tag: 3.5.0
690694
#
691695
# cvcOperator:
692696
# target:
693697
# image:
694698
# registry: quay.io/
695699
# repository: openebs/cstor-istgt
696-
# tag: 3.4.0
700+
# tag: 3.5.0
697701
# volumeMgmt:
698702
# image:
699703
# registry: quay.io/
700704
# repository: openebs/cstor-volume-manager
701-
# tag: 3.4.0
705+
# tag: 3.5.0
702706
# volumeExporter:
703707
# image:
704708
# registry: quay.io/
705709
# repository: openebs/m-exporter
706-
# tag: 3.4.0
710+
# tag: 3.5.0
707711
# image:
708712
# registry: quay.io/
709713
# repository: openebs/cvc-operator
710714
# pullPolicy: IfNotPresent
711-
# tag: 3.4.0
715+
# tag: 3.5.0
712716
#
713717
# cstorCSIPlugin:
714718
# image:
715719
# registry: quay.io/
716720
# repository: openebs/cstor-csi-driver
717721
# pullPolicy: IfNotPresent
718-
# tag: 3.4.0
722+
# tag: 3.5.0
719723
#
720724
# admissionServer:
721725
# componentName: cstor-admission-webhook
722726
# image:
723727
# registry: quay.io/
724728
# repository: openebs/cstor-webhook
725729
# pullPolicy: IfNotPresent
726-
# tag: 3.4.0
730+
# tag: 3.5.0
727731

728732
# ndm configuration goes here
729733
# https://openebs.github.io/node-disk-manager
@@ -859,7 +863,7 @@ zfs-localpv:
859863
# registry: quay.io/
860864
# repository: openebs/zfs-driver
861865
# pullPolicy: IfNotPresent
862-
# tag: 2.2.0
866+
# tag: 2.3.0
863867

864868
# lvm local pv configuration goes here
865869
# ref - https://openebs.github.io/lvm-localpv
@@ -880,7 +884,7 @@ lvm-localpv:
880884
# registry: quay.io/
881885
# repository: openebs/lvm-driver
882886
# pullPolicy: IfNotPresent
883-
# tag: 1.1.0
887+
# tag: 1.2.0
884888

885889
# openebs nfs provisioner configuration goes here
886890
# ref - https://openebs.github.io/dynamic-nfs-provisioner

0 commit comments

Comments
 (0)