Skip to content
Snippets Groups Projects
Commit 1b347732 authored by Samuel Vijaykumar M's avatar Samuel Vijaykumar M
Browse files

Update readme

parent e2f5cde7
Branches
Tags
No related merge requests found
...@@ -170,23 +170,44 @@ If the user choose to have extra volumes creates and mounted, he could use the ` ...@@ -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 - 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 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 - 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 apiVersion: databases.spotahome.com/v1
kind: RedisFailover kind: RedisFailover
metadata: metadata:
name: redisfailover name: foo
namespace: exm
spec: spec:
sentinel: sentinel:
replicas: 3 replicas: 3
extraVolumes:
- name: foo
secret:
secretName: foo
optional: false
extraVolumeMounts:
- name: foo
mountPath: "/etc/foo"
readOnly: true
redis: redis:
replicas: 3 replicas: 3
extraVolumes: extraVolumes:
- name: foo_user - name: foo
secret: secret:
secretName: mysecret secretName: foo
optional: false optional: false
exraVolumeMounts: extraVolumeMounts:
- name: foo - name: foo
mountPath: "/etc/foo" mountPath: "/etc/foo"
readOnly: true readOnly: true
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment