29 lines
749 B
YAML
29 lines
749 B
YAML
apiVersion: v1
|
|
kind: ReplicationController
|
|
metadata:
|
|
name: ${REDIS_SLAVE_NAME}
|
|
labels:
|
|
name: ${REDIS_SLAVE_NAME}
|
|
spec:
|
|
replicas: 2
|
|
selector:
|
|
name: ${REDIS_SLAVE_NAME}
|
|
template:
|
|
metadata:
|
|
labels:
|
|
name: ${REDIS_SLAVE_NAME}
|
|
spec:
|
|
containers:
|
|
- name: worker
|
|
image: gcr.io/google_samples/gb-redisslave:v1
|
|
env:
|
|
- name: GET_HOSTS_FROM
|
|
value: dns
|
|
# If your cluster config does not include a dns service, then to
|
|
# instead access an environment variable to find the master
|
|
# service's host, comment out the 'value: dns' line above, and
|
|
# uncomment the line below.
|
|
# value: env
|
|
ports:
|
|
- containerPort: 6379
|