You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+19Lines changed: 19 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,24 @@
1
1
# Changelog
2
2
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))
Copy file name to clipboardExpand all lines: deploy/crds/all_cstor_crds.yaml
+129Lines changed: 129 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -1233,6 +1233,135 @@ status:
1233
1233
plural: ""
1234
1234
conditions: []
1235
1235
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
0 commit comments