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: docs/usage/storage/bucket.md
+13-12Lines changed: 13 additions & 12 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,8 +1,9 @@
1
1
# Bucket
2
-
A `bucket` in `ironcore` refers to a storage resource that organizes and manages data, similar to the concept of buckets in cloud storage services like Amazon S3. Buckets serve as containers for storing objects, such as files or data blobs, and is crucial for managing storage workloads.
2
+
A `Bucket` in `Ironcore` refers to a storage resource that organizes and manages data, similar to the concept of buckets in cloud storage services like Amazon S3. Buckets are containers for storing objects, such as files or data blobs, and are crucial for managing storage workloads.
3
3
4
4
# Example Bucket Resource
5
-
An example of how to define a `bucket` resource in `ironcore`
5
+
An example of how to define a `Bucket` resource in `Ironcore`
6
+
6
7
```
7
8
apiVersion: storage.ironcore.dev/v1alpha1
8
9
kind: Bucket
@@ -11,35 +12,35 @@ metadata:
11
12
spec:
12
13
bucketClassRef:
13
14
name: bucketclass-sample
14
-
# bucketPoolRef:
15
-
# name: bucketpool-sample
15
+
# bucketPoolRef:
16
+
# name: bucketpool-sample
16
17
```
17
18
18
19
# Key Fields:
19
20
-`bucketClassRef`(`string`):
20
-
- Mandatory field
21
-
-`BucketClassRef` is the BucketClass of a bucket
21
+
- Mandatory field
22
+
-`BucketClassRef` is the BucketClass of a bucket
22
23
23
24
-`bucketPoolRef`(`string`):
24
-
- Optional field
25
-
-`bucketPoolRef` indicates which BucketPool to use for the bucket, if not specified the controller itself picks the available bucketPool
25
+
- Optional field
26
+
-`bucketPoolRef` indicates which BucketPool to use for the bucket, if not specified the controller itself picks the available bucketPool
26
27
27
28
28
29
# Usage
29
-
-**Data Storage**: Use buckets to store and organize data blobs, files, or any object-based data.
30
+
-**Data Storage**: Use `Buckets` to store and organize data blobs, files, or any object-based data.
30
31
31
32
-**Multi-Tenant Workloads**: Leverage buckets for isolated and secure data storage in multi-tenant environments by using separate BucketClass or BucketPool references.
32
33
33
-
-**Secure Access**: Buckets store access credentials securely in their status. Applications can retrieve access details via Kubernetes secrets.
34
+
-**Secure Access**: Buckets store a reference to the `Secret`securely in their status, and the `Secret` has the access credentials, which applications can retrieve access details from the `Secret`.
34
35
35
36
# Reconciliation Process:
36
37
- The controller detects changes and fetches bucket details.
37
38
38
39
- Creation/Update ensures the backend bucket exists, metadata is synced, and credentials are updated.
39
40
40
-
- The bucket will automatically sync with the backend storage system, Updates Bucket's state (e.g., `Available`, `Pending`, or `Error`) in the bucket's status.
41
+
- The bucket will automatically sync with the backend storage system, and update the Bucket's state (e.g., `Available`, `Pending`, or `Error`) in the bucket's status.
41
42
42
-
- Access details and credentials will be managed securely and updated in the bucket status.
43
+
- Access details and credentials will be managed securely using Kubernetes `Secret` and the bucket status will track a reference to the `Secret`.
43
44
44
45
- During deletion, resources will be cleaned up gracefully without manual intervention.
Copy file name to clipboardExpand all lines: docs/usage/storage/bucketclass.md
+14-10Lines changed: 14 additions & 10 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,8 +1,8 @@
1
1
# BucketClass
2
-
A BucketClass is a concept used to define and manage different types of storage buckets, typically based on resource capabilities
2
+
A `BucketClass` is a concept used to define and manage different types of storage buckets, typically based on resource capabilities. It is conceptually similar to Kubernetes `StorageClass`, enabling users to specify the desired properties for an Ironcore `Bucket` resource creation.
3
3
4
4
# Example BucketClass Resource
5
-
An example of how to define a bucketClass resource
5
+
An example of how to define a `BucketClass` resource in `Ironcore`
6
6
7
7
```
8
8
apiVersion: storage.ironcore.dev/v1alpha1
@@ -15,21 +15,25 @@ capabilities:
15
15
```
16
16
17
17
# Key Fields:
18
-
- capabilities: Capabilities has `tps` and `iops` fields which need to specified, it's a mandatory field,
19
-
- tps(`string`): The `tps` represents trasactions per second
20
18
21
-
- iops(`string`): `iops` is the number of input/output operations a storage device can complete per second.
19
+
-`capabilities`: Capabilities has `tps` and `iops` fields which need to be specified, it's a mandatory field,
20
+
-`tps`(`string`): The `tps` represents transactions per second.
21
+
22
+
-`iops`(`string`): `iops` is the number of input/output operations a storage device can complete per second.
22
23
23
24
# Usage
24
-
-**BucketClass Definition**: Create a BucketClass to set storage properties based on resource capibilities
25
-
-**Associate with buckets**: Link a BucketClass to a Bucket using a reference in the Bucket resource.
26
-
-**Dynamic configuration**: Update the BucketClass to modify storage properties for all its Buckets.
25
+
26
+
-**BucketClass Definition**: Create a `BucketClass` to set storage properties based on resource capabilities.
27
+
28
+
-**Associate with buckets**: Link a `BucketClass` to a `Bucket` using a reference in the Bucket resource.
29
+
30
+
-**Dynamic configuration**: Update the `BucketClass` to modify storage properties for all its Buckets.
27
31
28
32
# Reconciliation Process:
29
33
30
-
-**Fetches & Validates**: Retrieves the BucketClass from the cluster and checks if it exists.
34
+
-**Fetches & Validates**: Retrieves the `BucketClass` from the cluster and checks if it exists.
31
35
32
-
-**Synchronizes State**: Keeps the BucketClass resource updated with its current state and dependencies.
36
+
-**Synchronizes State**: Keeps the `BucketClass` resource updated with its current state and dependencies.
33
37
34
38
-**Monitors Dependencies**: Watches for changes in dependent Bucket resources and reacts accordingly.
Copy file name to clipboardExpand all lines: docs/usage/storage/bucketpool.md
+2-1Lines changed: 2 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,8 @@
1
1
# BucketPool
2
-
A `BucketPool` is a resource in `IronCore` that represents a pool of storage buckets managed collectively. It defines the infrastructure's storage configuration used to provision and manage buckets, ensuring resource availability and compatibility with associated `BucketClasses`.
2
+
A `BucketPool` is a resource in `Ironcore` that represents a pool of storage buckets managed collectively. It defines the infrastructure's storage configuration used to provision and manage buckets, ensuring resource availability and compatibility with associated BucketClasses.
3
3
4
4
# Example BucketPool Resource
5
+
An example of how to define a `BucketPool` resource in `Ironcore`
Copy file name to clipboardExpand all lines: docs/usage/storage/volume.md
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,9 +1,9 @@
1
1
# Volume
2
-
The `IronCore``Volume` is a storage abstraction provided by the `IronCore Runtime Interface``(IRI)` service, designed to integrate with external storage backend for managing persistent storage. It acts as a managed storage unit, ensuring consistency, scalability, and compatibility with Kubernetes workloads.
3
-
By integrating IronCore Volumes with Kubernetes, users benefit from seamless storage management, automation, and advanced features such as encryption and scalability, making it suitable for modern cloud-native and hybrid applications.
2
+
The `Ironcore``Volume` is a storage abstraction provided by the `Ironcore Runtime Interface``(IRI)` service, designed to integrate with external storage backend for managing persistent storage. It acts as a managed storage unit, ensuring consistency, scalability, and compatibility with Kubernetes workloads.
3
+
By integrating Ironcore Volumes with Kubernetes, users benefit from seamless storage management, automation, and advanced features such as encryption and scalability, making it suitable for modern cloud-native and hybrid applications.
4
4
5
5
# Example Volume Resource
6
-
An example of how to define a `volume` resource in `ironcore`
6
+
An example of how to define a `Volume` resource in `Ironcore`
7
7
8
8
```
9
9
apiVersion: storage.ironcore.dev/v1alpha1
@@ -21,11 +21,11 @@ spec:
21
21
22
22
# Key Fields:
23
23
24
-
-`volumeClassRef`(`string`): `volumeClassRef` refers to the name of an ironcore `volumeclass`( for eg: `slow`, `fast`, `super-fast` etc.) to create a volume,
24
+
-`volumeClassRef`(`string`): `volumeClassRef` refers to the name of an Ironcore `volumeClass`( for eg: `slow`, `fast`, `super-fast` etc.) to create a volume,
25
25
26
26
-`volumePoolRef` (`string`): `VolumePoolRef` indicates which VolumePool to use for a volume. If unset, the scheduler will figure out a suitable `VolumePoolRef`.
27
27
28
-
-`resources`: Resources is a description of the volume's resources and capacity.
28
+
-`resources`: `Resources` is a description of the volume's resources and capacity.
29
29
30
30
# Reconciliation Process:
31
31
@@ -36,7 +36,7 @@ spec:
36
36
-**Check IRI Volumes**: List and identify `IRI` volumes linked to the `Volume` resource.
37
37
38
38
-**Create or Update Volume**:
39
-
- Create a new IRI volume if none exist.
39
+
- Create a new IRI volume if none exists.
40
40
- Update existing IRI volumes if attributes like size or encryption need adjustments.
41
41
42
42
-**Sync Status**: Reflect the IRI volume's state (e.g., Pending, Available) in the Kubernetes Volume resource's status.
Copy file name to clipboardExpand all lines: docs/usage/storage/volumeclass.md
+11-8Lines changed: 11 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,8 +1,8 @@
1
1
# VolumeClass
2
-
The `VolumeClass` in `IronCore` is a Kubernetes-like abstraction that defines a set of parameters or configurations for provisioning storage resources through the `IronCore Runtime Interface (IRI)`. It is conceptually similar to Kubernetes `StorageClass`, enabling users to specify the desired properties for an IronCore`Volume` resource creation.
2
+
The `VolumeClass` in `Ironcore` is a Kubernetes-like abstraction that defines a set of parameters or configurations for provisioning storage resources through the `Ironcore Runtime Interface (IRI)`. It is conceptually similar to Kubernetes `StorageClass`, enabling users to specify the desired properties for an Ironcore`Volume` resource creation.
3
3
4
4
# Example VolumeClass Resource
5
-
An example of how to define a volumeClass resource
5
+
An example of how to define a `VolumeClass` resource in `Ironcore`
6
6
7
7
```
8
8
apiVersion: storage.ironcore.dev/v1alpha1
@@ -15,15 +15,18 @@ capabilities:
15
15
```
16
16
17
17
# Key Fields:
18
-
- capabilities: Capabilities has tps and iops fields which need to specified, it's a mandatory field,
19
-
- tps(`string`): The `tps` represents trasactions per second
18
+
-`capabilities`: Capabilities has tps and iops fields that need to be specified, it's a mandatory field,
19
+
-`tps`(`string`): The `tps` represents transactions per second.
20
20
21
-
- iops(`string`):`iops` is the number of input/output operations a storage device can complete per second.
21
+
-`iops`(`string`): `iops` is the number of input/output operations a storage device can complete per second.
22
22
23
23
# Usage
24
-
-**VolumeClass Definition**: Create a volumeClass to set storage properties based on resource capibilities
25
-
-**Associate with Volume**: Link a volumeClass to a Volume using a reference in the Volume resource.
26
-
-**Dynamic configuration**: Update the volumeClass to modify storage properties for all its Volumes.
24
+
25
+
-**VolumeClass Definition**: Create a `VolumeClass` to set storage properties based on resource capabilities.
26
+
27
+
-**Associate with Volume**: Link a `VolumeClass` to a `Volume` using a reference in the Volume resource.
28
+
29
+
-**Dynamic configuration**: Update the `VolumeClass` to modify storage properties for all its Volumes.
Copy file name to clipboardExpand all lines: docs/usage/storage/volumepool.md
+4-3Lines changed: 4 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,8 @@
1
1
# VolumePool
2
-
A `VolumePool` is a resource in `IronCore` that represents a pool of storage volume managed collectively. It defines the infrastructure's storage configuration used to provision and manage volumes, ensuring resource availability and compatibility with associated `VolumeClasses`.
2
+
A `VolumePool` is a resource in `Ironcore` that represents a pool of storage volume managed collectively. It defines the infrastructure's storage configuration used to provision and manage volumes, ensuring resource availability and compatibility with associated `VolumeClasses`.
3
3
4
-
# Example Volume Resource
4
+
# Example VolumePool Resource
5
+
An example of how to define a `VolumePool` resource in `Ironcore`
5
6
6
7
```
7
8
apiVersion: storage.ironcore.dev/v1alpha1
@@ -18,7 +19,7 @@ spec:
18
19
```
19
20
20
21
# Key Fields:
21
-
-`ProviderID`(`string`): The `providerId` helps the controller identify and communicate with the correct storage system within the specific backened storage porvider.
22
+
-`providerID`(`string`): The `providerId` helps the controller identify and communicate with the correct storage system within the specific backened storage porvider.
0 commit comments