Skip to content

Commit 49dca57

Browse files
author
Abhishek Agarwal
committed
Merge branch 'develop' of github.com:openebs/cstor-operators into develop
2 parents b940839 + 29734a3 commit 49dca57

File tree

12 files changed

+218
-46
lines changed

12 files changed

+218
-46
lines changed

CHANGELOG.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,24 @@
11
# Changelog
22

3+
## [v3.1.0]/2022-01-03
4+
==========================
5+
- 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))
6+
- 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))
7+
- fix(helm): Make log verbosity configurable [\#397](https://github.com/openebs/cstor-operators/pull/397) ([ianroberts](https://github.com/ianroberts))
8+
- 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))
9+
- 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))
10+
11+
## [v3.1.0-RC2]/2021-12-29
12+
===========================
13+
14+
## [v3.1.0-RC1]/2021-12-20
15+
============================
16+
- 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))
17+
- 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))
18+
- fix(helm): Make log verbosity configurable [\#397](https://github.com/openebs/cstor-operators/pull/397) ([ianroberts](https://github.com/ianroberts))
19+
- 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))
20+
- 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))
21+
322
## [v3.0.0]/2021-09-17
423
===========================
524

deploy/crds/all_cstor_crds.yaml

Lines changed: 129 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1233,6 +1233,135 @@ status:
12331233
plural: ""
12341234
conditions: []
12351235
storedVersions: []
1236+
---
1237+
apiVersion: apiextensions.k8s.io/v1
1238+
kind: CustomResourceDefinition
1239+
metadata:
1240+
annotations:
1241+
controller-gen.kubebuilder.io/version: v0.4.0
1242+
creationTimestamp: null
1243+
name: cstorvolumeattachments.cstor.openebs.io
1244+
spec:
1245+
group: cstor.openebs.io
1246+
names:
1247+
kind: CStorVolumeAttachment
1248+
listKind: CStorVolumeAttachmentList
1249+
plural: cstorvolumeattachments
1250+
shortNames:
1251+
- cva
1252+
singular: cstorvolumeattachment
1253+
scope: Namespaced
1254+
versions:
1255+
- name: v1
1256+
schema:
1257+
openAPIV3Schema:
1258+
description: CStorVolumeAttachment represents a CSI based volume
1259+
properties:
1260+
apiVersion:
1261+
description: 'APIVersion defines the versioned schema of this representation
1262+
of an object. Servers should convert recognized schemas to the latest
1263+
internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'
1264+
type: string
1265+
kind:
1266+
description: 'Kind is a string value representing the REST resource this
1267+
object represents. Servers may infer this from the endpoint the client
1268+
submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
1269+
type: string
1270+
metadata:
1271+
type: object
1272+
spec:
1273+
description: CStorVolumeAttachmentSpec is the spec for a CStorVolume resource
1274+
properties:
1275+
iscsi:
1276+
description: ISCSIInfo specific to ISCSI protocol, this is filled
1277+
only if the volume type is iSCSI
1278+
properties:
1279+
iqn:
1280+
description: Iqn of this volume
1281+
type: string
1282+
iscsiInterface:
1283+
description: IscsiInterface of this volume
1284+
type: string
1285+
lun:
1286+
description: 'Lun specify the lun number 0, 1.. on iSCSI Volume.
1287+
(default: 0)'
1288+
type: string
1289+
targetPortal:
1290+
description: TargetPortal holds the target portal of this volume
1291+
type: string
1292+
type: object
1293+
volume:
1294+
description: Volume specific info
1295+
properties:
1296+
accessModes:
1297+
description: AccessMode of a volume will hold the access mode
1298+
of the volume
1299+
items:
1300+
type: string
1301+
type: array
1302+
accessType:
1303+
description: AccessType of a volume will indicate if the volume
1304+
will be used as a block device or mounted on a path
1305+
type: string
1306+
capacity:
1307+
description: Capacity of the volume
1308+
type: string
1309+
devicePath:
1310+
description: Device Path specifies the device path which is returned
1311+
when the iSCSI login is successful
1312+
type: string
1313+
fsType:
1314+
description: FSType of a volume will specify the format type -
1315+
ext4(default), xfs of PV
1316+
type: string
1317+
mountOptions:
1318+
description: MountOptions specifies the options with which mount
1319+
needs to be attempted
1320+
items:
1321+
type: string
1322+
type: array
1323+
name:
1324+
description: Name of the CSI volume
1325+
type: string
1326+
ownerNodeID:
1327+
description: OwnerNodeID is the Node ID which is also the owner
1328+
of this Volume
1329+
type: string
1330+
readOnly:
1331+
description: ReadOnly specifies if the volume needs to be mounted
1332+
in ReadOnly mode
1333+
type: boolean
1334+
stagingTargetPath:
1335+
description: StagingPath of the volume will hold the path on which
1336+
the volume is mounted on that node
1337+
type: string
1338+
targetPath:
1339+
description: TargetPath of the volume will hold the path on which
1340+
the volume is bind mounted on that node
1341+
type: string
1342+
required:
1343+
- name
1344+
- ownerNodeID
1345+
type: object
1346+
required:
1347+
- iscsi
1348+
- volume
1349+
type: object
1350+
status:
1351+
description: CStorVolumeAttachmentStatus status represents the current
1352+
mount status of the volume
1353+
type: string
1354+
required:
1355+
- spec
1356+
type: object
1357+
served: true
1358+
storage: true
1359+
status:
1360+
acceptedNames:
1361+
kind: ""
1362+
plural: ""
1363+
conditions: []
1364+
storedVersions: []
12361365

12371366
---
12381367
apiVersion: apiextensions.k8s.io/v1

deploy/cstor-operator.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1343,7 +1343,6 @@ status:
13431343
plural: ""
13441344
conditions: []
13451345
storedVersions: []
1346-
13471346
---
13481347
apiVersion: apiextensions.k8s.io/v1
13491348
kind: CustomResourceDefinition

deploy/helm/charts/Chart.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@ description: CStor-Operator helm chart for Kubernetes
44
type: application
55
# This is the chart version. This version number should be incremented each time you make changes
66
# to the chart and its templates, including the app version.
7-
version: 3.0.1
7+
version: 3.1.0
88
# This is the version number of the application being deployed. This version number should be
99
# incremented each time you make changes to the application.
10-
appVersion: 3.0.0
10+
appVersion: 3.1.0
1111
icon: https://raw.githubusercontent.com/cncf/artwork/master/projects/openebs/icon/color/openebs-icon-color.png
1212
home: http://www.openebs.io/
1313
keywords:
@@ -22,7 +22,7 @@ sources:
2222

2323
dependencies:
2424
- name: openebs-ndm
25-
version: "1.7.1"
25+
version: "1.8.0"
2626
repository: "https://openebs.github.io/node-disk-manager"
2727
condition: openebsNDM.enabled
2828

0 commit comments

Comments
 (0)