mirror of https://github.com/k3s-io/k3s
29 lines
717 B
YAML
29 lines
717 B
YAML
apiVersion: v1
|
|
kind: ReplicationController
|
|
metadata:
|
|
name: redis-slave
|
|
labels:
|
|
name: redis-slave
|
|
spec:
|
|
replicas: 2
|
|
selector:
|
|
name: redis-slave
|
|
template:
|
|
metadata:
|
|
labels:
|
|
name: redis-slave
|
|
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
|