Skip to content
Open
Show file tree
Hide file tree
Changes from 9 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -196,6 +196,51 @@ spec:
secure:
type: boolean
type: object
oss:
properties:
bucket:
type: string
connectTimeout:
type: string
credentialsSecret:
type: string
endpointUrl:
type: string
maxUploadParts:
format: int32
type: integer
prefix:
type: string
region:
type: string
retryer:
properties:
baseDelay:
type: string
maxAttempts:
type: integer
maxBackoff:
type: string
required:
- baseDelay
- maxAttempts
- maxBackoff
type: object
serverSideEncryption:
properties:
encryptionAlgorithm:
type: string
encryptionKeyId:
type: string
encryptionMethod:
type: string
type: object
uploadPartSize:
format: int64
type: integer
required:
- credentialsSecret
type: object
pbmName:
type: string
pbmPod:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -154,6 +154,51 @@ spec:
secure:
type: boolean
type: object
oss:
properties:
bucket:
type: string
connectTimeout:
type: string
credentialsSecret:
type: string
endpointUrl:
type: string
maxUploadParts:
format: int32
type: integer
prefix:
type: string
region:
type: string
retryer:
properties:
baseDelay:
type: string
maxAttempts:
type: integer
maxBackoff:
type: string
required:
- baseDelay
- maxAttempts
- maxBackoff
type: object
serverSideEncryption:
properties:
encryptionAlgorithm:
type: string
encryptionKeyId:
type: string
encryptionMethod:
type: string
type: object
uploadPartSize:
format: int64
type: integer
required:
- credentialsSecret
type: object
pbmName:
type: string
pbmPod:
Expand Down
45 changes: 45 additions & 0 deletions config/crd/bases/psmdb.percona.com_perconaservermongodbs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -573,6 +573,51 @@ spec:
secure:
type: boolean
type: object
oss:
properties:
bucket:
type: string
connectTimeout:
type: string
credentialsSecret:
type: string
endpointUrl:
type: string
maxUploadParts:
format: int32
type: integer
prefix:
type: string
region:
type: string
retryer:
properties:
baseDelay:
type: string
maxAttempts:
type: integer
maxBackoff:
type: string
required:
- baseDelay
- maxAttempts
- maxBackoff
type: object
serverSideEncryption:
properties:
encryptionAlgorithm:
type: string
encryptionKeyId:
type: string
encryptionMethod:
type: string
type: object
uploadPartSize:
format: int64
type: integer
required:
- credentialsSecret
type: object
s3:
properties:
bucket:
Expand Down
135 changes: 135 additions & 0 deletions deploy/bundle.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -200,6 +200,51 @@ spec:
secure:
type: boolean
type: object
oss:
properties:
bucket:
type: string
connectTimeout:
type: string
credentialsSecret:
type: string
endpointUrl:
type: string
maxUploadParts:
format: int32
type: integer
prefix:
type: string
region:
type: string
retryer:
properties:
baseDelay:
type: string
maxAttempts:
type: integer
maxBackoff:
type: string
required:
- baseDelay
- maxAttempts
- maxBackoff
type: object
serverSideEncryption:
properties:
encryptionAlgorithm:
type: string
encryptionKeyId:
type: string
encryptionMethod:
type: string
type: object
uploadPartSize:
format: int64
type: integer
required:
- credentialsSecret
type: object
pbmName:
type: string
pbmPod:
Expand Down Expand Up @@ -1519,6 +1564,51 @@ spec:
secure:
type: boolean
type: object
oss:
properties:
bucket:
type: string
connectTimeout:
type: string
credentialsSecret:
type: string
endpointUrl:
type: string
maxUploadParts:
format: int32
type: integer
prefix:
type: string
region:
type: string
retryer:
properties:
baseDelay:
type: string
maxAttempts:
type: integer
maxBackoff:
type: string
required:
- baseDelay
- maxAttempts
- maxBackoff
type: object
serverSideEncryption:
properties:
encryptionAlgorithm:
type: string
encryptionKeyId:
type: string
encryptionMethod:
type: string
type: object
uploadPartSize:
format: int64
type: integer
required:
- credentialsSecret
type: object
pbmName:
type: string
pbmPod:
Expand Down Expand Up @@ -2599,6 +2689,51 @@ spec:
secure:
type: boolean
type: object
oss:
properties:
bucket:
type: string
connectTimeout:
type: string
credentialsSecret:
type: string
endpointUrl:
type: string
maxUploadParts:
format: int32
type: integer
prefix:
type: string
region:
type: string
retryer:
properties:
baseDelay:
type: string
maxAttempts:
type: integer
maxBackoff:
type: string
required:
- baseDelay
- maxAttempts
- maxBackoff
type: object
serverSideEncryption:
properties:
encryptionAlgorithm:
type: string
encryptionKeyId:
type: string
encryptionMethod:
type: string
type: object
uploadPartSize:
format: int64
type: integer
required:
- credentialsSecret
type: object
s3:
properties:
bucket:
Expand Down
19 changes: 19 additions & 0 deletions deploy/cr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -871,6 +871,25 @@ spec:
# backoffInitial: 1
# backoffMax: 30
# backoffMultiplier: 2
# oss-native:
# type: oss
# oss:
# bucket: OSS-BACKUP-BUCKET-NAME-HERE
# prefix: ""
# credentialsSecret: my-cluster-name-backup-oss
# endpointUrl: https://oss-eu-central-1.aliyuncs.com
# region: eu-central-1
# connectTimeout: 10s
# uploadPartSize: 10485760
# maxUploadParts: 10000
# retryer:
# maxAttempts: 3
# maxBackoff: 5m
# baseDelay: 1s
# serverSideEncryption:
# encryptionMethod: sse
# encryptionAlgorithm: KMS
# encryptionKeyId: OSS-KMS-KEY-ID-HERE
# minio:
# type: minio
# minio:
Expand Down
Loading
Loading