I am able to create noobaa bucket by creating OBC as shown below:
apiVersion: objectbucket.io/v1alpha1
kind: ObjectBucketClaim
metadata:
name: my-obc1
spec:
storageClassName: noobaa-test.noobaa.io
bucketName: my-bucket
additionalConfig: {}
Above OBC will create a noobaa bucket my-bucket
.
But is there any way we can create noobaa bucket directly without having to create OBC?
There are several ways to create buckets in noobaa other than OBC:
noobaa ui
.noobaa bucket create <name>
.noobaa api bucket create_bucket '{ "name": "<name>" ... }'
(see here the json schema of this api params)noobaa status
.Thanks! Guy