Skip to content

Commit

Permalink
Update autogenerated
Browse files Browse the repository at this point in the history
  • Loading branch information
zimnx committed Feb 2, 2024
1 parent 5de1c4b commit 7f272a9
Show file tree
Hide file tree
Showing 4 changed files with 98 additions and 0 deletions.
20 changes: 20 additions & 0 deletions deploy/operator.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -341,6 +341,26 @@ spec:
type: string
type: object
type: array
loopDevices:
description: loops is a list of loop device configurations.
items:
description: LoopDeviceConfiguration specifies loop device configuration options.
properties:
imagePath:
description: imagePath specifies path on host where backing image file for loop device should be located.
type: string
name:
description: name specifies the name of the symlink that will point to actual loop device, created under `/dev/loops/`.
type: string
size:
anyOf:
- type: integer
- type: string
description: size specifies the size of the loop device.
pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
x-kubernetes-int-or-string: true
type: object
type: array
mounts:
description: mounts is a list of mount configuration.
items:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,9 @@ object
* - :ref:`filesystems<api-scylla.scylladb.com-nodeconfigs-v1alpha1-.spec.localDiskSetup.filesystems[]>`
- array (object)
- filesystems is a list of filesystem configurations.
* - :ref:`loopDevices<api-scylla.scylladb.com-nodeconfigs-v1alpha1-.spec.localDiskSetup.loopDevices[]>`
- array (object)
- loops is a list of loop device configurations.
* - :ref:`mounts<api-scylla.scylladb.com-nodeconfigs-v1alpha1-.spec.localDiskSetup.mounts[]>`
- array (object)
- mounts is a list of mount configuration.
Expand Down Expand Up @@ -144,6 +147,37 @@ object
- string
- type is a desired filesystem type.

.. _api-scylla.scylladb.com-nodeconfigs-v1alpha1-.spec.localDiskSetup.loopDevices[]:

.spec.localDiskSetup.loopDevices[]
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

Description
"""""""""""
LoopDeviceConfiguration specifies loop device configuration options.

Type
""""
object


.. list-table::
:widths: 25 10 150
:header-rows: 1

* - Property
- Type
- Description
* - imagePath
- string
- imagePath specifies path on host where backing image file for loop device should be located.
* - name
- string
- name specifies the name of the symlink that will point to actual loop device, created under `/dev/loops/`.
* - size
-
- size specifies the size of the loop device.

.. _api-scylla.scylladb.com-nodeconfigs-v1alpha1-.spec.localDiskSetup.mounts[]:

.spec.localDiskSetup.mounts[]
Expand Down
20 changes: 20 additions & 0 deletions pkg/api/scylla/v1alpha1/scylla.scylladb.com_nodeconfigs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,26 @@ spec:
type: string
type: object
type: array
loopDevices:
description: loops is a list of loop device configurations.
items:
description: LoopDeviceConfiguration specifies loop device configuration options.
properties:
imagePath:
description: imagePath specifies path on host where backing image file for loop device should be located.
type: string
name:
description: name specifies the name of the symlink that will point to actual loop device, created under `/dev/loops/`.
type: string
size:
anyOf:
- type: integer
- type: string
description: size specifies the size of the loop device.
pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
x-kubernetes-int-or-string: true
type: object
type: array
mounts:
description: mounts is a list of mount configuration.
items:
Expand Down
24 changes: 24 additions & 0 deletions pkg/api/scylla/v1alpha1/zz_generated.deepcopy.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 7f272a9

Please sign in to comment.