25 lines
444 B
YAML
25 lines
444 B
YAML
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
|
|
secret: bucket-secret |