community-catalog/kubernetes-templates/guestbook/0/redis-slave-controller.yaml
2016-03-09 18:38:33 -07:00

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