45 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			YAML
		
	
	
	
			
		
		
	
	
			45 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			YAML
		
	
	
	
apiVersion: apps/v1
 | 
						|
kind: ReplicaSet
 | 
						|
metadata:
 | 
						|
  name: redis-slave
 | 
						|
  labels:
 | 
						|
    app: redis
 | 
						|
    role: slave
 | 
						|
    tier: backend
 | 
						|
spec:
 | 
						|
  # this replicas value is default
 | 
						|
  # modify it according to your case
 | 
						|
  replicas: 2
 | 
						|
  selector:
 | 
						|
    matchLabels:
 | 
						|
      app: redis
 | 
						|
      role: slave
 | 
						|
      tier: backend
 | 
						|
  template:
 | 
						|
    metadata:
 | 
						|
      labels:
 | 
						|
        app: redis
 | 
						|
        role: slave
 | 
						|
        tier: backend
 | 
						|
    spec:
 | 
						|
      containers:
 | 
						|
      - name: slave
 | 
						|
        image: docker.io/library/redis:5.0.5-alpine
 | 
						|
        # We are only implementing the dns option of:
 | 
						|
        # https://github.com/kubernetes/examples/blob/97c7ed0eb6555a4b667d2877f965d392e00abc45/guestbook/redis-slave/run.sh
 | 
						|
        command: [ "redis-server", "--slaveof", "redis-master", "6379" ]
 | 
						|
        resources:
 | 
						|
          requests:
 | 
						|
            cpu: 100m
 | 
						|
            memory: 100Mi
 | 
						|
        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
 |