Skip to content

Commit

Permalink
Merge branch 'develop' of github.com:openebs/cstor-operators into dev…
Browse files Browse the repository at this point in the history
…elop
  • Loading branch information
Abhishek Agarwal committed Apr 15, 2022
2 parents b940839 + 29734a3 commit 49dca57
Show file tree
Hide file tree
Showing 12 changed files with 218 additions and 46 deletions.
19 changes: 19 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,24 @@
# Changelog

## [v3.1.0]/2022-01-03
==========================
- update(helm): allow setting different base dir(and others) for cspc and cvc operators [\#404](https://github.com/openebs/cstor-operators/pull/404) ([Ab-hishek](https://github.com/Ab-hishek))
- chore(deps): update go mod to use the openebs v3 api modules [\#403](https://github.com/openebs/cstor-operators/pull/403) ([Ab-hishek](https://github.com/Ab-hishek))
- fix(helm): Make log verbosity configurable [\#397](https://github.com/openebs/cstor-operators/pull/397) ([ianroberts](https://github.com/ianroberts))
- fix(pool): set canmount filesystem property to off for pool dataset [\#400](https://github.com/openebs/cstor-operators/pull/400) ([mittachaitu](https://github.com/mittachaitu))
- fix(status): update cstor volume status to offline based on availability of target pods [\#395](https://github.com/openebs/cstor-operators/pull/395) ([saltperfect](https://github.com/saltperfect))

## [v3.1.0-RC2]/2021-12-29
===========================

## [v3.1.0-RC1]/2021-12-20
============================
- update(helm): allow setting different base dir(and others) for cspc and cvc operators [\#404](https://github.com/openebs/cstor-operators/pull/404) ([Ab-hishek](https://github.com/Ab-hishek))
- chore(deps): update go mod to use the openebs v3 api modules [\#403](https://github.com/openebs/cstor-operators/pull/403) ([Ab-hishek](https://github.com/Ab-hishek))
- fix(helm): Make log verbosity configurable [\#397](https://github.com/openebs/cstor-operators/pull/397) ([ianroberts](https://github.com/ianroberts))
- fix(pool): set canmount filesystem property to off for pool dataset [\#400](https://github.com/openebs/cstor-operators/pull/400) ([mittachaitu](https://github.com/mittachaitu))
- fix(status): update cstor volume status to offline based on availability of target pods [\#395](https://github.com/openebs/cstor-operators/pull/395) ([saltperfect](https://github.com/saltperfect))

## [v3.0.0]/2021-09-17
===========================

Expand Down
129 changes: 129 additions & 0 deletions deploy/crds/all_cstor_crds.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1233,6 +1233,135 @@ status:
plural: ""
conditions: []
storedVersions: []
---
apiVersion: apiextensions.k8s.io/v1
kind: CustomResourceDefinition
metadata:
annotations:
controller-gen.kubebuilder.io/version: v0.4.0
creationTimestamp: null
name: cstorvolumeattachments.cstor.openebs.io
spec:
group: cstor.openebs.io
names:
kind: CStorVolumeAttachment
listKind: CStorVolumeAttachmentList
plural: cstorvolumeattachments
shortNames:
- cva
singular: cstorvolumeattachment
scope: Namespaced
versions:
- name: v1
schema:
openAPIV3Schema:
description: CStorVolumeAttachment represents a CSI based volume
properties:
apiVersion:
description: 'APIVersion defines the versioned schema of this representation
of an object. Servers should convert recognized schemas to the latest
internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'
type: string
kind:
description: 'Kind is a string value representing the REST resource this
object represents. Servers may infer this from the endpoint the client
submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
type: string
metadata:
type: object
spec:
description: CStorVolumeAttachmentSpec is the spec for a CStorVolume resource
properties:
iscsi:
description: ISCSIInfo specific to ISCSI protocol, this is filled
only if the volume type is iSCSI
properties:
iqn:
description: Iqn of this volume
type: string
iscsiInterface:
description: IscsiInterface of this volume
type: string
lun:
description: 'Lun specify the lun number 0, 1.. on iSCSI Volume.
(default: 0)'
type: string
targetPortal:
description: TargetPortal holds the target portal of this volume
type: string
type: object
volume:
description: Volume specific info
properties:
accessModes:
description: AccessMode of a volume will hold the access mode
of the volume
items:
type: string
type: array
accessType:
description: AccessType of a volume will indicate if the volume
will be used as a block device or mounted on a path
type: string
capacity:
description: Capacity of the volume
type: string
devicePath:
description: Device Path specifies the device path which is returned
when the iSCSI login is successful
type: string
fsType:
description: FSType of a volume will specify the format type -
ext4(default), xfs of PV
type: string
mountOptions:
description: MountOptions specifies the options with which mount
needs to be attempted
items:
type: string
type: array
name:
description: Name of the CSI volume
type: string
ownerNodeID:
description: OwnerNodeID is the Node ID which is also the owner
of this Volume
type: string
readOnly:
description: ReadOnly specifies if the volume needs to be mounted
in ReadOnly mode
type: boolean
stagingTargetPath:
description: StagingPath of the volume will hold the path on which
the volume is mounted on that node
type: string
targetPath:
description: TargetPath of the volume will hold the path on which
the volume is bind mounted on that node
type: string
required:
- name
- ownerNodeID
type: object
required:
- iscsi
- volume
type: object
status:
description: CStorVolumeAttachmentStatus status represents the current
mount status of the volume
type: string
required:
- spec
type: object
served: true
storage: true
status:
acceptedNames:
kind: ""
plural: ""
conditions: []
storedVersions: []

---
apiVersion: apiextensions.k8s.io/v1
Expand Down
1 change: 0 additions & 1 deletion deploy/cstor-operator.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1343,7 +1343,6 @@ status:
plural: ""
conditions: []
storedVersions: []

---
apiVersion: apiextensions.k8s.io/v1
kind: CustomResourceDefinition
Expand Down
6 changes: 3 additions & 3 deletions deploy/helm/charts/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@ description: CStor-Operator helm chart for Kubernetes
type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
version: 3.0.1
version: 3.1.0
# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application.
appVersion: 3.0.0
appVersion: 3.1.0
icon: https://raw.githubusercontent.com/cncf/artwork/master/projects/openebs/icon/color/openebs-icon-color.png
home: http://www.openebs.io/
keywords:
Expand All @@ -22,7 +22,7 @@ sources:

dependencies:
- name: openebs-ndm
version: "1.7.1"
version: "1.8.0"
repository: "https://openebs.github.io/node-disk-manager"
condition: openebsNDM.enabled

Expand Down
Loading

0 comments on commit 49dca57

Please sign in to comment.