mirror of
https://github.com/cloudnative-pg/plugin-barman-cloud.git
synced 2026-01-13 06:03:10 +01:00
docs: remove minio examples
Signed-off-by: Francesco Canovai <francesco.canovai@enterprisedb.com>
This commit is contained in:
parent
d5d0008dc1
commit
01b12ff0c1
@ -1,23 +0,0 @@
|
|||||||
apiVersion: barmancloud.cnpg.io/v1
|
|
||||||
kind: ObjectStore
|
|
||||||
metadata:
|
|
||||||
name: minio-store-bis
|
|
||||||
spec:
|
|
||||||
configuration:
|
|
||||||
destinationPath: s3://backups/
|
|
||||||
endpointURL: http://minio-bis:9000
|
|
||||||
s3Credentials:
|
|
||||||
accessKeyId:
|
|
||||||
name: minio-bis
|
|
||||||
key: ACCESS_KEY_ID
|
|
||||||
secretAccessKey:
|
|
||||||
name: minio-bis
|
|
||||||
key: ACCESS_SECRET_KEY
|
|
||||||
wal:
|
|
||||||
compression: gzip
|
|
||||||
data:
|
|
||||||
additionalCommandArgs:
|
|
||||||
- "--min-chunk-size=5MB"
|
|
||||||
- "--read-timeout=60"
|
|
||||||
- "-vv"
|
|
||||||
|
|
||||||
@ -1,42 +0,0 @@
|
|||||||
apiVersion: apps/v1
|
|
||||||
kind: Deployment
|
|
||||||
metadata:
|
|
||||||
name: minio-bis
|
|
||||||
labels:
|
|
||||||
app: minio-bis
|
|
||||||
spec:
|
|
||||||
replicas: 1
|
|
||||||
selector:
|
|
||||||
matchLabels:
|
|
||||||
app: minio-bis
|
|
||||||
template:
|
|
||||||
metadata:
|
|
||||||
labels:
|
|
||||||
app: minio-bis
|
|
||||||
spec:
|
|
||||||
containers:
|
|
||||||
- name: minio
|
|
||||||
image: minio/minio
|
|
||||||
ports:
|
|
||||||
- containerPort: 9000
|
|
||||||
volumeMounts:
|
|
||||||
- mountPath: /data
|
|
||||||
name: data
|
|
||||||
args:
|
|
||||||
- server
|
|
||||||
- /data
|
|
||||||
env:
|
|
||||||
- name: MINIO_ACCESS_KEY
|
|
||||||
valueFrom:
|
|
||||||
secretKeyRef:
|
|
||||||
name: minio-bis
|
|
||||||
key: ACCESS_KEY_ID
|
|
||||||
- name: MINIO_SECRET_KEY
|
|
||||||
valueFrom:
|
|
||||||
secretKeyRef:
|
|
||||||
name: minio-bis
|
|
||||||
key: ACCESS_SECRET_KEY
|
|
||||||
volumes:
|
|
||||||
- name: data
|
|
||||||
persistentVolumeClaim:
|
|
||||||
claimName: minio-bis
|
|
||||||
@ -1,11 +0,0 @@
|
|||||||
apiVersion: v1
|
|
||||||
kind: PersistentVolumeClaim
|
|
||||||
metadata:
|
|
||||||
name: minio-bis
|
|
||||||
spec:
|
|
||||||
accessModes:
|
|
||||||
- ReadWriteOnce
|
|
||||||
volumeMode: Filesystem
|
|
||||||
resources:
|
|
||||||
requests:
|
|
||||||
storage: 1Gi
|
|
||||||
@ -1,7 +0,0 @@
|
|||||||
apiVersion: v1
|
|
||||||
data:
|
|
||||||
ACCESS_KEY_ID: dVo5YWVndW9OZ29vY2g4bG9odHU4aXRlaTJhaHY0ZGE=
|
|
||||||
ACCESS_SECRET_KEY: ZWV6b2hkOFNpbm9oeG9od2VpbmdvbjhhaXI1T2h5b2g=
|
|
||||||
kind: Secret
|
|
||||||
metadata:
|
|
||||||
name: minio-bis
|
|
||||||
@ -1,11 +0,0 @@
|
|||||||
apiVersion: v1
|
|
||||||
kind: Service
|
|
||||||
metadata:
|
|
||||||
name: minio-bis
|
|
||||||
spec:
|
|
||||||
selector:
|
|
||||||
app: minio-bis
|
|
||||||
ports:
|
|
||||||
- protocol: TCP
|
|
||||||
port: 9000
|
|
||||||
targetPort: 9000
|
|
||||||
Loading…
Reference in New Issue
Block a user