41 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			YAML
		
	
	
	
			
		
		
	
	
			41 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			YAML
		
	
	
	
apiVersion: apps/v1
 | 
						|
kind: Deployment
 | 
						|
metadata:
 | 
						|
  name: redis-slave
 | 
						|
  labels:
 | 
						|
    app: redis
 | 
						|
spec:
 | 
						|
  selector:
 | 
						|
    matchLabels:
 | 
						|
      app: redis
 | 
						|
      role: slave
 | 
						|
      tier: backend
 | 
						|
  replicas: 2
 | 
						|
  template:
 | 
						|
    metadata:
 | 
						|
      labels:
 | 
						|
        app: redis
 | 
						|
        role: slave
 | 
						|
        tier: backend
 | 
						|
    spec:
 | 
						|
      containers:
 | 
						|
      - name: slave
 | 
						|
        image: gcr.io/google_samples/gb-redisslave:v3
 | 
						|
        resources:
 | 
						|
          requests:
 | 
						|
            cpu: 100m
 | 
						|
            memory: 100Mi
 | 
						|
        env:
 | 
						|
        - name: GET_HOSTS_FROM
 | 
						|
          value: dns
 | 
						|
          # Using `GET_HOSTS_FROM=dns` requires your cluster to
 | 
						|
          # provide a dns service. As of Kubernetes 1.3, DNS is a built-in
 | 
						|
          # service launched automatically. However, if the cluster you are using
 | 
						|
          # does not have a built-in DNS service, you can instead
 | 
						|
          # access an environment variable to find the master
 | 
						|
          # service's host. To do so, comment out the 'value: dns' line above, and
 | 
						|
          # uncomment the line below:
 | 
						|
          # value: env
 | 
						|
        ports:
 | 
						|
        - containerPort: 6379
 |