2023-05-05 18:05:22 +00:00
|
|
|
apiVersion: v1
|
|
|
|
kind: Secret
|
|
|
|
metadata:
|
|
|
|
name: minio-root
|
|
|
|
type: Opaque
|
|
|
|
data:
|
|
|
|
accessKey: bWluaW8=
|
|
|
|
secretKey: bWluaW8=
|
|
|
|
---
|
|
|
|
apiVersion: "communiquons.org/v1"
|
|
|
|
kind: MinioInstance
|
|
|
|
metadata:
|
|
|
|
name: my-minio-instance
|
|
|
|
spec:
|
|
|
|
endpoint: http://minio:9000/
|
|
|
|
credentials: minio-root
|
|
|
|
---
|
|
|
|
apiVersion: "communiquons.org/v1"
|
|
|
|
kind: MinioBucket
|
|
|
|
metadata:
|
|
|
|
name: first-bucket
|
|
|
|
spec:
|
|
|
|
instance: my-minio-instance
|
|
|
|
name: first-bucket
|
2023-05-06 07:35:18 +00:00
|
|
|
secret: first-bucket-secret
|