Skip to content

Commit

Permalink
Update readme
Browse files Browse the repository at this point in the history
  • Loading branch information
samof76 committed Sep 6, 2022
1 parent e2f5cde commit 1b34773
Showing 1 changed file with 25 additions and 4 deletions.
29 changes: 25 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -170,23 +170,44 @@ If the user choose to have extra volumes creates and mounted, he could use the `
- Secrets that sidecars might use to backup of RDBs
- Extra users and their secrets and acls that could used the initContainers to create multiple users
- Extra Configurations that could merge on top the existing configurations
- To pass failover scripts for addition for additional operations

```
---
apiVersion: v1
kind: Secret
metadata:
name: foo
namespace: exm
type: Opaque
stringData:
password: MWYyZDFlMmU2N2Rm
---
apiVersion: databases.spotahome.com/v1
kind: RedisFailover
metadata:
name: redisfailover
name: foo
namespace: exm
spec:
sentinel:
replicas: 3
extraVolumes:
- name: foo
secret:
secretName: foo
optional: false
extraVolumeMounts:
- name: foo
mountPath: "/etc/foo"
readOnly: true
redis:
replicas: 3
extraVolumes:
- name: foo_user
- name: foo
secret:
secretName: mysecret
secretName: foo
optional: false
exraVolumeMounts:
extraVolumeMounts:
- name: foo
mountPath: "/etc/foo"
readOnly: true
Expand Down

0 comments on commit 1b34773

Please sign in to comment.